python爬虫从0到1 -ajax的get请求
在Python中,可以使用requests
库来发送AJAX GET请求。以下是一个示例代码,展示了如何使用requests
库来模拟AJAX GET请求:
import requests
# 目标URL
url = 'https://api.example.com/data'
# 发送GET请求
response = requests.get(url)
# 检查请求是否成功
if response.status_code == 200:
data = response.json() # 解析JSON数据
print(data)
else:
print('请求失败,状态码:', response.status_code)
确保替换url
变量的值为你需要请求的实际URL。如果目标网站使用了AJAX请求并且需要携带特定的headers或cookies,请确保在requests.get()
调用中相应地设置这些参数。
评论已关闭