使用urlopen函数打开一个统一资源定位器(URL)并从网站读取数据
通过使用urlopen函数打开一个URL:
infile = urllib.request.urlopen("https://www.baidu.com")
urlopen函数(在urllib.request模块中定义)像打开一个文件一样打开一个URL资源。例如:
import urllib.request
infile = urllib.request.urlopen("http://www.baidu.com/")
print(infile.read().decode())
使用infile.read()从URL上读取的数据是比特形式的原始数据。调用decode()方法将原始数据转换为一个字符串。