1、urllib.request.urlopen()
模拟浏览器向服务器发送请求
2、response 服务器返回的数据
response的数据类型是HttpResponse
子节--》字符串
解码decode
字符串--》字节
编码encode
3、read() 字节形式读取二进制 扩展:read(5)返回前的几个字节
4、readline() 读取一行
5、readlines() 一行一行读取直至结束
6、getcode() 获取状态码
7、geturl() 获取url
8、getheaders() 获取headers
9、urllib.request.urlretrieve()
请求网页
请求图片
请求视频
使用urllib来获取百度首页的源码
import urllib.request# 1、定义一个url 就是你要访问的地址
url = 'http://www.baidu.com'# 2、模拟浏览器向服务器发送请求 response响应
response = urllib.request.urlopen(url)
# 3、获取响应中的页面的源码 content 内容的意思
# read方法 返回的是字节形式的二进制数据
# 我们要将二进制数据转换为字符串
# 二进制 --> 字符串 解码 decode('编码的格式')
content = response.read().decode('utf-8')# 打印数据
print(content)