Metadata-Version: 2.1
Name: aiomonobnk
Version: 0.5.4
Summary: Sync/Async version Monobank api
License: MIT
Author: yeghorkikhai
Author-email: yeghorkikhai@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aiohttp (>=3.8.4,<4.0.0)
Requires-Dist: ecdsa (>=0.18.0,<0.19.0)
Requires-Dist: pydantic (>=2.0.2,<3.0.0)
Requires-Dist: pytest (>=7.4.0,<8.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Description-Content-Type: text/markdown

# Aiomonobnk
<hr>

![PyPI](https://img.shields.io/pypi/l/aiomonobnk)
![PyPI](https://img.shields.io/pypi/v/aiomonobnk)
![PyPI](https://img.shields.io/pypi/pyversions/aiomonobnk)

## Async Python3.11 Monobank API

### Introduction

<b>Aiomonobnk</b> - python lib for: 
<br>&bull; MonoPay - Monobank Acquiring
<br>official docs: https://api.monobank.ua/docs/acquiring.html
<br>lib docs: https://github.com/yeghorkikhai/mbnk/blob/master/docs/monopay_api.md

### Github
```
https://github.com/yeghorkikhai/aiomonobnk
```

### Installation
```
pip install aiomonobnk
```

### Get Started with Monobank Open API


```python
import os
import asyncio
from aiomonobnk import MonoPay


async def main():
    async_mono = MonoPay(token=os.getenv("MONOBANK_API_TOKEN"))

    currency_list = await async_mono.public.currency()


if __name__ == "__main__":
    asyncio.run(main())
```

