Python3.7+ package to access the ClimaCell Weather API
Both an async module (ClimaCellV4
and ClimaCellV3
) and a synchronous module
(ClimaCellV3Sync
and ClimaCellV4Sync
) are provided.
from pyclimacell import ClimaCellV4Sync
api = ClimaCellSync("MY_API_KEY", latitude, longitude)
print(api.realtime(api.available_fields(timedelta(0))))
print(api.forecast_nowcast(api.available_fields(timedelta(minutes=5))), start_time, timedelta_duration, timestep))
- TODO
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.