码迷,mamicode.com
首页 > 编程语言 > 详细

python 封装的post方法

时间:2019-12-19 19:02:06      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:ati   code   app   try   ica   python   封装   发送post请求   port   

import requests
import json


# 发送post请求
def post(url, headers, values):
    try:
        headers[Content-Type] = "application/json; charset=utf-8"
        response = requests.post(
            url=url,
            headers=headers,
            data=json.dumps(values)
        )
        return json.loads(response.content)
    except requests.exceptions.RequestException, e:
        print(HTTP Request failed :, url, values)
        print e

python 封装的post方法

标签:ati   code   app   try   ica   python   封装   发送post请求   port   

原文地址:https://www.cnblogs.com/qiqi-yhq/p/12069386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!