moncashify

Python SDK to make API requests and handle API responses from the MonCash API


Keywords
python, python-library, python-sdk
License
MIT
Install
pip install moncashify==1.1.0

Documentation

Requirements

Compatible with Python 3.x or 2.x

Documentation

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

Getting Started

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)