- 接口调用和参数传递:在这一部分,你可以使用HTTP客户端库,比如requests,来调用接口并传递参数。以下是一个使用requests库调用上述示例接口的简单例子:
import requests url = 'http://localhost:5000/api/example' params = {'name': 'Alice'} response = requests.get(url, params=params) data = response.json() print(data['message'])