Socket
Socket
Sign inDemoInstall

async-yandex-checkout

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-yandex-checkout

Yandex checkout async api wrapper


Maintainers
1

Upload Python Package

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)

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc