Unofficial Robokassa API
Project description
Robokassa API
You can use this simple library for create a link or use that for checks a signatures.
Example:
- Firstly, create Robokassa instance. If you use this in sandbox mode for test robokassa,
you need to paste a pair of test keys.
Also, don't forget check what
is_testargument equalsTrue.
from robokassa import Robokassa, HashAlgorithm
robokassa = Robokassa(
merchant_login="my_login",
password1="super_secret_test_password1",
password2="super_secret_test_password2",
algorithm=HashAlgorithm.sha512,
is_test=True
)
- After that, you can generate a link to payment page
Write a necessary params for a link. You can use
additional params. Choose default prefix of params.
It can be shp, Shp or SHP, don't specify
=symbol. Method automatically generate additional params. Next, you can use any params like in example:user_data,product_id.
my_payment_link = robokassa.payment.link.generate_by_script(
out_sum=1000,
inv_id=0,
description="It's my description",
success_url="https://example.com",
success_url_method="POST",
default_prefix="shp",
user_data="important_user_data",
product_id="790ec274-20af-4972-b5d6-c8698d64fb52"
)
- Check signature when you received robokassa notification in result, success or fail urls.
signature_is_success = robokassa.payment.check.result_url_signature_is_valid(
result_signature=("f31b7e1a669ee8686f14be357e5ed2144"
"1aca28893fa5b80032ad7f57af07fca80"
"2c5f23abb2628ec2d7826af43c8919d7d"
"06b4c6881e774b7dc8a056339a8cf"),
inv_id=0,
out_sum=1000,
shp_user_data="important_user_data",
shp_product_id="790ec274-20af-4972-b5d6-c8698d64fb52"
)
if signature_is_success:
print("Nice!")
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
robokassa-1.0.0.tar.gz
(12.0 kB
view details)
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
robokassa-1.0.0-py3-none-any.whl
(15.5 kB
view details)
File details
Details for the file robokassa-1.0.0.tar.gz.
File metadata
- Download URL: robokassa-1.0.0.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.12.3 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae5450616e04d2d753ffa96c8bcb140343b688dbb12c6fa584645f42b05f1a75
|
|
| MD5 |
050c7cbd81ba028ff820f84ac0312b74
|
|
| BLAKE2b-256 |
48a124effb8d32f6d56cd1b7e160e51bd0b5c459777c0710cc2179c32fd863a7
|
File details
Details for the file robokassa-1.0.0-py3-none-any.whl.
File metadata
- Download URL: robokassa-1.0.0-py3-none-any.whl
- Upload date:
- Size: 15.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.12.3 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a950e76b50d523d10e188703ee697dc9548162be4e674eb8262afc637f9bf83
|
|
| MD5 |
85a3f6befcffe3a5c0bd36a4231c36fa
|
|
| BLAKE2b-256 |
869b293e7ad35c79512f424d926dd8a113feee69948bccac79a2485341fe589a
|