Metadata-Version: 2.1
Name: async-yandex-checkout
Version: 0.0.6
Summary: Yandex checkout async api wrapper
Home-page: https://github.com/yank0vy3rdna/async-yandex-checkout
Author: yank0vy3rdna
Author-email: yankovyerdna@yandex.ru
License: GPLv3
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (>=3.6)
Provides-Extra: ujson

![Upload Python Package](https://github.com/yank0vy3rdna/async-yandex-checkout/workflows/Upload%20Python%20Package/badge.svg)
# async_yandex_checkout

Async yandex checkout api wrapper for python

## Example of usage

```python
from async_yandex_checkout.configuration import configuration
from async_yandex_checkout.payment import Payment
import asyncio

configuration.configure("shop_id", "secret_key")
loop = asyncio.get_event_loop()
payment = Payment()
loop.run_until_complete(
    payment.create(1000000, "description", "redirect_url")
)

loop.run_until_complete(
    payment.update()
)
print(payment.status)
```

