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