Metadata-Version: 2.1
Name: django-mpesa
Version: 1.2
Summary: A python library that interfaces safaricoms mpesa apis
Home-page: https://www.vorane.com/
Author: Paul Ekirapa
Author-email: ekirapapaul@gmail.com
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6

=====
mpesa
=====

Django-Mpesa is a generic python library that interfaces the safaricom
MPESA APIs to enable easy payments to your python application.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "django-mpesa" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'django-mpesa',
    ]

2. Include the polls URLconf in your project urls.py like this::

    from django.urls import path, include
    from mpesa.urls import mpesa_urls

    path('mpesa/', include(mpesa_urls)),

3. Run `python manage.py migrate` to create the polls models.

4. Start the development server and visit http://127.0.0.1:8000/admin/

5. Visit http://127.0.0.1:8000/mpesa/ to checkout the library features.

