Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.1 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.1 KB

smhi-weather

PyPI version Testing

Provides friendly functions to fetch data from SMHI:s open data api.

The source off all data provided is SMHI, use in accordance with SMHI:s guidelines and API policy.

Install with

pip install smhi-weather

Import and use as

from smhi_weather import SmhiWeather

forecast = SmhiWeather(59.334591, 18.063240).get_forecast()

print(forecast)

Forecast data can also be saved to a file called forecast.json with

from smhi_weather import SmhiWeather

SmhiWeather(59.334591, 18.063240).get_forecast(save_to_file=True)

For now a single function exists which return a full forecast according to SMHI:s docs on Get Point Forecast.

🦆