A fineract API wrapper
Project description
PyFineract
PyFineract is Python (2 and 3) library to access an Apache Fineract Api. This library enables you to manage resources such as clients, loans, loan products etc in your python applications.
Install
$ pip install PyFineract
Demo
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 play with Fineract objects:
for client in f.get_clients():
print(client.full_name)
Raw Requests
Since this project is still in it's early stages of development, we have provided a method that can be used to make raw requests.
clients = f.raw_request('GET', '/clients' params={'limit': 10})
print(clients)
Documentation (Coming Soon)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
PyFineract-0.0.19.dev1.tar.gz
(10.5 kB
view details)
File details
Details for the file PyFineract-0.0.19.dev1.tar.gz
.
File metadata
- Download URL: PyFineract-0.0.19.dev1.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97fd7415fc25b5793177ca8d080384deedfeb9f29185c3c246d90d8f95ba6733 |
|
MD5 | dd818b4a1ecaa1d749af7953315baa72 |
|
BLAKE2b-256 | 6020956fdfa4bb8f6c5d9475685c67015cacf5ffd8fca4684ffa09d70a576f37 |