Python 天气 API
如何将天气数据导入 Python 程序?
How do I import weather data into a Python program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将天气数据导入 Python 程序?
How do I import weather data into a Python program?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
由于 Google 已关闭其天气 API,我建议查看 OpenWeatherMap:
它不是一个 Python 库,但它非常易于使用,因为您可以获得 JSON 格式的结果。
这是使用 请求 的示例:
这是使用 PyOWM,OpenWeatherMap Web API 的 Python 包装器:
官方 API 文档位于此处。
要获取 API 密钥,请在此处注册以打开天气地图
Since Google has shut down its weather API, I suggest to check out OpenWeatherMap:
It's not a Python library, but it's super easy to use, because you can get results in JSON format.
Here's an example using Requests:
And here's an example using PyOWM, a Python wrapper around the OpenWeatherMap web API:
The official API documentation is available here.
To get the API key sign up to open weather map here