Skip to main content

Python wrapper for OpenWeather API

Project description

Sunnyside

GitHub release Github all releases Python Version

Installation

pip3 install sunnyside

Getting Started

Python Version

Sunnyside only supports python 3.6+


Current Weather

https://openweathermap.org/current

Weather by city name

Note: Units are by default in Kelvin, to change units to imperial or celsius. This works for all Current Weather methods.

response = ref.get_current_weather_by_city_name("some_city_name_here","imperial")
import sunnyside

ref = sunnyside.CurrentWeather("YOUR-API-KEY-HERE") # Enter your api key here
response = ref.get_current_weather_by_city_name("city_name") # Enter your city name here

Weather by city id

ref.get_current_weather_by_city_id("city_id")

Weather by coordinates

ref.get_current_weather_by_geo_coords("lat","lon")

Weather by zip code

ref.get_current_weather_by_zip_code("zipcode")

5 Day Weather Forecast

https://openweathermap.org/forecast5

Weather by city name

Note: Units are by default in Kelvin, to change units to imperial or celsius. This works for all Current Weather methods.

response = ref.get_forecast_by_city_name("some_city_name_here","imperial")
import sunnyside

ref = sunnyside.CurrentWeather("YOUR-API-KEY-HERE") # Enter your api key here
response = ref.get_forecast_by_city_name("city_name") # Enter your city name here

Weather by city id

ref.get_forecast_by_city_id("city_id")

Weather by coordinates

ref.get_forecast_by_geo_coords("lat","lon")

Weather by zip code

ref.get_forecast_by_zip_code("zipcode")

Reference

https://openweathermap.org/api

https://openweathermap.org/current

https://openweathermap.org/forecast5

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sunnyside-1.0.1.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

sunnyside-1.0.1-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page