Skip to content

1.6.0

Choose a tag to compare

@ChemicalLuck ChemicalLuck released this 10 May 08:21
2f56e4d

What's Changed

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'})