24h Weather Forecast Data
Project description
Appyweather
Appyweather is a Python package that provide you with 24-hour weather forecast information for any city or location, and it is mainly created for educational reasons. All weather data are provided through the 'openweathermap' api service.
- Get your own api-key from: https://openweathermap.org
- Api-key might take a few hours to be activated.
Installation
Use the package manager pip to install appyweather.
pip install appyweather
Usage
from appyweather import Weather
# using a city name
weather = Weather(api_key='yourapikeyhere', city='Athens')
# using latitude/longitude coordinates + units (optional)
weather1 = Weather(api_key='yourapikeyhere', lat=37.98, lon=23.72, units='metric')
# get full 3-hour weather data for the next 24 hours
weather.next_24_hours()
# get basic 3-hour weather data for the next 24 hours
weather1.next_24_hours_basic()
- Sample url for sky condition icons: http://openweathermap.org/img/wn/10d@2x.png
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
appyweather-1.0.2.tar.gz
(2.6 kB
view hashes)