- Typed API client for api.checkedid.eu
- Build with Pydantic and httpx, does currently not support async.
You can install CheckedID Python API client via pip from PyPI:
$ pip install checkedid
from checkedid import errors, models, Client
try:
client = Client('1001')
dossier: models.ReportResponse = client.dossier('123456789')
except errors.CheckedIDNotFoundError as e:
print("Dossier does not exists")
Contributions are very welcome. To learn more, see the Contributor Guide.
Distributed under the terms of the MIT license, CheckedID Python API client is free and open source software.
If you encounter any problems, please file an issue along with a detailed description.
This project was generated from @cjolowicz's Hypermodern Python Cookiecutter template.