python (一)
2021-06-15 18:04
标签:port str set lib 获取网页 pen getc har htm import urllib if name == ‘main‘ : 2、自动获取网页编码 安装 chardet > python -m pip install chardet import urllib if name == ‘main‘ : python (一) 标签:port str set lib 获取网页 pen getc har htm 原文地址:http://blog.51cto.com/7175088/2287952 req = urllib.urlopen(‘自己想查看的网址‘)
html = req.read()
dehtml = html.decode(‘utf-8‘)
print dehtml
import chardetreq = urllib.urlopen(‘自己想查看的网址‘)
html=req.read()
charset = chardet.detect(html)
print req.getcode()
print charset