Last updated:
0 purchases
djangoamiqus 0.2
# django-amiqusDjango app for integration with the Amiqus API.The current version supports Django 3.2+ and Python 3.10+.## BackgroundAmiqus is an online identity verification service. We use this libraryto integrate with it.## Amiqus workflowThere are three core entities that are modelled in this app: `Client`,`Records`, and `Check` (pending deprecation, and soon to be renamed`Step`). At a high level they fit together thus:1. A `Client` represents someone against whom you wish to carry out anidentity or background check. They are unique within Amiqus, althoughit's possible to carry out multiple checks over a period of time againstone user.1. A `Record` is a suite of checks that will have an overall status thatcombines the statuses of all the constituent checks.1. A `Check` / `Step` is an individual check - it could be an identity check, a facial recognition check, etc. See the API for all details.### `Client`An## InstallationThe project is available through PyPI as ``django-amiqus``:```bash$ pip install django-amiqus```## TestsIf you want to run the tests manually, install ``poetry``.```bash$ poetry install$ poetry run pytest```If you are hacking on the project, please keep coverage up.## ContributingStandard GH rules apply: clone the repo to your own account, make sure youupdate the tests, and submit a pull request.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.