A simple wrapper for chargify. Provide also a module to have interaction with the website and provide for example the possibility to delete a subscription.
The full documentation is at https://pychargifysimple.readthedocs.io.
Install pychargifysimple:
pip pychargifysimple
Example:
from pychargifysimple.web import ChargifyWeb
chargify_web = ChargifyWeb(
user='your_user', password='your_password',
url='your_url')
chargify_web.delete_subscription(42)
Initialize a ChargifyWeb object and remove a subscription.
- Possibility to remove subscription