https://github.com/snacsnoc/fastreact
fastreact is a ReCharge Payments API client wrapper.
https://github.com/snacsnoc/fastreact
recharge recharge-payments shopify-api
Last synced: 3 months ago
JSON representation
fastreact is a ReCharge Payments API client wrapper.
- Host: GitHub
- URL: https://github.com/snacsnoc/fastreact
- Owner: snacsnoc
- License: gpl-3.0
- Created: 2022-02-21T05:58:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-28T23:31:32.000Z (over 1 year ago)
- Last Synced: 2025-01-22T18:33:32.999Z (5 months ago)
- Topics: recharge, recharge-payments, shopify-api
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# fastreact
fastreact (**Re**Charge **A**PI **C**lient **T**ool) is a ReCharge Payments API client wrapper.
You can query customers, orders and subscriptions.`python3 fastreact.py -o 5555555555`
```
Set input order to [ 5555555555 ]
Searching ReCharge orders.....
Searching Shopify orders....
{
"next_cursor": null,
"previous_cursor": null,
"orders": [
{
"id": 1231231123,
"address_id": 123123123,
"billing_address": {
...
```# Requirements
- python3
- smile on your face# Usage
```
pip install -r requirements.txt
```# Config
edit `config.json` with your API token`indent_level` is the amount of tabs for the JSON formatted data
`data_sort` is to sort JSON formatted data (a-z)
(if you wanna make things official)
`ln -s ./fastreact.py /usr/local/bin/fastreact`
## Search customers by email
```
./fastreact -c [email protected]
```
## Search customers by customer ID (Shopify or ReCharge customer IDs)
```
./fastreact -c 420000069
```## Search by order ID with colour
```
./fastreact -o 48282910 -z
```## Search by subscription ID
```
./fastreact -s 3242342
```