pyopenweather is a lightweight asynchronous Python wrapper for the OpenWeatherMap Current Weather Data API
Use the package manager pip to install pyopenweather.
pip install pyopenweatherOpenWeatherMap APIs require an API key to provide valid responses. Please obtain an API key on the OpenWeatherMap website.
pyopenweather will search for the following environment variables when the Weather class is instantiated:
OPENWEATHER_API_KEYLATITUDELONGITUDE
If you set the API key and the environment variable OPENWEATHER_API_KEY the library will use it on instantiation, otherwise the API key can be passed in as the api_key parameter.
If you set the LATITUDE environment variable, the library will use it on instantiation, otherwise the latitude can be passed in as the lat parameter.
If you set the LONGITUDE environment variable, the library will use it on instantiation, otherwise the longitude can be passed in as the long parameter.
from pyopenweather.weather import Weather
weather = Weather()
weather.longitude # returns longitude
weather.latitude # returns latitude
weather.temperature # returns temperature
weather.pressure # returns temperatuirefrom pyopenweather.weather import Weather
weather = Weather(lat=37.34, long=-121.89, api_key='abcdef123456')
weather.longitude # returns longitude
weather.latitude # returns latitude
weather.temperature # returns temperature
weather.pressure # returns temperatuirePull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.