- 处理接口响应和错误处理:在这一部分,你可以根据接口返回的数据进行相应的处理和错误处理。以下是一个简单的错误处理的例子:
import requests url = 'http://localhost:5000/api/example' params = {'name': 'Bob'} response = requests.get(url, params=params) if response.status_code == 200: data = response.json() print(data['message']) else: print(f'Error: {response.status_code}')