SDK for using the Idfy API in Python
Project description
Idfy Python SDK
A Python SDK for simple integration with the Idfy REST API.
Supports Python 3.5 and above. (3.5, 3.6, 3.7)
Installation
The package is available on PyPI. Use of Pipenv is recommended (https://pipenv.readthedocs.io):
pipenv install idfy-sdk
Although it's just as easy to install without Pipenv:
pip install idfy-sdk
External libraries
This SDK was made to use as few external libraries as possible. It uses only the excellent "Requests" module (http://docs.python-requests.org/en/master/) which is probably the most commonly used Python library as of the writing of this document.
Working on the Code
Developers who want to make changes to the codebase are welcome to do so, but if you want to run the included unit-tests you need to download and run the Idfy mock server (https://github.com/idfy-io/idfy-mock-server). Once the server is up and running, all you have to do is navigate to the root folder of the SDK and type:
python -m unittest
If you're developing on a Linux-based system, remember to replace "python" with your desired Python interpreter as appropriate.
We know that many of our customers have very talented in-house developers, and we want to encourage our customers to make any changes they want to make the SDK perfectly suit their needs. Please feel free to send any potential questions or suggestions for improvement to our support channels listed below. We appreciate the feedback.
Documentation
Sample Usage
The example below shows how to get the details of a specific document.
# Import the SDK into your module
import idfy_sdk
# Set your credentials and desired scopes
idfy_sdk.IdfyConfiguration.set_client_credentials("Your client ID here", "Your client secret here", ["A list containing all your desired scopes (see documentation)"])
# Make a call to retrieve the document
service = idfy_sdk.services.SignatureService()
document_info = service.get_document(document_id)
print(document_info)
Asynchronous Methods
Using the async methods will make the program no longer run strictly single-threaded. The SDK is also able to make use of some of the features introduced to the asyncio module in Python 3.7, so running the code on that version or later might yield slight improvemets to efficiency and robustness when using async methods.
Support
- Open an issue to report bugs or submit feature requests.
- For other support requests, visit our support page or contact us at support@idfy.io.
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
Built Distribution
File details
Details for the file idfy_sdk-1.1.0.tar.gz
.
File metadata
- Download URL: idfy_sdk-1.1.0.tar.gz
- Upload date:
- Size: 108.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40b7e0cf4846559f49e23429346eee574fa6a3c7090cb9646a6a8e8c51f277d0 |
|
MD5 | 75c8b97faf22b2247316bc17c8f09f63 |
|
BLAKE2b-256 | dad6eaf3c900024e1fc7611b0e72e91196672e7270eabbddd4a54d7bffc89355 |
File details
Details for the file idfy_sdk-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: idfy_sdk-1.1.0-py3-none-any.whl
- Upload date:
- Size: 283.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0795de46d938086f0402c622401e0a9d87d3f0a6436f1e419036cd691cb51151 |
|
MD5 | 0dfbdc70c17401252b0fd90e45b3cfe5 |
|
BLAKE2b-256 | 7eef5b77f8c8996cbb0af766edd570be558102660af3373856b028306ae027b4 |