Metadata-Version: 2.1
Name: aiogmaps
Version: 0.0.1
Summary: Asyncio client library for Google Maps API Web Services
Home-page: https://github.com/hzlmn/aiogmaps
Author: Oleh Kuchuk
Author-email: kuchuklehjs@gmail.com
License: MIT
Keywords: asyncio,aiohttp
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (>=2.3.5)
Requires-Dist: googlemaps

# aiogmaps
[![Build Status](https://travis-ci.org/hzlmn/aiogmaps.svg?branch=master)](https://travis-ci.org/hzlmn/aiogmaps)

Asyncio client library for Google Maps API Web Services


## Getting Started

```sh
$ pip install aiogmaps
```

## Usage

```python
import asyncio

from aiogmaps import Client

API_KEY = "<your api key>"


async def main(loop):
    gmaps = Client(API_KEY, verify_ssl=False, loop=loop)
    response = await gmaps.place('ChIJN1t_tDeuEmsRUsoyG83frY4')
    assert response is not None
    print(response)
    await gmaps.close()


if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main(loop))

```


## License

`MIT`


