Skip to main content

Python wrapper for OpenWeather API

Project description

pyopenweather

pyopenweather is a lightweight asynchronous Python wrapper for the OpenWeatherMap Current Weather Data API

Badges

Build Status Codacy Badge Codacy Badge

Installation

Use the package manager pip to install pyopenweather.

pip install pyopenweather

Usage

API Key

OpenWeatherMap APIs require an API key to provide valid responses. Please obtain an API key on the OpenWeatherMap website.

Environment Variables

pyopenweather will search for the following environment variables when the Weather class is instantiated:

  • OPENWEATHER_API_KEY
  • LATITUDE
  • LONGITUDE

OPENWEATHER_API_KEY

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.

LATITUDE

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.

LONGITUDE

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.

Examples

With Environment Variables

from pyopenweather.weather import Weather

weather = Weather()

weather.longitude # returns longitude
weather.latitude # returns latitude
weather.temperature # returns temperature
weather.pressure # returns temperatuire

Without Environment Variables

from 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 temperatuire

Contributing

Pull 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.

License

MIT

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

pyopenweather-0.1.1.tar.gz (4.7 kB view hashes)

Uploaded Source

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