Your Package Name is a Python library that provides functionality for interacting with the Zoksh API. It includes classes for handling payments, webhooks, and other related operations.
- Create and validate payments
- Handle webhooks for secure communication
- Generate signatures for API requests
- Simplify integration with the Zoksh API
Use pip to install the package:
$ cd zoksh-python-sdk
$ pip install .from your_package_name import Connector, Payment
# Create a connector instance
connector = Connector(zoksh_key='your_zoksh_key', zoksh_secret='your_zoksh_secret')
# Create a payment instance
payment = Payment(connector)
# Validate a transaction
transaction_hash = 'your_transaction_hash'
response = payment.validate(transaction_hash)
# Process the response
print(response) $ python -m unittest tests/test_your_package_name.pyFor detailed documentation and API reference, please refer to the Documentation directory.
Source Code: https://github.com/mulx10/zoksh-python-sdk Issue Tracker: https://github.com/mulx10/zoksh-python-sdk/issues
Contributions are welcome! Please read the Contributing Guidelines for more information.