Skip to main content

FreeKassa Python SDK

Project description

FreeKassa Python SDK

FreeKassa Logo

Описание

FreeKassa Python SDK — это библиотека для интеграции с API FreeKassa, позволяющая легко управлять платежами, заказами и выплатами. С помощью этого SDK вы сможете быстро создать платежные ссылки, получать информацию о заказах и управлять своим балансом.

Установка

pip install fkassa

Использование

Инициализация

Для начала работы с библиотекой, вам необходимо инициализировать класс FreeKassa с вашими учетными данными:

from fkassa import FreeKassa

free_kassa = FreeKassa(
    shop_id=12345,
    api_key='your_api_key',
    secret_word_1='your_secret_word'
)

Создание ссылки на оплату

Чтобы создать ссылку на оплату, используйте метод create_payment_link:

payment_link = free_kassa.create_payment_link(
    order_id='order_001',
    amount=100.0,
    currency='RUB'
)

print(f"Ссылка на оплату: {payment_link}")

Получение списка заказов

Вы можете получить список заказов с помощью метода get_orders:

orders_response = free_kassa.get_orders()

for order in orders_response.orders:
    print(f"Заказ ID: {order.id}, Статус: {order.status}")

Создание заказа

Для создания нового заказа используйте метод create_order:

order_response = free_kassa.create_order(
    order_id='order_002',
    amount=150.0,
    currency='USD',
    email='customer@example.com'
)

print(f"Созданный заказ ID: {order_response.fk_id}, Ссылка: {order_response.url}")

Проверка статуса платежной системы

Чтобы проверить доступность платежной системы, используйте метод check_payment_system_status:

status_response = free_kassa.check_payment_system_status(PaymentSystem.SBP)

if status_response.type == "success":
    print("Платежная система доступна.")
else:
    print(f"Ошибка: {status_response.description}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fkassa-0.0.3-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file fkassa-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: fkassa-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.5

File hashes

Hashes for fkassa-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 464542ffdcea00562739978e865d0e8277698f39b0f0a113a337e0e102a3ed6a
MD5 0a7c522f0b120a926768ea9b412d3052
BLAKE2b-256 2a2146d950442d6145cc23f1d3816704739e1c3a45e94fa04eea80681297dceb

See more details on using hashes here.

Supported by

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