Skip to main content

Library for Python 3+ to accept payments on CISPay

Project description

PythonLib

Библиотека, разработанная для Python 3.7+, которая позволяет создавать платежи и проверять их статус


Инструкция

Установка библиотеки
  • 1.1. Выполните команду - pip install CISPay или
  • 1.2. Скачайте исходный код - git clone https://github.com/CISPay/PythonLib
Использование
Создание счета
from CISPay import CISPay

client = CISPay('uuid') # UUID вашего мерчанта

amount = 500
comment = 'Test'
expire = 1500

data = client.order_create(amount, comment, expire)
# data = {
#    'status': 'success', 
#    'uuid': 'a3938999-155b-42ba-9e48-9fd0a8a8dc77', 
#    'url': 'https://acquire.cispay.pro/a3938999-155b-42ba-9e48-9fd0a8a8dc77', 
#    'expire': 1685566800, 
#    'sum': 500.0 
# }
Получение информации о счете
from CISPay import CISPay

client = CISPay('uuid') # UUID вашего мерчанта
uuid = 'a3938999-155b-42ba-9e48-9fd0a8a8dc77' # Полученный UUID при создании счета

data = client.order_info(uuid)
# data = {
#    'status': 'success', 
#    'id': 123,
#    'uuid': 'a3938999-155b-42ba-9e48-9fd0a8a8dc77', 
#    'shop_uuid': 'dc4bc78f-27ba-4778-96ce-905c6b23c3e9',
#    'amount': 500.0,
#    'comment': 'Test',
#    'expire': 1685566800, 
#    'is_test': 1
# }

Лицензия

Copyright © 2024 CISPay

Проект распространяется под лицензией MIT

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

cispay-1.0.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

cispay-1.0.1-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page