Metadata-Version: 2.1
Name: dojahcore
Version: 0.0.5
Summary: The official Dojah Core Python package
Home-page: UNKNOWN
Author: Dojah
Author-email: taiwo@dojah.io
License: UNKNOWN
Keywords: python,dojah,kyc,verification
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: python-dotenv

#dojahcore-python


Python plugin for [Dojah](https://dojah.io/)


## Installation



## Instantiate Dojah


```python
from dojahcore.dojah import Dojah

dojah_api_key  = 'test_sk_someRandomSecretKey'
dojah_app_id = '99999999999'
dojah_api = Dojah(api_key=dojah_api_key,app_id=dojah_app_id)

# to use the general class
dojah_api.general.data_plans()
```

