写一个通过api抓取数据的python爬虫

好的,这是一个使用 Python 爬虫通过 API 抓取数据的示例:

import requests

url ="https://api.example.com/data"
response = requests.get(url)

if response.status_code == 200:
    data = response.json()
    print(data)
else:
    print("请求失败,状态码:", response.status_code)

这段代码使用了 requests 库发送一个 GET 请求到 API 地址 `http

你可能感兴趣的:(python,爬虫,开发语言)