python Python模块:urllib:request,urlopen

Posted

tags:

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

#!/usr/bin/env python3

from urllib.request import Request, urlopen

req = Request('http://www.debian.org')
req.add_header('Accept-Language', 'sv')
response = urlopen(req)
for line in response:
    print(line.decode('utf-8'))
print(req.header_items())

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

python3.5中没有urllib2怎么处理?

python2.7导入mysqldb

python—爬虫

python—爬虫

python爬虫思路

python爬虫思路