首页 > 编程 > Python > 正文

python使用post提交数据到远程url的方法

2019-11-25 17:36:07
字体:
来源:转载
供稿:网友

本文实例讲述了python使用post提交数据到远程url的方法。分享给大家供大家参考。具体如下:

import sys, urllib2, urllibzipcode = "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)

希望本文所述对大家的Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表