手机
当前位置:查字典教程网 >脚本专栏 >python >python执行get提交的方法
python执行get提交的方法
摘要:本文实例讲述了python执行get提交的方法。分享给大家供大家参考。具体如下:importsys,urllib2,urllibdefadd...

本文实例讲述了python执行get提交的方法。分享给大家供大家参考。具体如下:

import sys, urllib2, urllib def addGETdata(url, data): """Adds data to url. Data should be a list or tuple consisting of 2-item lists or tuples of the form: (key, value). Items that have no key should have key set to None. A given key may occur more than once. """ return url + '?' + urllib.urlencode(data) zipcode = 'S2S 7U8' url = addGETdata('http://www.yoursiteweb.com/getForecast', [('query', zipcode)]) print "Using URL", url req = urllib2.Request(url) fd = urllib2.urlopen(req) while 1: data = fd.read(1024) if not len(data): break sys.stdout.write(data)

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

【python执行get提交的方法】相关文章:

使用python 获取进程pid号的方法

Python操作列表的常用方法分享

python sys模块sys.path使用方法示例

python实现跨文件全局变量的方法

Python 返回汉字的汉语拼音

Python中的Function定义方法第1/2页

python判断windows隐藏文件的方法

python 不关闭控制台的实现方法

Python strip lstrip rstrip使用方法

采用python实现简单QQ单用户机器人的方法

精品推荐
分类导航