No project description provided
Project description
Atlant payments payment page SDK
This is a set of libraries in the Python language to ease integration of your service with the Atlant payments Payment Page.
Please note that for correct SDK operating you must have at least Python 3.5.
Payment flow
Installation
Install with pip
pip install atlantpayments-sdk
Get URL for payment
from payment_page_sdk.gate import Gate
from payment_page_sdk.payment import Payment
gate = Gate('secret')
payment = Payment('402')
payment.payment_id = 'some payment id'
payment.payment_amount = 1001
payment.payment_currency = 'USD'
payment_url = gate.get_purchase_payment_page_url(payment)
payment_url
here is the signed URL.
Handle callback from Atlant payments
You'll need to autoload this code in order to handle notifications:
from payment_page_sdk.gate import Gate
gate = Gate('secret')
callback = gate.handle_callback(data)
data
is the JSON data received from payment system;
callback
is the Callback object describing properties received from payment system;
callback
implements these methods:
callback.get_payment_status()
Get payment status.callback.get_payment()
Get all payment data.callback.get_payment_id()
Get payment ID in your system.
Project details
Release history Release notifications | RSS feed
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 atlantpayments-sdk-1.0.1.tar.gz
.
File metadata
- Download URL: atlantpayments-sdk-1.0.1.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad9ad689093cb72234235a2d508cee5474d2a40c4215c155a96a58e47c839028 |
|
MD5 | a89b914f52e6e008f6ce1ca0f6b080c6 |
|
BLAKE2b-256 | 2c6d3c19346281ad24518395b1dc629c7637ce50bf93a38bf485f890ba438668 |
File details
Details for the file atlantpayments_sdk-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: atlantpayments_sdk-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1af61e23a682d6f9bdbfff2b67be93aeaf4312ba473ea4dff983e5aa62b5418a |
|
MD5 | 4f6acf28addc3f09ce026477c3602e09 |
|
BLAKE2b-256 | 080bb4c288518336af55830c933077daceeadad1d14b9be905f381cbc3e6dd9f |