Metadata-Version: 2.1
Name: PyFineract
Version: 0.0.79
Summary: A fineract API wrapper
Home-page: https://github.com/mobidevke/PyFineract
Author: Mobidev Kenya
Author-email: projects@devs.mobi
License: UNKNOWN
Description: 
        Tutorial (Short)
        ----------------
        
        First create a Fineract instance::
        
            from fineract import Fineract
        
            # First create a Fineract instance
        
            # using username, password, tenant and base url
            f = Fineract("mifos", "password", "default, "https://localhost/fineract-provider/api/v1")
        
        Then work with your Fineract objects::
        
            for client in f.get_clients():
                print(client.full_name)
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
