python3 urllib用法

Posted

tags:

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

import urllib
data = urllib.parse.urlencode(params).encode(‘utf-8‘)
req = urllib.request.Request(url, data)
req.add_header(‘Content-Type‘, "application/x-www-form-urlencoded")
response = urllib.request.urlopen(req)
the_page = response.read().decode(‘utf-8‘)
print(the_page)

如果不做encode,会直接报错:POST data should be bytes or an iterable of bytes. It cannot be of type str.

如果不做decode,看到的都是assic码

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

python3.x 和 python2.x关于 urllib的用法

python3爬虫之Urllib库

Python3.x与Python2.x的差异用法

Python3网络爬虫实战-23使用Urllib:分析Robots协议

Python3.x:requests的用法

python3对urllib和urllib2进行了重构