Metadata-Version: 2.1
Name: aiomonetaclient
Version: 0.0.6
Summary: Aio cleint for moneta merchant api
Home-page: https://github.com/Thaumaturge/aiomonetaclient
Author: Artem Ziborov
Author-email: artimydin@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Thaumaturge/aiomonetaclient/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8.2
Description-Content-Type: text/markdown
License-File: LICENSE

# Aio Moneta client

This client for moneta merchant api https://www.moneta.ru/doc/MONETA.MerchantAPI.v2.ru.pdf

## Usage

```python
import asyncio
from aiomonetacleint import Client


if __name__ == '__main__':
    moneta_client = Client(
        username='<moneta username>',
        password='<moneta password>'
    )
    loop = asyncio.get_event_loop()
    profiles = loop.run_until_complete(
        moneta_client.find_profile_info(
            '<phone without +>'
        )
    )
    print(profiles.Envelope.Body.FindProfileInfoResponse.to_json(indent=4))
```

