1.6.0
What's Changed
- V2 (2021-11) Implementation by @ChemicalLuck in #3
Full Changelog: 1.5.1...1.6.0
Breaking Changes
- Requires Python 3.12
- Previously this library only utilised version one of the Recharge API (2021-01).
v1.5.1
client = Recharge(access_token='XXXXX')
response = client.Order.list({'status': 'QUEUED', 'limit': '250'})v1.6.0
v1 and v2 are accessible on the Recharge Object
client = Recharge(access_token='XXXXX')
response = client.v1.Order.list({'status': 'QUEUED', 'limit': '250'})