Metadata-Version: 2.1
Name: weatherstackapi
Version: 0.1.3
Summary: Python wrapper for the weather stack api
Home-page: https://github.com/LiskIsBest/WeatherStackApi
License: GPLv3
Keywords: python,weather,weatherapi,weather stack,api,wrapper
Author: Darien Moore
Author-email: LiskIsBest@gmail.com
Requires-Python: >=3.10.6,<4.0.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: httpx (>=0.23.3,<0.24.0)
Requires-Dist: pydantic (>=1.10.7,<2.0.0)
Project-URL: Repository, https://github.com/LiskIsBest/WeatherStackApi/releases/tag/v0.1.3
Description-Content-Type: text/markdown

WeatherStackWrapper
---
In development wrapper library for [WeatherStack](https://weatherstack.com/) weather api.

Install
---
```bash
pip install weatherstackapi
```
```bash
poetry add weatherstackapi
```

Usage
---
```Python
import weatherstackapi as wsa

weatherApi = wsa.WeatherApi(access_key)

weatherApi.current(location, units, language)
weatherApi.historical(location, historical_date, hourly, interval, units, language)
```
