urllib使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了urllib使用相关的知识,希望对你有一定的参考价值。
python3中urllib2被整合成了url.request和url.error了
example1:
获取pythonorg主页
import urllib.request
result = urllib.request.urlopen("http://www.python.org")
respone = result.read()
respone = respone.decode("utf8")
result.close()
print(respone)
以上是关于urllib使用的主要内容,如果未能解决你的问题,请参考以下文章