Metadata-Version: 2.1
Name: async-moip
Version: 0.0.1
Summary: Moip API wrapper for asyncio/aiohttp
Home-page: https://github.com/pypa/sampleproject
Author: jersobh
Author-email: jersobh@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

## Usage

```
import async_moip
import aiohttp
import asyncio

async def main(request):
    moip = moipLib.Moip(environment='<production or sandbox', key='<key>', token='<token>')
    customer = await moip.get_order('ORD-W121212121')
    print(customer)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
```

