学习爬虫过程中解决下载网页乱码的问题
2021-06-04 01:03
标签:爬虫 原因 html 就是 res coding https com 网页 这个问题肯定是字符的编码错乱导致的。网上也有很多解决方案。我看过的方案很多,最好的就是这个了。 https://www.sohu.com/a/289375951_420744 原因文章说得很清楚,理论也讲得明白。解决方案我录在下面。版权归原作者。 方法一:直接指定res.encoding 方法二:通过res.apparent_encoding属性指定 方法三:通过编码、解码的方式 学习爬虫过程中解决下载网页乱码的问题 标签:爬虫 原因 html 就是 res coding https com 网页 原文地址:https://www.cnblogs.com/xiaolee-tech/p/12344592.htmlimport requests
url = "http://search.51job.com"
res = requests.get(url)
res.encoding = "gbk"
html = res.text
print(html)
import requests
url = "http://search.51job.com"
res = requests.get(url)
res.encoding = res.apparent_encoding
html = res.text
print(html)
import requests
url = "http://search.51job.com"
res = requests.get(url)
html = res.text.encode(‘iso-8859-1‘).decode(‘gbk‘)
print(html)
文章标题:学习爬虫过程中解决下载网页乱码的问题
文章链接:http://soscw.com/index.php/essay/90188.html