Xendit REST API Client for Python - Invoice, Payment Request, Payment Method, Refund, Balance, Transaction, Customer, and Payout Services https://xendit.github.io/apireference/
Project description
Xendit Python SDK
The official Xendit Python SDK provides a simple and convenient way to call Xendit's REST API in applications written in Python.
- Package version: 6.0.0
Requirements
Python >= 3.10
Getting Started
Installation
Install directly from Xendit's Github Repository:
pip install git+https://github.com/xendit/xendit-python.git
(you may need to run pip
with root permission: sudo pip install git+https://github.com/xendit/xendit-python.git
)
Then import the package:
import xendit
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Then import the package:
import xendit
Authorization
The SDK needs to be instantiated using your secret API key obtained from the Xendit Dashboard. You can sign up for a free Dashboard account here.
import xendit
from xendit.apis import BalanceApi
from pprint import pprint
xendit.set_api_key('XENDIT_API_KEY')
client = xendit.ApiClient()
try:
response = BalanceApi(client).get_balance('CASH')
pprint(response)
except xendit.XenditSdkException as e:
print("Exception when calling BalanceApi->get_balance: %s\n" % e)
Documentation
Find detailed API information and examples for each of our product's by clicking the links below,
All URIs are relative to https://api.xendit.co. For more information about our API, please refer to https://developers.xendit.co/.
Further Reading
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 xendit_python-6.0.0.tar.gz
.
File metadata
- Download URL: xendit_python-6.0.0.tar.gz
- Upload date:
- Size: 211.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e75b6ca1ca7387e83d987ced5d26ad923c887143acb54bb825c4f333e91abd9 |
|
MD5 | 13a699fbc3d21f2d036e90a8db4f80ca |
|
BLAKE2b-256 | 50b8e4bdd95f2a14bb0561b8b4568374c6f57be8882bce8c5f77de7eb9aa1519 |
File details
Details for the file xendit_python-6.0.0-py3-none-any.whl
.
File metadata
- Download URL: xendit_python-6.0.0-py3-none-any.whl
- Upload date:
- Size: 760.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22f1b225e3f2d788da00ef439d89a745d2a8a5a63d4abbcde0b66acd3828c551 |
|
MD5 | 4b528978a9cfb4aee69d4a5723af814a |
|
BLAKE2b-256 | 7afdc34b61f163dd46a5f7d734130cfd6f7869cb953097b988a4b515bc4f7c5f |