Metadata-Version: 2.1
Name: moncashify
Version: 1.1.0
Summary: Python SDK to make API requests and handle API responses from the MonCash API
Home-page: https://lemayzeur.github.io/moncashify_sdk
Author: Lub Lorry Lamysère
Author-email: lemayzeur@code9haiti.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4
Description-Content-Type: text/x-rst
License-File: LICENSE

Requirements
===============

Compatible with Python 3.x or 2.x


Documentation
===============
	

Go to the `Official documentation <https://moncashify.readthedocs.io/en/latest>`_. 

Moncashify is distributed as a Python package through PyPI and it can be installed with tools like ``pip``:

.. code-block:: bash

   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 <https://code9haiti.com/en/tutorials/implement-moncashify-sdk-in-your-python-projects>`_. 

Once the package is installed, it is easy to import the package into your project.

.. code-block:: python

   import moncashify



Use the ``API()`` method to initialize the process.

.. code-block:: python

   moncashify.API(client_id, secret_key, debug)


``client_id`` and ``secret_key`` can be found in your `Moncash administration <https://moncashbutton.digicelgroup.com/Moncash-business/>`_. The debugging setting (``debug``) will define whether you are in production or not. The default is ``True``, which means you are in development.

.. code-block:: python

   moncash = moncashify.API(client_id, secret_key, debug=True)
    


