Python Library for YooKassa API
Project description
Table of Contents
📌 Description
A Python library for interacting with the YooKassa API. This library allows you to create, get, and cancel payments, as well as handle refunds.
Also there is both a synchronous and asynchronous variation
🔨 Features
- Easy-to-use interface for YooKassa API.
- Supports payment creation, capture, and cancellation.
- Supports refund creation, receiving
🗃️ Installation
To install the library, use pip:
pip install yookassa_api
Or you can install it by Poetry:
poetry add yookassa_api
💻 Getting Started
Here is a simple example to demonstrate how to use the library:
from yookassa_api import (
YooKassa, PaymentAmount,
Confirmation
)
from yookassa_api.types import CurrencyType
# Initialize the YooKassa client
client = YooKassa(
'SECRET_KEY',
shop_id=999999
)
# Create a payment
payment = client.create_payment(
PaymentAmount(value=100, currency=CurrencyType.RUB),
description='Test payment',
confirmation=Confirmation(
type=ConfirmationType.REDIRECT,
return_url="https://t.me/BotFather",
)
)
print(payment)
📄 Licence
This project is licensed under the MIT License - see the LICENSE file for details.
👤 Author of YooKassa API Library
© Lemson
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yookassa_api-0.2.3.tar.gz.
File metadata
- Download URL: yookassa_api-0.2.3.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.12.3 Linux/6.8.0-51-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc4d9edb47c606c40661e006485679406761eb5c6b356e967cc4a84fa5c2868e
|
|
| MD5 |
0937626b96ff9d66da938f1ca182c327
|
|
| BLAKE2b-256 |
e7386b0c1a258621d9f0eae2e0c5db9a0174dc538b276088b508713b4331096f
|
File details
Details for the file yookassa_api-0.2.3-py3-none-any.whl.
File metadata
- Download URL: yookassa_api-0.2.3-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.12.3 Linux/6.8.0-51-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33eb0cf5c3ecd9cc3bd2576296bda6abc8ed465e7f97fddb6ed60eb47902f963
|
|
| MD5 |
00632274082fde0fb560f50a0fe991b8
|
|
| BLAKE2b-256 |
11f3c1ee4c18c37450d26d53eeed9e8669f0ff53873ad03647c17dde1eee7755
|