recharge 1.0.0

Creator: railscoder56

Last updated:

Add to Cart

Description:

recharge 1.0.0

This library makes interacting with the Recharge API dead simple.

Installation
pip install recharge


Usage
from recharge import RechargeAPI

api = RechargeAPI(access_token='XXXXX')

response = api.Order.list({'status': 'QUEUED', 'limit': '250'})

for order in response['orders']:
print(order['id'])
For more details on the content of the reponses, visit the official recharge API docs.


Resources Available
api.Address
api.Charge
api.Checkout
api.Customer
api.Order
api.Subscription


Methods Available
api.*.create
api.*.update
api.*.get
api.*.list

api.Address.apply_discount
api.Checkout.charge
api.Order.change_date
api.Order.delete
api.Subscription.cancel
api.Subscription.set_next_charge_date

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.