weatherly
v0.10.0
Weatherlyは、Weatherapi.comから気象データを取得するシンプルなパッケージです。特定の場所の現在および履歴の天気データにアクセスするための使いやすいインターフェイスを提供します。
ComputerにWeatherlyにインストールするには、Python 3.10以上が必要です。 Pythonバージョンが要件の実行を満たしている場合:
# Windows
py -3 -m pip install -U weatherly
# MacOS / Linux
python3 -m pip install -U weatherlyおめでとう!これで、Weatherlyはマシンで使用する準備ができました。
import weatherly
client = weatherly . Client ( api_key = "your WeatherAPI key" )
# you can set language to all requests, or pass it manually
client . set_language ( "fr" ) # lang code
client . set_language ( "German" ) # language full name
# getting weather info
current_weather = client . get_current_weather ( query = "London" )
# getting forecast info
forecast = client . get_forecast_data ( query = "Paris" , days = 3 )
# historical data
history = client . get_historical_data ( query = "48.8567,2.3508" , date = "2010-01-01" ) # query could also be latitude,longitude
# marine data
marine = client . get_marine_data ( query = "Madrid" )