No project description provided
Project description
Wallex SDK
Project Overview
The Wallex SDK is a software development kit that provides a set of tools and utilities for integrating with the Wallex payment gateway.
Table of Contents
Getting Started
This section provides instructions on how to get started with the Wallex SDK.
Installation
pip install pywallex
Features
This section describes the main features and capabilities of the Wallex SDK.
Feature 1: Create payment widget
from pywallex import Widget
widget = Widget(1, 'secret_key')
payment_url = await widget.create_payment(
Widget.PaymentModel(
product='client@mail.ru',
price='Xiaomi 9T',
quantity=1000,
message=1,
description='Hello thanks for order',
currency='Xiaomi 9T',
fiat_currency='USDT',
language='rub',
uuid='ru'
)
) # Returns payment url
Feature 2: Verify payment
from pywallex import Webhook
payment_data = {} # Replace with actual POST data
payment = Webhook(payment_data)
if payment.is_verified('secret_key') and payment.is_success():
# Payment success logic
# For example:
client = payment.get_client() # Get client email
# Update user balance:
# User.objects.filter(email=client).update(balance=payment.get_amount())
Feature 3: Payouts
from pywallex import Payout
payout = Payout(merchant_id, secret_key)
await payout.crypto_pay(
Payout.CryptoPayModel(
address=address,
amount=amount,
currency=currency,
)
)
Contributing
We welcome contributions from the developer community to improve the Wallex SDK. If you are interested in contributing to the Wallex SDK, please follow the steps below:
- Fork the repository on GitHub.
- Create a new branch for your feature or bug fix.
- Make the necessary changes in your branch.
- Write tests to ensure the changes are working as expected.
- Submit a pull request with your changes.
License
The Wallex SDK is licensed under the MIT License.
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
File details
Details for the file pywallex-0.1.10.tar.gz
.
File metadata
- Download URL: pywallex-0.1.10.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.6 Linux/5.15.0-1042-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3e15e9e9609d4141818aab313ae94dff8af98ae4fbae19278a7e19aea296fcb |
|
MD5 | e21cab4a49b57b3af76b7d41c3a23561 |
|
BLAKE2b-256 | b20a285a541598c60b7215f2fe1e12ebd2869c44be1b783026265167551f6506 |
File details
Details for the file pywallex-0.1.10-py3-none-any.whl
.
File metadata
- Download URL: pywallex-0.1.10-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.6 Linux/5.15.0-1042-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88b36ad4780531dcb63e2fb890abf31e759681ab8215377a56cf211811f0b6c0 |
|
MD5 | 94211b1f412918bc53c8c626cd4a1106 |
|
BLAKE2b-256 | 7245cebb0638280229aad109a5acd714eacb42a0f0658f128d5e3db1d2b2b01e |