首頁 >後端開發 >Python教學 >最簡單的免費天氣 API 與 Python 的集成

最簡單的免費天氣 API 與 Python 的集成

Mary-Kate Olsen
Mary-Kate Olsen原創
2025-01-17 04:10:14605瀏覽

The Simplest Free Weather API Integration with Python

這可以在任何應用程式中使用最少的程式碼行。使用 Wea​​therXu API 服務取得天氣資料的簡單方法。
取得 API 金鑰:

  1. 前往WeatherXu網站
  2. 建立免費帳戶
  3. 導航到您的儀表板
  4. 從憑證部分複製您的 API 金鑰
import requests
api_address = 'https://api.weatherxu.com/v1/weather?api_key=YOUR_API_KEY'
lat = input('Latitude: ')
lon = input('Longitude: ')
url = f'{api_address}&lat={lat}&lon={lon}'
json_data = requests.get(url).json()
print(json_data)
formatted_data = json_data['data']['currently']
print(formatted_data)

以上是最簡單的免費天氣 API 與 Python 的集成的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn