Skip to main content

Razorpay Python Client

Project description

# Razorpay Python Client

[![PyPI Version](https://img.shields.io/pypi/v/razorpay.svg?style=flat-square)](https://pypi.python.org/pypi/razorpay) [![Build Status](https://travis-ci.org/razorpay/razorpay-python.svg?branch=master)](https://travis-ci.org/razorpay/razorpay-python) [![Coverage Status](https://coveralls.io/repos/github/razorpay/razorpay-python/badge.svg?branch=master)](https://coveralls.io/github/razorpay/razorpay-python?branch=master) [![License](https://img.shields.io/:license-mit-blue.svg?style=flat-square)](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>"))
```

### Payments

- Fetch all payments

```py
client.payment.all()
```

- Fetch a particular payment

```py
client.payment.fetch("<PAYMENT_ID>")
```

- Capture a payment

```py
client.payment.capture("<PAYMENT_ID>", "<AMOUNT>")
Note: <AMOUNT> should be same as the original amount while creating the payment
```

- Refund a payment

```py
client.payment.refund("<PAYMENT_ID>", "<AMOUNT>")
# for full refund

client.payment.refund("<PAYMENT_ID>", "<AMOUNT_TO_BE_REFUNDED>")
# for particular amount

Note: <AMOUNT_TO_BE_REFUNDED> should be equal/less than the original amount
```

### Refunds

- fetch a particular refund

```py
client.refund.fetch("<refund_id>")
```

- fetch all refunds

```py
client.refund.all()
```

### Orders

- Create a new order

```py
client.order.create(data=DATA)
DATA should contain these keys
amount : amount of order
currency : currency of order
receipt : receipt id of order
payment_capture : 1 if capture should be done automatically or else 0
notes(optional) : optional notes for order
```

- fetch a particular order

```py
client.order.fetch("<ORDER_ID>")
```

- fetch all orders

```py
client.order.all()
```

- fetch Payments of order

```py
client.order.payments("<ORDER_ID>")
```

### Invoices

- Create a new invoice

```py
client.invoice.create(data=DATA)
```
For List of params refer to this :-
https://docs.razorpay.com/v1/page/invoices#v1invoices


- fetch a particular invoice

```py
client.invoice.fetch("<INVOICE_ID>")
```

- fetch all invoices

```py
client.invoice.all()
```

### Card

- fetch a particular card data

```py
client.card.fetch(card_id=card_id)
```

### Customer

- fetch a particular customer Info

```py
client.customer.fetch(customer_id=customer_id)
```

- Create a customer

```py
client.customer.create(data=data)
```

- Edit a customer info

```py
client.customer.edit(customer_id=customer_id, data=data)
```

### Token

- fetch a token associated with a customer

```py
client.token.fetch(customer_id=customer_id, token_id=token_id)
```

- fetch all tokens associated with customer

```py
client.token.all(customer_id=customer_id)
```

- Delete a given token assicated with a customer

```py
client.token.delete(customer_id=customer_id, token_id=token_id)
```

### Utility

- Verify Payment Signature

```py
params_dict should have razorpay_order_id, razorpay_payment_id, razorpay_signature
which are received with the cord callback
client.utility.verify_payment_signature(params_dict)
```

- fetch all tokens associated with customer

```py
client.token.all(customer_id=customer_id)
```

- Delete a given token assicated with a customer

```py
client.token.delete(customer_id=customer_id, token_id=token_id)
```


## 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

razorpay-1.0.0.tar.gz (158.5 kB view details)

Uploaded Source

File details

Details for the file razorpay-1.0.0.tar.gz.

File metadata

  • Download URL: razorpay-1.0.0.tar.gz
  • Upload date:
  • Size: 158.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for razorpay-1.0.0.tar.gz
Algorithm Hash digest
SHA256 892db73c8f4f106a5110a6d29bb733e6741cca39006759c86242f8a5efa918c2
MD5 3f76c40f6b1791152580a9616d1a8204
BLAKE2b-256 a19677d02db214f783d951705f3ee4becb9898d68d811162228162bad7102b5d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page