arnhem


Namearnhem JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/klaasnicolaas/python-arnhem
SummaryAsynchronous Python client providing Open Data information of Arnhem
upload_time2023-08-09 08:55:03
maintainerKlaas Schoute
docs_urlNone
authorKlaas Schoute
requires_python>=3.9,<4.0
licenseMIT
keywords parking arnhem locations api async client
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- Banner -->
![alt Banner of the arnhem package](https://raw.githubusercontent.com/klaasnicolaas/python-arnhem/main/assets/header_arnhem-min.png)

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

[![GitHub Activity][commits-shield]][commits-url]
[![PyPi Downloads][downloads-shield]][downloads-url]
[![GitHub Last Commit][last-commit-shield]][commits-url]
[![Open in Dev Containers][devcontainer-shield]][devcontainer]

[![Build Status][build-shield]][build-url]
[![Typing Status][typing-shield]][typing-url]
[![Maintainability][maintainability-shield]][maintainability-url]
[![Code Coverage][codecov-shield]][codecov-url]


Asynchronous Python client for the open datasets of Arnhem (The Netherlands).

## About

A python package with which you can retrieve data from the Open Data Platform of Arnhem via [their API][api]. This package was initially created to only retrieve parking data from the API, but the code base is made in such a way that it is easy to extend for other datasets from the same platform.

## Installation

```bash
pip install arnhem
```

## Datasets

You can read the following datasets with this package:

- [Parking spots / Parkeerplaatsen][parking]

<details>
    <summary>Click here to get more details</summary>

### Parking spots

You can use the following parameters in your request:

- **limit** (default: 10) - How many results you want to retrieve.
- **set_filter** (default: 1=1) - The filter you want to use to filter the results.

You get the following output data back with this python package:

| Variable | Type | Description |
| :------- | :--- | :---------- |
| `spot_id` | string | The id of the parking spot |
| `parking_type` | string | The type of parking spot |
| `street` | string | The street where the parking spot is located |
| `traffic_sign` | string | The traffic sign at the parking spot |
| `neighborhood` | string | The neighborhood where the parking spot is located |
| `neighborhood_code` | string | The code associated with the neighborhood |
| `district` | string | The district where the parking spot is located |
| `district_code` | string | The code associated with the district |
| `area` | string | The area of the parking spot in this municipality |
| `coordinates` | string | The coordinates of the parking spot |
</details>

### Example

```python
import asyncio

from arnhem import ODPArnhem


async def main() -> None:
    """Show example on using the Open Data Platform API of Arnhem."""
    async with ODPArnhem() as client:
        locations = await client.locations(limit=100, set_filter="RVV_SOORT='E6a'")
        print(locations)


if __name__ == "__main__":
    asyncio.run(main())
```

## Use cases

[NIPKaart.nl][nipkaart]

A website that provides insight into where disabled parking spaces are, based on data from users and municipalities (open data platforms). Operates mainly in the Netherlands, but since summer 2022 also processes data from countries throughout Europe.

## 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](CONTRIBUTING.md).

Thank you for being involved! :heart_eyes:

## Setting up development environment

The simplest way to begin is by utilizing the [Dev Container][devcontainer]
feature of Visual Studio Code or by opening a CodeSpace directly on GitHub.
By clicking the button below you immediately start a Dev Container in Visual Studio Code.

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

This Python project relies on [Poetry][poetry] as its dependency manager,
providing comprehensive management and control over project dependencies.

You need at least:

- Python 3.9+
- [Poetry][poetry-install]

Install all packages, including all development requirements:

```bash
poetry install
```

Poetry creates by default an virtual environment where it installs all
necessary pip packages, to enter or exit the venv run the following commands:

```bash
poetry shell
exit
```

Setup the pre-commit check, you must run this inside the virtual environment:

```bash
pre-commit install
```

*Now you're all set to get started!*

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
```

## License

MIT License

Copyright (c) 2023 Klaas Schoute

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.

[api]: https://opendata.arnhem.nl
[parking]: https://opendata.arnhem.nl/datasets/Arnhem::parkeervakken/about
[nipkaart]: https://www.nipkaart.nl

<!-- MARKDOWN LINKS & IMAGES -->
[build-shield]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/tests.yaml/badge.svg
[build-url]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/tests.yaml
[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-arnhem.svg
[commits-url]: https://github.com/klaasnicolaas/python-arnhem/commits/main
[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-arnhem/branch/main/graph/badge.svg?token=36L7D2UU9M
[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-arnhem
[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/klaasnicolaas/python-arnhem
[downloads-shield]: https://img.shields.io/pypi/dm/arnhem
[downloads-url]: https://pypistats.org/packages/arnhem
[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-arnhem.svg
[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-arnhem.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg
[maintainability-shield]: https://api.codeclimate.com/v1/badges/7ab53cfceaae236cca3f/maintainability
[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-arnhem/maintainability
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[pypi]: https://pypi.org/project/arnhem/
[python-versions-shield]: https://img.shields.io/pypi/pyversions/arnhem
[typing-shield]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/typing.yaml/badge.svg
[typing-url]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/typing.yaml
[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-arnhem.svg
[releases]: https://github.com/klaasnicolaas/python-arnhem/releases

[poetry-install]: https://python-poetry.org/docs/#installation
[poetry]: https://python-poetry.org
[pre-commit]: https://pre-commit.com


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/klaasnicolaas/python-arnhem",
    "name": "arnhem",
    "maintainer": "Klaas Schoute",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "hello@student-techlife.com",
    "keywords": "parking,arnhem,locations,api,async,client",
    "author": "Klaas Schoute",
    "author_email": "hello@student-techlife.com",
    "download_url": "https://files.pythonhosted.org/packages/2e/b3/7d41b339189cd36f1b01d9e2903f14251aee645fc9a483ce8a05262dd33a/arnhem-0.1.1.tar.gz",
    "platform": null,
    "description": "<!-- Banner -->\n![alt Banner of the arnhem package](https://raw.githubusercontent.com/klaasnicolaas/python-arnhem/main/assets/header_arnhem-min.png)\n\n<!-- PROJECT SHIELDS -->\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)\n\n[![GitHub Activity][commits-shield]][commits-url]\n[![PyPi Downloads][downloads-shield]][downloads-url]\n[![GitHub Last Commit][last-commit-shield]][commits-url]\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\n\n[![Build Status][build-shield]][build-url]\n[![Typing Status][typing-shield]][typing-url]\n[![Maintainability][maintainability-shield]][maintainability-url]\n[![Code Coverage][codecov-shield]][codecov-url]\n\n\nAsynchronous Python client for the open datasets of Arnhem (The Netherlands).\n\n## About\n\nA python package with which you can retrieve data from the Open Data Platform of Arnhem via [their API][api]. This package was initially created to only retrieve parking data from the API, but the code base is made in such a way that it is easy to extend for other datasets from the same platform.\n\n## Installation\n\n```bash\npip install arnhem\n```\n\n## Datasets\n\nYou can read the following datasets with this package:\n\n- [Parking spots / Parkeerplaatsen][parking]\n\n<details>\n    <summary>Click here to get more details</summary>\n\n### Parking spots\n\nYou can use the following parameters in your request:\n\n- **limit** (default: 10) - How many results you want to retrieve.\n- **set_filter** (default: 1=1) - The filter you want to use to filter the results.\n\nYou get the following output data back with this python package:\n\n| Variable | Type | Description |\n| :------- | :--- | :---------- |\n| `spot_id` | string | The id of the parking spot |\n| `parking_type` | string | The type of parking spot |\n| `street` | string | The street where the parking spot is located |\n| `traffic_sign` | string | The traffic sign at the parking spot |\n| `neighborhood` | string | The neighborhood where the parking spot is located |\n| `neighborhood_code` | string | The code associated with the neighborhood |\n| `district` | string | The district where the parking spot is located |\n| `district_code` | string | The code associated with the district |\n| `area` | string | The area of the parking spot in this municipality |\n| `coordinates` | string | The coordinates of the parking spot |\n</details>\n\n### Example\n\n```python\nimport asyncio\n\nfrom arnhem import ODPArnhem\n\n\nasync def main() -> None:\n    \"\"\"Show example on using the Open Data Platform API of Arnhem.\"\"\"\n    async with ODPArnhem() as client:\n        locations = await client.locations(limit=100, set_filter=\"RVV_SOORT='E6a'\")\n        print(locations)\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n\n## Use cases\n\n[NIPKaart.nl][nipkaart]\n\nA website that provides insight into where disabled parking spaces are, based on data from users and municipalities (open data platforms). Operates mainly in the Netherlands, but since summer 2022 also processes data from countries throughout Europe.\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](CONTRIBUTING.md).\n\nThank you for being involved! :heart_eyes:\n\n## Setting up development environment\n\nThe simplest way to begin is by utilizing the [Dev Container][devcontainer]\nfeature of Visual Studio Code or by opening a CodeSpace directly on GitHub.\nBy clicking the button below you immediately start a Dev Container in Visual Studio Code.\n\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\n\nThis Python project relies on [Poetry][poetry] as its dependency manager,\nproviding comprehensive management and control over project dependencies.\n\nYou need at least:\n\n- Python 3.9+\n- [Poetry][poetry-install]\n\nInstall all packages, including all development requirements:\n\n```bash\npoetry install\n```\n\nPoetry creates by default an virtual environment where it installs all\nnecessary pip packages, to enter or exit the venv run the following commands:\n\n```bash\npoetry shell\nexit\n```\n\nSetup the pre-commit check, you must run this inside the virtual environment:\n\n```bash\npre-commit install\n```\n\n*Now you're all set to get started!*\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## License\n\nMIT License\n\nCopyright (c) 2023 Klaas Schoute\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[api]: https://opendata.arnhem.nl\n[parking]: https://opendata.arnhem.nl/datasets/Arnhem::parkeervakken/about\n[nipkaart]: https://www.nipkaart.nl\n\n<!-- MARKDOWN LINKS & IMAGES -->\n[build-shield]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/tests.yaml/badge.svg\n[build-url]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/tests.yaml\n[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-arnhem.svg\n[commits-url]: https://github.com/klaasnicolaas/python-arnhem/commits/main\n[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-arnhem/branch/main/graph/badge.svg?token=36L7D2UU9M\n[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-arnhem\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/klaasnicolaas/python-arnhem\n[downloads-shield]: https://img.shields.io/pypi/dm/arnhem\n[downloads-url]: https://pypistats.org/packages/arnhem\n[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-arnhem.svg\n[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-arnhem.svg\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg\n[maintainability-shield]: https://api.codeclimate.com/v1/badges/7ab53cfceaae236cca3f/maintainability\n[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-arnhem/maintainability\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg\n[pypi]: https://pypi.org/project/arnhem/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/arnhem\n[typing-shield]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/typing.yaml/badge.svg\n[typing-url]: https://github.com/klaasnicolaas/python-arnhem/actions/workflows/typing.yaml\n[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-arnhem.svg\n[releases]: https://github.com/klaasnicolaas/python-arnhem/releases\n\n[poetry-install]: https://python-poetry.org/docs/#installation\n[poetry]: https://python-poetry.org\n[pre-commit]: https://pre-commit.com\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Asynchronous Python client providing Open Data information of Arnhem",
    "version": "0.1.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/klaasnicolaas/python-arnhem/issues",
        "Changelog": "https://github.com/klaasnicolaas/python-arnhem/releases",
        "Documentation": "https://github.com/klaasnicolaas/python-arnhem",
        "Homepage": "https://github.com/klaasnicolaas/python-arnhem",
        "Repository": "https://github.com/klaasnicolaas/python-arnhem"
    },
    "split_keywords": [
        "parking",
        "arnhem",
        "locations",
        "api",
        "async",
        "client"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cc56e7b1a860929b63a744e4b6ca73828cae297b45b37846a77999b115cdaba",
                "md5": "0a9528b531fb1705857ff12e52bad613",
                "sha256": "518cdaa8eb86b0ffc8d27014eebb36a6ec12992aeb5434d842a82d9f258a5ad9"
            },
            "downloads": -1,
            "filename": "arnhem-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0a9528b531fb1705857ff12e52bad613",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 8622,
            "upload_time": "2023-08-09T08:55:01",
            "upload_time_iso_8601": "2023-08-09T08:55:01.777403Z",
            "url": "https://files.pythonhosted.org/packages/3c/c5/6e7b1a860929b63a744e4b6ca73828cae297b45b37846a77999b115cdaba/arnhem-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2eb37d41b339189cd36f1b01d9e2903f14251aee645fc9a483ce8a05262dd33a",
                "md5": "130efb5a5bb966b828dd8566682a7785",
                "sha256": "fab92acc1c92a73a26c3cad027509a9c427ffbf62f0defd32d15b50ef023e78c"
            },
            "downloads": -1,
            "filename": "arnhem-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "130efb5a5bb966b828dd8566682a7785",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 7595,
            "upload_time": "2023-08-09T08:55:03",
            "upload_time_iso_8601": "2023-08-09T08:55:03.561268Z",
            "url": "https://files.pythonhosted.org/packages/2e/b3/7d41b339189cd36f1b01d9e2903f14251aee645fc9a483ce8a05262dd33a/arnhem-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-09 08:55:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "klaasnicolaas",
    "github_project": "python-arnhem",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "arnhem"
}
        
Elapsed time: 0.10105s