通过本文主要向大家介绍了python requests post,python http post,python 发送post请求,python3 post,python get post等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
本文实例讲述了python使用post提交数据到远程url的方法。分享给大家供大家参考。具体如下:
import sys, urllib2, urllib
zipcode = "S2S 1R8"
url = 'http://www.yoursiteweb.com/getForecast'
data = urllib.urlencode([('query', zipcode)])
req = urllib2.Request(url)
fd = urllib2.urlopen(req, data)
while 1:
data = fd.read(1024)
if not len(data):
break
sys.stdout.write(data)
</div>
希望本文所述对大家的Python程序设计有所帮助。
</div>
