python-urllib&urllib2模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-urllib&urllib2模块相关的知识,希望对你有一定的参考价值。

GET 

#!/usr/bin/env python
# encoding: utf-8
import urllib
import urllib2

url = "http://127.0.0.1/index.php?a=hello world"
request = urllib2.Request(url=url)
response =urllib2.urlopen(request,timeout=20)
result = unicode(response.read())
print result

POST

# encoding: utf-8
import urllib
import urllib2

url = "http://127.0.0.1/index.php"
par = urllib.urlencode({a:1})
request = urllib2.Request(url)
opneer = urllib2.build_opener(urllib2.HTTPCookieProcessor())#所必须的
response = opneer.open(request,par)
result = response.read()
print result

 

以上是关于python-urllib&urllib2模块的主要内容,如果未能解决你的问题,请参考以下文章

2017.07.24 Python网络爬虫之urllib2修改Header

获取网页源代码

Python-urllib库parse模块解析链接常用方法

urllib2 HTTP 错误 400:错误请求

Python http客户端库requests & urllib2 以及ip地址处理IPy

urllib2.URLError:握手失败