发布时间:2019-06-28 11:53:23编辑:auto阅读(2108)
1、使用requests模块
import request
url='http://www.xxx.com/xxx'
data={'username':'zhangsan','password':'zhangsanpw'}
r=requests.post(url,data=data)
print r.text2、使用urllib2模块
import urllib2
import urllib
url='http://www.xxx.com/xxx'
data={'username':'zhangsan','password':'zhangsanpw'}
r = urllib2.Request(url,urllib.urlencode(data))
result = urllib2.urlopen(req)
print result.read()
上一篇: python之函数isinstance
下一篇: 史上最全 python常见面试题(一)
51315
50764
41361
38168
32648
29539
28384
23258
23228
21553
1627°
2362°
1964°
1909°
2238°
1946°
2639°
4424°
4265°
3035°