python3.6发送post请求
Posted 波子汽水yeah
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.6发送post请求相关的知识,希望对你有一定的参考价值。
参考:【python】3.6版本使用http.client网络请求示例
#!/user/bin/python
#-*- coding:utf-8 -*-
import urllib.parse
import http.client
import json
test_data ='uid':55,'page':1
test_data_url_encode = urllib.parse.urlencode(test_data)
request_url = "http://m.mp.oeeee.com/uncache.php?m=Doc&a=spaceInfo"
conn = http.client.HTTPConnection('m.mp.oeeee.com')
header = "Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"
conn.request(method="POST", url=request_url, headers=header, body=test_data_url_encode)
response = conn.getresponse()
#print(response.status)
#print(response.reason)
res = response.read()
#print(res)
resp = json.loads(res)
print(resp)
以上是关于python3.6发送post请求的主要内容,如果未能解决你的问题,请参考以下文章
C# 利用HttpWebRequest进行HTTPS的post请求的示例