Last updated:
0 purchases
asyncyandexcheckout 0.0.7
async_yandex_checkout
Async yandex checkout api wrapper for python
Example of usage
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)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.