Metadata-Version: 2.1
Name: appyweather
Version: 1.0.2
Summary: 24h Weather Forecast Data
Home-page: https://example.com
Author: Kostas Deligiannis
Author-email: pr0fil3r@gmail.com
License: MIT
Keywords: weather,forecast,openweather
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

## 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](https://pip.pypa.io/en/stable/) to install appyweather.

```bash
pip install appyweather
```

## Usage

```python
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
[MIT](https://choosealicense.com/licenses/mit/)

