Paymentus Python Auth SDK
Project description
Paymentus Auth
Authentication client for Paymentus API services. This package handles JWT token management and authentication for Paymentus API endpoints.
Installation
pip install paymentus-auth
Usage
Basic Usage
import asyncio
from paymentus_auth import Auth, AuthConfig
async def main():
# Initialize the auth client
auth_config = AuthConfig(
base_url='https://<environment>.paymentus.com',
pre_shared_key='shared-256-bit-secret',
scope=['xotp'], # Base scopes
tla='ABC'
)
auth_client = Auth(auth_config)
# Fetch a token
token = await auth_client.fetch_token()
print(f"Token: {token}")
# Check if token is expired
is_token_expired = auth_client.is_token_expired()
print(f"Token Expired: {is_token_expired}")
# Get current token
current_token = auth_client.get_current_token()
print(f"Current Token: {current_token}")
asyncio.run(main())
Configuration Options
The Auth constructor accepts the following configuration:
| Option | Type | Required | Description |
|---|---|---|---|
base_url |
string | Yes | Base URL for the Paymentus API, it varies based on the environment biller is in |
pre_shared_key |
string | Yes | Pre-shared key for JWT signing |
scope |
string[] | Yes | Array of API scopes (e.g., ['xotp', 'xotp:profile']) |
tla |
string | Yes | Three-letter acronym for your application |
aud |
string | No | Audience claim for the JWT (optional) |
timeout |
number | No | Request timeout in milliseconds (default: 5000) |
user_login |
string | No | User login identifier |
pm_token |
string[] | No | Payment method tokens |
payments_data |
list | No | Payment data for the transaction |
Available Scopes
The SDK supports the following scopes:
xotp- Basic XOTP functionalityxotp:profile- Profile managementxotp:profile:read- Read profile dataxotp:profile:create- Create profilesxotp:profile:update- Update profilesxotp:profile:delete- Delete profilesxotp:listProfiles- List profilesxotp:payment- Payment processingxotp:autopay- Autopay functionalityxotp:autopay:delete- Delete autopay settingsxotp:accounts- Account managementxotp:accounts:listAccounts- List accounts
Error Handling
The package throws specific error types for different scenarios:
from paymentus_auth.errors import ConfigurationError, TokenError, NetworkError
try:
token = await auth_client.fetch_token()
except ConfigurationError as e:
print(f"Configuration Error: {e}")
except TokenError as e:
print(f"Token Error: {e}")
except NetworkError as e:
print(f"Network Error: {e}")
Advanced Usage
Using Multiple Scopes
import asyncio
from paymentus_auth import Auth, AuthConfig
async def main():
auth_config = AuthConfig(
base_url='https://<environment>.paymentus.com',
pre_shared_key='shared-256-bit-secret',
scope=['xotp:profile', 'xotp:payment'], # Multiple scopes
tla='ABC',
aud='WEB_SDK'
)
auth_client = Auth(auth_config)
token = await auth_client.fetch_token()
print(f"Token: {token}")
asyncio.run(main())
Using Optional Fields
import asyncio
from paymentus_auth import Auth, AuthConfig
async def main():
auth_config = AuthConfig(
base_url='https://<environment>.paymentus.com',
pre_shared_key='shared-256-bit-secret',
scope=['xotp'],
tla='ABC',
aud='WEB_SDK',
user_login='user@example.com',
pm_token=['token1', 'token2'],
payments_data=[{
'account_number': '123456',
'conv_fee_state': 'NY',
'conv_fee_country': 'US'
}]
)
auth_client = Auth(auth_config)
token = await auth_client.fetch_token()
print(f"Token: {token}")
asyncio.run(main())
API Reference
Auth Class
Constructor
Auth(config: AuthConfig)
Creates a new Auth client instance with the provided configuration.
Methods
fetch_token()
async fetch_token() -> str
Fetches a new JWT token from the Paymentus API. Returns a Promise that resolves to the token string.
get_current_token()
get_current_token() -> str or None
Returns the current token if available, or None if no token has been fetched.
is_token_expired()
is_token_expired() -> bool
Returns true if the current token is expired or no token is available.
Development
Building
python -m pip install -e .
Testing
python -m pytest
Disclaimer
These SDKs are intended for use with the URLs and keys that are provided to you for your company by Paymentus. If you do not have this information, please reach out to your implementation or account manager. If you are interested in learning more about the solutions that Paymentus provides, you can visit our website at paymentus.com. You can request access to our complete documentation at developer.paymentus.io. If you are currently not a customer or partner and would like to learn more about the solution and how you can get started with Paymentus, please contact us at https://www.paymentus.com/lets-talk/.
Contact us
If you have any questions or need assistance, please contact us at sdksupport@paymentus.com.
License
MIT
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
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 paymentus_auth-1.0.0.tar.gz.
File metadata
- Download URL: paymentus_auth-1.0.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9ce3fdfb4afeb7b9706ba252e77f4ed68fa53859e324affcc49762b03d8eed2
|
|
| MD5 |
85ae018f8f7f2854ba9d62edfd6596d2
|
|
| BLAKE2b-256 |
48de343fae4831496ee054fd60f77166101527f7ddc33bdd14e57da69ae6d46f
|
File details
Details for the file paymentus_auth-1.0.0-py3-none-any.whl.
File metadata
- Download URL: paymentus_auth-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6befe212cc937671765c8b06ce79616a41549fc36064600c74e390ac485018dd
|
|
| MD5 |
a1062eb6ceffb2898679b6205082ab4b
|
|
| BLAKE2b-256 |
19b03327b75eda05849a194763e56f36d8767e89d7f6d0fb3819270d1deb800c
|