Compatible with Python 3.x or 2.x
Go to the Official documentation.
Moncashify is distributed as a Python package through PyPI and it can be installed with tools like pip
:
pip install moncashify
If you’re new to Moncashify you can get started by following the tutorial Implement Moncashify SDK In Your Python Projects.
Once the package is installed, it is easy to import the package into your project.
import moncashify
Use the API()
method to initialize the process.
moncashify.API(client_id, secret_key, debug)
client_id
and secret_key
can be found in your Moncash administration. The debugging setting (debug
) will define whether you are in production or not. The default is True
, which means you are in development.
moncash = moncashify.API(client_id, secret_key, debug=True)