由于前连天身体不适所以停更了很多天,希望大家能够谅解。接下来让我们进入新一轮的学习,Requests库的使用。
requests是一个很实用的Python HTTP客户端库,编写爬虫和测试服务器响应数据时经常会用到,Requests是Python语言的第三方的库,专门用于发送HTTP请求。
import requests
url = 'https://baidu.com'
response = requests.get(url = url )
# requests的一个类型和6个属性
# 1个类型:
print(type(response))
response.encoding='utf-8'
print(response.url)
运行结果:
print(response.text)
print(response.content)
print(response.status_code)
运行结果:
print(response.headers)
本篇文章就到这里啦,下篇文章我们一起学习如何去使用requests库!!