Metadata-Version: 2.1
Name: PyAsyncWeatherAPI
Version: 1.0.2
Summary: Asynchronous api wrapper for www.weatherapi.com!
Home-page: https://github.com/ichetiva/weather-api
Author: @ichetiva
License: gpl-3.0
Keywords: weather,weather-api,api-weather,async-weather,async-weather-api
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# Asynchronous api wrapper for www.weatherapi.com!

## Usage

### Quick Start

Install from PyPi:
```
pip install PyAsyncWeatherAPI
```

### Example

```python
import asyncio

from weather_api import WeatherAPI


async def main():
    w_api = WeatherAPI("api-key")
    weather = await w_api.current(city="Yoshkar-Ola")
    print(weather.current.temp_c)

asyncio.run(main())
```

- Library docs
- API [docs](https://www.weatherapi.com/docs/)


