python写一个接口请求代码
时间: 2024-11-27 09:12:14 浏览: 5
在Python中,你可以使用诸如`requests`库来编写接口请求代码。下面是一个简单的示例,展示如何发送GET和POST请求:
```python
# 首先需要安装requests库,如果没有安装可以使用pip install requests
import requests
# 发送GET请求
def send_get_request(url):
response = requests.get(url)
if response.status_code == 200:
return response.json() # 返回JSON格式的数据
else:
print(f"请求失败,状态码:{response.status_code}")
# 发送POST请求
def send_post_request(url, data):
headers = {'Content-Type': 'application/json'} # 如果数据是json格式,设置header
response = requests.post(url, json=data, headers=headers)
return response.json()
# 使用示例
api_url = "https://example.com/api"
get_response = send_get_request(api_url + "/get_data")
post_response = send_post_request(api_url + "/submit", {"key": "value"})
#
阅读全文