139 lines
3.8 KiB
Text
139 lines
3.8 KiB
Text
Metadata-Version: 2.4
|
|
Name: razorpay
|
|
Version: 2.0.1
|
|
Summary: Razorpay Python Client
|
|
Home-page: https://github.com/razorpay/razorpay-python
|
|
Author: Team Razorpay
|
|
License: MIT
|
|
Keywords: razorpay payment gateway india
|
|
Classifier: Development Status :: 4 - Beta
|
|
Classifier: Intended Audience :: Developers
|
|
Classifier: License :: OSI Approved :: MIT License
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.4
|
|
Classifier: Programming Language :: Python :: 3.5
|
|
Classifier: Programming Language :: Python :: 3.6
|
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
Description-Content-Type: text/markdown
|
|
License-File: LICENSE
|
|
Requires-Dist: requests
|
|
Dynamic: author
|
|
Dynamic: classifier
|
|
Dynamic: description
|
|
Dynamic: description-content-type
|
|
Dynamic: home-page
|
|
Dynamic: keywords
|
|
Dynamic: license
|
|
Dynamic: license-file
|
|
Dynamic: requires-dist
|
|
Dynamic: summary
|
|
|
|
# Razorpay Python Client
|
|
|
|
[](https://pypi.python.org/pypi/razorpay) [](https://coveralls.io/github/razorpay/razorpay-python?branch=master) []() [](https://opensource.org/licenses/MIT)
|
|
|
|
Python bindings for interacting with the Razorpay API
|
|
|
|
This is primarily meant for merchants who wish to perform interactions with the Razorpay API programatically.
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
$ pip install razorpay
|
|
```
|
|
|
|
## Usage
|
|
|
|
You need to setup your key and secret using the following:
|
|
You can find your API keys at <https://dashboard.razorpay.com/#/app/keys>.
|
|
|
|
```py
|
|
import razorpay
|
|
client = razorpay.Client(auth=("<YOUR_API_KEY>", "<YOUR_API_SECRET>"))
|
|
|
|
client.enable_retry(True) # Enable retry mechanism for failed API calls
|
|
```
|
|
|
|
## App Details
|
|
|
|
After setting up client, you can set your app details before making any request
|
|
to Razorpay using the following:
|
|
|
|
```py
|
|
client.set_app_details({"title" : "<YOUR_APP_TITLE>", "version" : "<YOUR_APP_VERSION>"})
|
|
```
|
|
|
|
For example, you can set the title to `Django` and version to `1.8.17`. Please ensure
|
|
that both app title and version are strings.
|
|
|
|
## Supported Resources
|
|
- [Account](documents/account.md)
|
|
|
|
- [Addon](documents/addon.md)
|
|
|
|
- [Item](documents/items.md)
|
|
|
|
- [Customer](documents/customer.md)
|
|
|
|
- [Device Activity](documents/deviceActivity.md)
|
|
|
|
- [POS Gateway Integration](documents/posGateway.md)
|
|
|
|
- [Token](documents/token.md)
|
|
|
|
- [Fund](documents/fund.md)
|
|
|
|
- [Order](documents/order.md)
|
|
|
|
- [Payments](documents/payment.md)
|
|
|
|
- [Settlements](documents/settlement.md)
|
|
|
|
- [Refunds](documents/refund.md)
|
|
|
|
- [Invoice](documents/invoice.md)
|
|
|
|
- [Subscriptions](documents/subscription.md)
|
|
|
|
- [Payment Links](documents/paymentLink.md)
|
|
|
|
- [Smart Collect](documents/virtualAccount.md)
|
|
|
|
- [Route](documents/transfer.md)
|
|
|
|
- [QR Code](documents/qrcode.md)
|
|
|
|
- [Emandate](documents/emandate.md)
|
|
|
|
- [Cards](documents/card.md)
|
|
|
|
- [Paper NACH](documents/papernach.md)
|
|
|
|
- [UPI](documents/upi.md)
|
|
|
|
- [Register Emandate and Charge First Payment Together](documents/registerEmandate.md)
|
|
|
|
- [Register NACH and Charge First Payment Together](documents/registerNach.md)
|
|
|
|
- [Payment Verification](documents/paymentVerfication.md)
|
|
|
|
- [Product Configuration](documents/productConfiguration.md)
|
|
|
|
- [Stakeholder](documents/stakeholder.md)
|
|
|
|
- [Webhook](documents/webhook.md)
|
|
|
|
- [Document](documents/document.md)
|
|
|
|
- [Dispute](documents/dispute.md)
|
|
|
|
- [Iin](documents/iin.md)
|
|
---
|
|
|
|
## Bugs? Feature requests? Pull requests?
|
|
|
|
All of those are welcome. You can [file issues][issues] or [submit pull requests][pulls] in this repository.
|
|
|
|
[issues]: https://github.com/razorpay/razorpay-python/issues
|
|
[pulls]: https://github.com/razorpay/razorpay-python/pulls
|