| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Python SDK provides API options for integrating Solidgate’s payment orchestrator into your Python applications.
Check our
| SDK for Python contains | Table of contents |
|---|---|
|
Requirements Installation Usage Errors |
To start using the Python SDK:
pip install solidgate-sdkfrom solidgate import ApiClient client = ApiClient(public_key='YourMerchantId', secret_key='YourPrivateKey')
Create a class instance of the ApiClient class.
from solidgate import ApiClient client = ApiClient(public_key, secret_key)
response = client.form_resign({'order_id': '12345'})Handle errors.
try:
response = client.charge({...})
except Exception as e:
print(e)Looking for help? Contact us
Want to contribute? Submit a pull request
| Back | FazBrowse Home | New Git URL |