你可以使用requests
庫來調用API接口,下面是一個簡單的示例代碼:
import requests
url = "https://api.example.com/endpoint" # API接口的URL
# 發起GET請求
response = requests.get(url)
# 檢查響應狀態碼
if response.status_code == 200:
# 獲取響應數據
data = response.json()
# 處理數據
print(data)
else:
print("請求失敗,狀態碼:" + str(response.status_code))
在上面的示例中,我們使用requests
庫的get
方法發起了一個GET請求,并獲取了響應數據。可以根據API接口的需求來選擇使用get
、post
、put
等方法來發送請求。在獲取響應數據后,你可以根據接口返回的數據格式進行相應的處理。