python 怎么处理http post 的请求参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 怎么处理http post 的请求参数相关的知识,希望对你有一定的参考价值。

参考技术A import httplib, urllib
from urlparse import urlparse
def httppost(url, **kwgs):
httpClient = None
conn = urlparse(url)
try:
params = urllib.urlencode(dict(kwgs))
header = "Content-type": "application/x-www-form-urlencoded","Accept": "text/plain",
httpClient = httplib.HTTPConnection(conn.netloc, conn.port, timeout=30)httpClient.request("POST", conn.path, params, header)response = httpClient.getresponse()
print response.status
print response.reason
print response.read()
print response.getheaders()
except Exception, e:
print e
finally:
if httpClient:
httpClient.close()本回答被提问者采纳
参考技术B 把他存到一个json 里?方法有很多,看你需要哪种

以上是关于python 怎么处理http post 的请求参数的主要内容,如果未能解决你的问题,请参考以下文章

python爬虫怎么处理豆瓣网页异常请求

通过 iis 上的 python 脚本处理带有 json 的 http post 请求

一个简单的http server,处理get和post请求,Python实现

一个简单的http server,处理get和post请求,Python实现

python中scrapy怎么发送一个post请求

java 怎么接收http请求