GitXplorerGitXplorer
f

checkedid-api-python-client

public
1 stars
0 forks
1 issues

Commits

List of commits on branch main.
Verified
8de8c28f1c92ac7af5cedff24380c802596d79ef

Merge pull request #292 from foarsitter/dependabot/github_actions/codecov/codecov-action-5.1.1

ffoarsitter committed a month ago
Verified
07b107d8a09064569ad0772048a5d2e8a33f6806

Merge pull request #293 from foarsitter/dependabot/github_actions/pypa/gh-action-pypi-publish-1.12.3

ffoarsitter committed a month ago
Verified
6911dccf3db35f6905a016a1e189d9fd22d61d14

Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3

ddependabot[bot] committed a month ago
Verified
5da1baff2df65eba0e6dc7d9fead3eaac0b67c1a

Bump codecov/codecov-action from 5.0.2 to 5.1.1

ddependabot[bot] committed a month ago
Verified
4ed802ef3fe528a7422b5dfcc0a7475e31bf2dcc

Merge pull request #289 from foarsitter/all-repos_autofix_github-actions-coverage-path

ffoarsitter committed 2 months ago
Verified
35e0504d50bdd829ca941ef34ea9367b3c252469

Merge pull request #288 from foarsitter/all-repos_autofix_remove-safety

ffoarsitter committed 2 months ago

README

The README file for this repository.

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.