vehicle


Namevehicle JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://github.com/frenck/python-vehicle
SummaryAsynchronous Python client providing RDW vehicle information.
upload_time2023-11-06 19:49:31
maintainerFranck Nijhof
docs_urlNone
authorFranck Nijhof
requires_python>=3.11,<4.0
licenseMIT
keywords rdw vehicle apk api async client
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python: Asynchronous Python client providing RDW vehicle information

[![GitHub Release][releases-shield]][releases]
[![Python Versions][python-versions-shield]][pypi]
![Project Stage][project-stage-shield]
![Project Maintenance][maintenance-shield]
[![License][license-shield]](LICENSE.md)

[![Build Status][build-shield]][build]
[![Code Coverage][codecov-shield]][codecov]
[![Quality Gate Status][sonarcloud-shield]][sonarcloud]
[![Open in Dev Containers][devcontainer-shield]][devcontainer]

[![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors]

[![Support Frenck on Patreon][patreon-shield]][patreon]

Asynchronous Python client providing RDW vehicle information.

## About

This package allows you to get information from the RDW
(Netherlands Vehicle Authority) about a specific vehicle by its license plate.

## Installation

```bash
pip install vehicle
```

## Usage

```python
import asyncio

from vehicle import RDW, Vehicle


async def main():
    """Show example of fetching RDW vehicle info from Socrata API."""
    async with RDW() as rdw:
        vehicle: Vehicle = await rdw.vehicle(license_plate="11ZKZ3")
        print(vehicle)


if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())
```

## Changelog & Releases

This repository keeps a change log using [GitHub's releases][releases]
functionality. The format of the log is based on
[Keep a Changelog][keepchangelog].

Releases are based on [Semantic Versioning][semver], and use the format
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
based on the following:

- `MAJOR`: Incompatible or major changes.
- `MINOR`: Backwards-compatible new features and enhancements.
- `PATCH`: Backwards-compatible bugfixes and package updates.

## Contributing

This is an active open-source project. We are always open to people who want to
use the code or contribute to it.

We've set up a separate document for our
[contribution guidelines](.github/CONTRIBUTING.md).

Thank you for being involved! :heart_eyes:

## Setting up a development environment

The easiest way to start, is by opening a CodeSpace here on GitHub, or by using
the [Dev Container][devcontainer] feature of Visual Studio Code.

[![Open in Dev Containers][devcontainer-shield]][devcontainer]

This Python project is fully managed using the [Poetry][poetry] dependency manager. But also relies on the use of NodeJS for certain checks during development.

You need at least:

- Python 3.11+
- [Poetry][poetry-install]
- NodeJS 18+ (including NPM)

To install all packages, including all development requirements:

```bash
npm install
poetry install
```

As this repository uses the [pre-commit][pre-commit] framework, all changes
are linted and tested with each commit. You can run all checks and tests
manually, using the following command:

```bash
poetry run pre-commit run --all-files
```

To run just the Python tests:

```bash
poetry run pytest
```

## Authors & contributors

The original setup of this repository is by [Franck Nijhof][frenck].

For a full list of all authors and contributors,
check [the contributor's page][contributors].

## License

MIT License

Copyright (c) 2021-2023 Franck Nijhof

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

[build-shield]: https://github.com/frenck/python-vehicle/actions/workflows/tests.yaml/badge.svg
[build]: https://github.com/frenck/python-vehicle/actions/workflows/tests.yaml
[codecov-shield]: https://codecov.io/gh/frenck/python-vehicle/branch/main/graph/badge.svg
[codecov]: https://codecov.io/gh/frenck/python-vehicle
[contributors]: https://github.com/frenck/python-vehicle/graphs/contributors
[devcontainer-shield]: https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode
[devcontainer]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/frenck/python-vehicle
[frenck]: https://github.com/frenck
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
[github-sponsors]: https://github.com/sponsors/frenck
[keepchangelog]: http://keepachangelog.com/en/1.0.0/
[license-shield]: https://img.shields.io/github/license/frenck/python-vehicle.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[poetry-install]: https://python-poetry.org/docs/#installation
[poetry]: https://python-poetry.org
[pre-commit]: https://pre-commit.com/
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[pypi]: https://pypi.org/project/vehicle/
[python-versions-shield]: https://img.shields.io/pypi/pyversions/vehicle
[releases-shield]: https://img.shields.io/github/release/frenck/python-vehicle.svg
[releases]: https://github.com/frenck/python-vehicle/releases
[semver]: http://semver.org/spec/v2.0.0.html
[sonarcloud-shield]: https://sonarcloud.io/api/project_badges/measure?project=frenck_python-vehicle&metric=alert_status
[sonarcloud]: https://sonarcloud.io/summary/new_code?id=frenck_python-vehicle


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/frenck/python-vehicle",
    "name": "vehicle",
    "maintainer": "Franck Nijhof",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "opensource@frenck.dev",
    "keywords": "rdw,vehicle,apk,api,async,client",
    "author": "Franck Nijhof",
    "author_email": "opensource@frenck.dev",
    "download_url": "https://files.pythonhosted.org/packages/34/1e/12b9ef5286726bde9a320446dd4b06ab9080a497a302a7cb3d2ad832db52/vehicle-2.2.0.tar.gz",
    "platform": null,
    "description": "# Python: Asynchronous Python client providing RDW vehicle information\n\n[![GitHub Release][releases-shield]][releases]\n[![Python Versions][python-versions-shield]][pypi]\n![Project Stage][project-stage-shield]\n![Project Maintenance][maintenance-shield]\n[![License][license-shield]](LICENSE.md)\n\n[![Build Status][build-shield]][build]\n[![Code Coverage][codecov-shield]][codecov]\n[![Quality Gate Status][sonarcloud-shield]][sonarcloud]\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\n\n[![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors]\n\n[![Support Frenck on Patreon][patreon-shield]][patreon]\n\nAsynchronous Python client providing RDW vehicle information.\n\n## About\n\nThis package allows you to get information from the RDW\n(Netherlands Vehicle Authority) about a specific vehicle by its license plate.\n\n## Installation\n\n```bash\npip install vehicle\n```\n\n## Usage\n\n```python\nimport asyncio\n\nfrom vehicle import RDW, Vehicle\n\n\nasync def main():\n    \"\"\"Show example of fetching RDW vehicle info from Socrata API.\"\"\"\n    async with RDW() as rdw:\n        vehicle: Vehicle = await rdw.vehicle(license_plate=\"11ZKZ3\")\n        print(vehicle)\n\n\nif __name__ == \"__main__\":\n    loop = asyncio.get_event_loop()\n    loop.run_until_complete(main())\n```\n\n## Changelog & Releases\n\nThis repository keeps a change log using [GitHub's releases][releases]\nfunctionality. The format of the log is based on\n[Keep a Changelog][keepchangelog].\n\nReleases are based on [Semantic Versioning][semver], and use the format\nof `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented\nbased on the following:\n\n- `MAJOR`: Incompatible or major changes.\n- `MINOR`: Backwards-compatible new features and enhancements.\n- `PATCH`: Backwards-compatible bugfixes and package updates.\n\n## Contributing\n\nThis is an active open-source project. We are always open to people who want to\nuse the code or contribute to it.\n\nWe've set up a separate document for our\n[contribution guidelines](.github/CONTRIBUTING.md).\n\nThank you for being involved! :heart_eyes:\n\n## Setting up a development environment\n\nThe easiest way to start, is by opening a CodeSpace here on GitHub, or by using\nthe [Dev Container][devcontainer] feature of Visual Studio Code.\n\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\n\nThis Python project is fully managed using the [Poetry][poetry] dependency manager. But also relies on the use of NodeJS for certain checks during development.\n\nYou need at least:\n\n- Python 3.11+\n- [Poetry][poetry-install]\n- NodeJS 18+ (including NPM)\n\nTo install all packages, including all development requirements:\n\n```bash\nnpm install\npoetry install\n```\n\nAs this repository uses the [pre-commit][pre-commit] framework, all changes\nare linted and tested with each commit. You can run all checks and tests\nmanually, using the following command:\n\n```bash\npoetry run pre-commit run --all-files\n```\n\nTo run just the Python tests:\n\n```bash\npoetry run pytest\n```\n\n## Authors & contributors\n\nThe original setup of this repository is by [Franck Nijhof][frenck].\n\nFor a full list of all authors and contributors,\ncheck [the contributor's page][contributors].\n\n## License\n\nMIT License\n\nCopyright (c) 2021-2023 Franck Nijhof\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n[build-shield]: https://github.com/frenck/python-vehicle/actions/workflows/tests.yaml/badge.svg\n[build]: https://github.com/frenck/python-vehicle/actions/workflows/tests.yaml\n[codecov-shield]: https://codecov.io/gh/frenck/python-vehicle/branch/main/graph/badge.svg\n[codecov]: https://codecov.io/gh/frenck/python-vehicle\n[contributors]: https://github.com/frenck/python-vehicle/graphs/contributors\n[devcontainer-shield]: https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode\n[devcontainer]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/frenck/python-vehicle\n[frenck]: https://github.com/frenck\n[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png\n[github-sponsors]: https://github.com/sponsors/frenck\n[keepchangelog]: http://keepachangelog.com/en/1.0.0/\n[license-shield]: https://img.shields.io/github/license/frenck/python-vehicle.svg\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg\n[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png\n[patreon]: https://www.patreon.com/frenck\n[poetry-install]: https://python-poetry.org/docs/#installation\n[poetry]: https://python-poetry.org\n[pre-commit]: https://pre-commit.com/\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg\n[pypi]: https://pypi.org/project/vehicle/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/vehicle\n[releases-shield]: https://img.shields.io/github/release/frenck/python-vehicle.svg\n[releases]: https://github.com/frenck/python-vehicle/releases\n[semver]: http://semver.org/spec/v2.0.0.html\n[sonarcloud-shield]: https://sonarcloud.io/api/project_badges/measure?project=frenck_python-vehicle&metric=alert_status\n[sonarcloud]: https://sonarcloud.io/summary/new_code?id=frenck_python-vehicle\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Asynchronous Python client providing RDW vehicle information.",
    "version": "2.2.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/frenck/python-vehicle/issues",
        "Changelog": "https://github.com/frenck/python-vehicle/releases",
        "Documentation": "https://github.com/frenck/python-vehicle",
        "Homepage": "https://github.com/frenck/python-vehicle",
        "Repository": "https://github.com/frenck/python-vehicle"
    },
    "split_keywords": [
        "rdw",
        "vehicle",
        "apk",
        "api",
        "async",
        "client"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1395162749308bada9f24c959cfbe76402115353bf11d9ef64a02b41c0309283",
                "md5": "519babc436be9120c5a940ebb368eaf4",
                "sha256": "a1177e5d1c0eaf67c661eaa75f5ffe7f5f9c31eb9b8ccbf2ca935754a2dd07a8"
            },
            "downloads": -1,
            "filename": "vehicle-2.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "519babc436be9120c5a940ebb368eaf4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 9991,
            "upload_time": "2023-11-06T19:49:30",
            "upload_time_iso_8601": "2023-11-06T19:49:30.251546Z",
            "url": "https://files.pythonhosted.org/packages/13/95/162749308bada9f24c959cfbe76402115353bf11d9ef64a02b41c0309283/vehicle-2.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "341e12b9ef5286726bde9a320446dd4b06ab9080a497a302a7cb3d2ad832db52",
                "md5": "a25553f055f3223ad3f005f746e1dab0",
                "sha256": "7506120deddd81776a0a202e5b1b387d415c05d65d025eabe96e45a5684b4b96"
            },
            "downloads": -1,
            "filename": "vehicle-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a25553f055f3223ad3f005f746e1dab0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 11341,
            "upload_time": "2023-11-06T19:49:31",
            "upload_time_iso_8601": "2023-11-06T19:49:31.534670Z",
            "url": "https://files.pythonhosted.org/packages/34/1e/12b9ef5286726bde9a320446dd4b06ab9080a497a302a7cb3d2ad832db52/vehicle-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-06 19:49:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "frenck",
    "github_project": "python-vehicle",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "vehicle"
}
        
Elapsed time: 0.14293s