其他分享
首页 > 其他分享> > re01_urllib的使用

re01_urllib的使用

作者:互联网

 1 # 使用urllib 来获取首页的源码
 2 
 3 # 定义url
 4 url = 'http://www.baidu.com'
 5 
 6 # 在请求之前需要导入 发送 模块
 7 import urllib.request
 8 
 9 # 模拟浏览器向服务器发送请求
10 response = urllib.request.urlopen(url)  # 返回网页源码,需要变量接收响应response
11 
12 # 获取响应中的页面的源码
13 # read()返回的是字节形式的二进制数据,需要解码decode('utf-8')
14 content = response.read().decode('utf-8') # 返回内容,需要变量接收内容content
15 
16 print(content)

 

标签:decode,url,re01,content,源码,urllib,使用,response
来源: https://www.cnblogs.com/aknote/p/16382610.html