可以的,请提供一点代码示例吧
时间: 2024-05-15 14:14:51 浏览: 73
当然,以下是一个简单的Python代码示例:
``` python
import requests
url = 'https://api.openweathermap.org/data/2.5/weather?q=London,uk&APPID=your_api_key'
response = requests.get(url)
if response.status_code == 200:
data = response.json()
temperature = data['main']['temp']
print(f"The temperature in London is {temperature} K")
else:
print("Error getting weather data")
```
上面的代码使用requests库向OpenWeatherMap API发送GET请求,以获取伦敦的当前温度,并将其显示在控制台中。请注意,您需要将“your_api_key”替换为您的OpenWeatherMap API密钥。
阅读全文