A Python library for interacting with CashFree API.
Project description
CashFree API Python Package
This Python package provides a simple interface to the CashFree APIs. It can be used to create orders, payment links, check the status of transactions, and refund orders etc
Note: Refer to the cashfree api docs for detailed payload instructions, API references, and examples.
Installation
To install the package, run the following command:
pip install cashfree
Usage
The following code shows how to create a CashFree Payment Session:
- Initiate Cashfree Object
from cashfree import CashFree
# Instantiate CashFree object for the sandbox environment (TEST)
cashfree_client = CashFree(client_id, client_secret, environment="TEST", api_version='v3')
- Create A Customer Object
from cashfree import CustomerDetails
customer = CustomerDetails(customer_id='CF_7768', customer_phone='7778989987')
- Create A Order Object
from cashfree import CashFreeOrder
order = CashFreeOrder(order_id='your-order-id', order_amount=120.3)
Now you can use the client to interact with CashFree APIs
- Create an order payment session
# You can pass the order & customer object inside create_order method
order = cashfree_client.create_order(order, customer)
payment_session_id = order.get('payment_session_id')
- Get Payment Details Of A Single Order
order_details = cashfree_client.get_payment_details('your_order_id')
- Webhook Signature validation
# Get The raw Payload data
raw_payload = request.get_data(as_text=True)
timestamp = request.headers.get('x-webhook-timestamp')
received_signature = request.headers.get('x-webhook-signature')
is_valid_webhook = cashfree_client.validate_webhook_signature(raw_payload, timestamp, received_signature)
Contributing:
Contributions are always welcome! If you find any issues or have suggestions, please open an issue or create a pull request on GitHub.
License:
This project is licensed under the MIT License
Support:
For api related support please contact support@cashfree.com.
Pending Feature:
- Easy Split Module
- Payouts Module
- Cashgram Module
- Verification Suite
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 cashfree-1.0.1.tar.gz.
File metadata
- Download URL: cashfree-1.0.1.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8df623cb624f565ca7288e838372dd6b4c1cc62622c2284b2dc4a5d53ac5e005
|
|
| MD5 |
0df1a4d90a9a7d1339e8e50d4a9c7c63
|
|
| BLAKE2b-256 |
4096584c1ef0749ed124471c7654d99081e2afefde13ad798b5b1b1ba0a3eb43
|
File details
Details for the file cashfree-1.0.1-py3-none-any.whl.
File metadata
- Download URL: cashfree-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e35ab951e25f22ba2fe6faea5294dcec7936cd271d2eae3c5cbcb37837c0ffe
|
|
| MD5 |
515f99fb1db624218589a9ea4393a8e3
|
|
| BLAKE2b-256 |
94ec578eeeb7678409a30722279e4ca46797de1b6a8fd843f89ac227048a6ce1
|