标签:
import urllib
def main():
url=‘http://www.qq.com‘
url1=urllib.urlopen(url)
# print url1.read()打印源代码
# print url1.info()头信息
# print url1.getcode()状态码
# print url1.geturl()打印网址
# print url1.code状态码
# print url1.fileno()文件对象
# print url1.fp
# print url1.headers头信息
# print url1.next()<!DOCTYPE html>
# print url1.url打印网址
# urllib.urlretrieve(url,path)写入到硬盘的
# print urllib.quote(url)编码
# print urllib.quote_plus(url)
# print urllib.unquote(url)解码
#get方式
# url2=urllib.urlencode({‘span‘:1,‘eggs‘:2,‘bacon‘:0})
# print url2
# print urllib.urlopen(‘http://python.org/query?%s‘%(url2)).read()
#post方式
# url2=urllib.urlencode({‘span‘:1,‘eggs‘:2,‘bacon‘:0})
# print url2
# print urllib.urlopen(‘http://python.org/query‘,(url2)).read()
#http代理
proxies={‘http:‘:‘http://proxy.example.com:8080/‘}
opener=urllib.FancyURLopener(proxies)
f=opener.open(‘http://www.python.org‘)
print f.read()
main()
标签:
原文地址:http://www.cnblogs.com/mhxy13867806343/p/4632912.html