TodoPago modern SDK for python
Project description
python-todopago
python-todopago is a library based on the TodoPagos's Python-SDK. The main purpose of this library is to provide a friendly and pythonic way to consume TodoPagos's services, using zeep as soap client and requests for rest client.
Installation
Use the package manager pip to install python-todopago.
pip install python-todopago
Usage
import python_todopago
# initialize connector class
connector = TodoPagoConnector(
"PRISMA A793D307441615AF6AAAD7497A75DE59", # token
2159, # merchant id
sandbox=True,
)
# authorize operation
authorization = connector.authorize_operation(
success_url="http://example.com/success/",
failure_url="http://example.com/failure/",
operation_id="ABC",
currency=32,
amount=2.00,
city="Cordoba",
country_code="AR",
state_code="D",
billing_first_name="Juan",
billing_last_name="Lopez",
billing_email="test@gmail.com",
billing_phone="+543513840243",
billing_postcode="5000",
billing_address_1="Arrayan 8958",
billing_address_2=None,
customer_id="1",
customer_ip_address="192.168.0.1",
items=items, # List[Item]
)
# get operation status
status = connector.get_operation_status(
"1fb7cc9a-14dd-42ec-bf1e-6d5820799642", # request key
"44caba31-1373-4544-aa6b-42abff696944", # answer key
)
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
This software is distributed under the MIT licence. See LICENCE for details.
Copyright (c) 2021-2022 Juan Pablo Senn juanpsenn@gmail.com
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
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
File details
Details for the file python_todopago-1.0.1-py3-none-any.whl.
File metadata
- Download URL: python_todopago-1.0.1-py3-none-any.whl
- Upload date:
- Size: 24.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
604fa8336062439d47bfd1607f11a1d4de461e6f632449f51c5a473d04ec67d7
|
|
| MD5 |
279abd7fc70dbd305994eff1ddbcb672
|
|
| BLAKE2b-256 |
42092df42e5b02a3b05dd7b0f63b3272277185c07fe09231f63b297e257437ff
|