Skip to content

Latest commit

 

History

History
80 lines (55 loc) · 2.73 KB

README.md

File metadata and controls

80 lines (55 loc) · 2.73 KB

CheckedID Python API client

PyPI Status Python Version License

Read the documentation at https://checkedid.readthedocs.io/ Tests Codecov

pre-commit Black

Features

  • Typed API client for api.checkedid.eu

Requirements

  • Build with Pydantic and httpx, does currently not support async.

Installation

You can install CheckedID Python API client via pip from PyPI:

$ pip install checkedid

Usage

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")

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the MIT license, CheckedID Python API client is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Credits

This project was generated from @cjolowicz's Hypermodern Python Cookiecutter template.