python urllib学习

Posted 土豆爸

tags:

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

import json
import urllib.request
ua=Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36
r=urllib.request.urlopen(http://httpbin.org/get)
req=urllib.request.Request("http://httpbin.org/user-agent")
req.add_header(User-Agent,ua)
r=urllib.request.urlopen(req)
r=r.read().decode()
rsp=json.loads(r)
print(rsp.get(user-agent))

看USERAGENT

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

学习Python的urllib模块

python3 urllib学习

爬虫学习 Python网络爬虫第三弹《爬取get请求的页面数据》

python urllib学习

python 机器学习有用的代码片段

python的urllib学习