hamburg


Namehamburg JSON
Version 3.0.1 PyPI version JSON
download
home_pagehttps://github.com/klaasnicolaas/python-hamburg
SummaryAsynchronous Python client providing Urban Data information of Hamburg
upload_time2024-04-05 11:38:39
maintainerKlaas Schoute
docs_urlNone
authorKlaas Schoute
requires_python<4.0,>=3.11
licenseMIT
keywords urban data platform hamburg parking 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 Hamburg package](https://raw.githubusercontent.com/klaasnicolaas/python-hamburg/main/assets/header_hamburg-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]

[![Code Quality][code-quality-shield]][code-quality]
[![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 urban datasets of Hamburg (Germany).

## About

A python package with which you can retrieve data from the Urban Data Platform of Hamburg 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 hamburg
```

## Datasets

You can read the following datasets with this package:

- [Disabled parking spaces / Behindertenstellplätze][disabled_parking] (901)
- [Park and rides occupancy / Park + Ride Anlagen][park_and_ride] (33)
- [Garages occupancy / Parkhäuser][garages] (45 live data / 124 total)

There are a number of parameters you can set to retrieve the data:

- **limit** (default: 10) - How many results you want to retrieve.

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

### Disabled parking spaces

| Variable | Type | Description |
| :------- | :--- | :---------- |
| `spot_id` | string | The ID of the parking spot |
| `street` | string | The street name |
| `limitation` | string | Some locations have window times where the location is only specific for disabled parking, outside these times everyone is allowed to park there |
| `number` | string | The number of parking spots on this location |
| `longitude` | float | The longitude of the parking spot |
| `latitude` | float | The latitude of the parking spot |

### Park and Rides

| Variable | Type | Description |
| :------- | :--- | :---------- |
| `spot_id` | string | The ID of the park and ride |
| `name` | string | The name of the park and ride |
| `park_type` | string | The parking type of the park and ride |
| `address` | string | The address of the park and ride |
| `construction_year` | string | The year the park and ride was constructed |
| `public_transport_line` | string | The public transport line the park and ride is connected to |
| `disabled_parking_spaces` | int | The number of disabled parking spaces on the park and ride |
| `tickets` | dict | The type of tickets available for the park and ride |
| `url` | string | The URL of the park and ride where you can find more information |
| `free_space` | int | The number of free spaces on the park and ride |
| `capacity` | int | The capacity of the park and ride |
| `availability_pct` | float | The percentage of the park and ride that is available |
| `longitude` | float | The longitude of the park and ride |
| `latitude` | float | The latitude of the park and ride |
| `updated_at` | datetime | The date and time the park and ride was last updated |

### Garages

Extra parameters to filter the data:

- **set_filter** (default: None) - Allows you to filter based on filter expressions, see [here](https://api.hamburg.de/datasets/v1/parkhaeuser/api?f=html#/Access%20data/verkehr_parkhaeuser.getItems) for more information.

| Variable | Type | Description |
| :------- | :--- | :---------- |
| `spot_id` | string | The ID of the garage |
| `name` | string | The name of the pgarage |
| `park_type` | string | The parking type of the garage |
| `disabled_parking_spaces` | int | The number of disabled parking spaces in the garage |
| `status` | string | The status of the garage (**frei**, **nahezu belegt**, **besetzt** or **keine Auslastungsdaten**) |
| `address` | string | The address of the garage |
| `price` | string | The price list that is used for parking in a garage |
| `data_origin` | string | Where data originally comes from |
| `free_space` | int | The number of free spaces in the garage |
| `capacity` | int | The capacity of the garage |
| `availability_pct` | float | The percentage that is still available in the garage |
| `longitude` | float | The longitude of the garage |
| `latitude` | float | The latitude of the garage |
| `updated_at` | datetime | The date and time the garage was last updated |

</details>

## Example

```python
import asyncio

from hamburg import UDPHamburg


async def main() -> None:
    """Show example on using the UDP Hamburg API client."""
    async with UDPHamburg() as client:
        disabled_parkings = await client.disabled_parkings()
        park_and_rides = await client.park_and_rides()
        garages = await client.garages()
        print(disabled_parkings)
        print(park_and_rides)
        print(garages)


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. Operates mainly in the Netherlands, but also has plans to process data from abroad.

## 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.11+
- [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
```

To update the [syrupy](https://github.com/tophat/syrupy) snapshot tests:

```bash
poetry run pytest --snapshot-update
```

## License

MIT License

Copyright (c) 2022-2024 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://api.hamburg.de/datasets/v1/
[nipkaart]: https://www.nipkaart.nl

[disabled_parking]: https://api.hamburg.de/datasets/v1/behindertenstellplaetze
[park_and_ride]: https://api.hamburg.de/datasets/v1/p_und_r
[garages]: https://api.hamburg.de/datasets/v1/parkhaeuser

<!-- MARKDOWN LINKS & IMAGES -->
[build-shield]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/tests.yaml/badge.svg
[build-url]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/tests.yaml
[code-quality-shield]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/codeql.yaml/badge.svg
[code-quality]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/codeql.yaml
[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-hamburg.svg
[commits-url]: https://github.com/klaasnicolaas/python-hamburg/commits/main
[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-hamburg/branch/main/graph/badge.svg?token=4Y4YAYHR2D
[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-hamburg
[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-hamburg
[downloads-shield]: https://img.shields.io/pypi/dm/hamburg
[downloads-url]: https://pypistats.org/packages/hamburg
[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-hamburg.svg
[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-hamburg.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg
[maintainability-shield]: https://api.codeclimate.com/v1/badges/5041849456b7348f3bc7/maintainability
[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-hamburg/maintainability
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[pypi]: https://pypi.org/project/hamburg/
[python-versions-shield]: https://img.shields.io/pypi/pyversions/hamburg
[typing-shield]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/typing.yaml/badge.svg
[typing-url]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/typing.yaml
[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-hamburg.svg
[releases]: https://github.com/klaasnicolaas/python-hamburg/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-hamburg",
    "name": "hamburg",
    "maintainer": "Klaas Schoute",
    "docs_url": null,
    "requires_python": "<4.0,>=3.11",
    "maintainer_email": "hello@student-techlife.com",
    "keywords": "urban, data, platform, hamburg, parking, api, async, client",
    "author": "Klaas Schoute",
    "author_email": "hello@student-techlife.com",
    "download_url": "https://files.pythonhosted.org/packages/70/8f/e6c972697d9908da97a4adabc3bc0302b578105ceda9aadd138461ce880e/hamburg-3.0.1.tar.gz",
    "platform": null,
    "description": "<!-- Banner -->\n![alt Banner of the Hamburg package](https://raw.githubusercontent.com/klaasnicolaas/python-hamburg/main/assets/header_hamburg-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[![Code Quality][code-quality-shield]][code-quality]\n[![Build Status][build-shield]][build-url]\n[![Typing Status][typing-shield]][typing-url]\n\n[![Maintainability][maintainability-shield]][maintainability-url]\n[![Code Coverage][codecov-shield]][codecov-url]\n\nAsynchronous Python client for the urban datasets of Hamburg (Germany).\n\n## About\n\nA python package with which you can retrieve data from the Urban Data Platform of Hamburg 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 hamburg\n```\n\n## Datasets\n\nYou can read the following datasets with this package:\n\n- [Disabled parking spaces / Behindertenstellpl\u00e4tze][disabled_parking] (901)\n- [Park and rides occupancy / Park + Ride Anlagen][park_and_ride] (33)\n- [Garages occupancy / Parkh\u00e4user][garages] (45 live data / 124 total)\n\nThere are a number of parameters you can set to retrieve the data:\n\n- **limit** (default: 10) - How many results you want to retrieve.\n\n<details>\n    <summary>Click here to get more details</summary>\n\n### Disabled parking spaces\n\n| Variable | Type | Description |\n| :------- | :--- | :---------- |\n| `spot_id` | string | The ID of the parking spot |\n| `street` | string | The street name |\n| `limitation` | string | Some locations have window times where the location is only specific for disabled parking, outside these times everyone is allowed to park there |\n| `number` | string | The number of parking spots on this location |\n| `longitude` | float | The longitude of the parking spot |\n| `latitude` | float | The latitude of the parking spot |\n\n### Park and Rides\n\n| Variable | Type | Description |\n| :------- | :--- | :---------- |\n| `spot_id` | string | The ID of the park and ride |\n| `name` | string | The name of the park and ride |\n| `park_type` | string | The parking type of the park and ride |\n| `address` | string | The address of the park and ride |\n| `construction_year` | string | The year the park and ride was constructed |\n| `public_transport_line` | string | The public transport line the park and ride is connected to |\n| `disabled_parking_spaces` | int | The number of disabled parking spaces on the park and ride |\n| `tickets` | dict | The type of tickets available for the park and ride |\n| `url` | string | The URL of the park and ride where you can find more information |\n| `free_space` | int | The number of free spaces on the park and ride |\n| `capacity` | int | The capacity of the park and ride |\n| `availability_pct` | float | The percentage of the park and ride that is available |\n| `longitude` | float | The longitude of the park and ride |\n| `latitude` | float | The latitude of the park and ride |\n| `updated_at` | datetime | The date and time the park and ride was last updated |\n\n### Garages\n\nExtra parameters to filter the data:\n\n- **set_filter** (default: None) - Allows you to filter based on filter expressions, see [here](https://api.hamburg.de/datasets/v1/parkhaeuser/api?f=html#/Access%20data/verkehr_parkhaeuser.getItems) for more information.\n\n| Variable | Type | Description |\n| :------- | :--- | :---------- |\n| `spot_id` | string | The ID of the garage |\n| `name` | string | The name of the pgarage |\n| `park_type` | string | The parking type of the garage |\n| `disabled_parking_spaces` | int | The number of disabled parking spaces in the garage |\n| `status` | string | The status of the garage (**frei**, **nahezu belegt**, **besetzt** or **keine Auslastungsdaten**) |\n| `address` | string | The address of the garage |\n| `price` | string | The price list that is used for parking in a garage |\n| `data_origin` | string | Where data originally comes from |\n| `free_space` | int | The number of free spaces in the garage |\n| `capacity` | int | The capacity of the garage |\n| `availability_pct` | float | The percentage that is still available in the garage |\n| `longitude` | float | The longitude of the garage |\n| `latitude` | float | The latitude of the garage |\n| `updated_at` | datetime | The date and time the garage was last updated |\n\n</details>\n\n## Example\n\n```python\nimport asyncio\n\nfrom hamburg import UDPHamburg\n\n\nasync def main() -> None:\n    \"\"\"Show example on using the UDP Hamburg API client.\"\"\"\n    async with UDPHamburg() as client:\n        disabled_parkings = await client.disabled_parkings()\n        park_and_rides = await client.park_and_rides()\n        garages = await client.garages()\n        print(disabled_parkings)\n        print(park_and_rides)\n        print(garages)\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. Operates mainly in the Netherlands, but also has plans to process data from abroad.\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.11+\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\nTo update the [syrupy](https://github.com/tophat/syrupy) snapshot tests:\n\n```bash\npoetry run pytest --snapshot-update\n```\n\n## License\n\nMIT License\n\nCopyright (c) 2022-2024 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://api.hamburg.de/datasets/v1/\n[nipkaart]: https://www.nipkaart.nl\n\n[disabled_parking]: https://api.hamburg.de/datasets/v1/behindertenstellplaetze\n[park_and_ride]: https://api.hamburg.de/datasets/v1/p_und_r\n[garages]: https://api.hamburg.de/datasets/v1/parkhaeuser\n\n<!-- MARKDOWN LINKS & IMAGES -->\n[build-shield]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/tests.yaml/badge.svg\n[build-url]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/tests.yaml\n[code-quality-shield]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/codeql.yaml/badge.svg\n[code-quality]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/codeql.yaml\n[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-hamburg.svg\n[commits-url]: https://github.com/klaasnicolaas/python-hamburg/commits/main\n[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-hamburg/branch/main/graph/badge.svg?token=4Y4YAYHR2D\n[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-hamburg\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-hamburg\n[downloads-shield]: https://img.shields.io/pypi/dm/hamburg\n[downloads-url]: https://pypistats.org/packages/hamburg\n[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-hamburg.svg\n[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-hamburg.svg\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg\n[maintainability-shield]: https://api.codeclimate.com/v1/badges/5041849456b7348f3bc7/maintainability\n[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-hamburg/maintainability\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg\n[pypi]: https://pypi.org/project/hamburg/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/hamburg\n[typing-shield]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/typing.yaml/badge.svg\n[typing-url]: https://github.com/klaasnicolaas/python-hamburg/actions/workflows/typing.yaml\n[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-hamburg.svg\n[releases]: https://github.com/klaasnicolaas/python-hamburg/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 Urban Data information of Hamburg",
    "version": "3.0.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/klaasnicolaas/python-hamburg/issues",
        "Changelog": "https://github.com/klaasnicolaas/python-hamburg/releases",
        "Documentation": "https://github.com/klaasnicolaas/python-hamburg",
        "Homepage": "https://github.com/klaasnicolaas/python-hamburg",
        "Repository": "https://github.com/klaasnicolaas/python-hamburg"
    },
    "split_keywords": [
        "urban",
        " data",
        " platform",
        " hamburg",
        " parking",
        " api",
        " async",
        " client"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95c95c1fc664319db4deff58f1addcf0a82976344d72b39eb43f572cd75498c3",
                "md5": "8343c9215ca0bc81c853d52ecaa6eb59",
                "sha256": "42fd2983291e854661baf597278684e3c787d5c3cf62c8a501d340d3e97b968c"
            },
            "downloads": -1,
            "filename": "hamburg-3.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8343c9215ca0bc81c853d52ecaa6eb59",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.11",
            "size": 10132,
            "upload_time": "2024-04-05T11:38:38",
            "upload_time_iso_8601": "2024-04-05T11:38:38.133144Z",
            "url": "https://files.pythonhosted.org/packages/95/c9/5c1fc664319db4deff58f1addcf0a82976344d72b39eb43f572cd75498c3/hamburg-3.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "708fe6c972697d9908da97a4adabc3bc0302b578105ceda9aadd138461ce880e",
                "md5": "07f246b5d735ee8afef05af2c511388b",
                "sha256": "6175cf0e09d8d82db0a0dd09708434783dab535e3ff40897c60e98a879759972"
            },
            "downloads": -1,
            "filename": "hamburg-3.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "07f246b5d735ee8afef05af2c511388b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.11",
            "size": 12657,
            "upload_time": "2024-04-05T11:38:39",
            "upload_time_iso_8601": "2024-04-05T11:38:39.704034Z",
            "url": "https://files.pythonhosted.org/packages/70/8f/e6c972697d9908da97a4adabc3bc0302b578105ceda9aadd138461ce880e/hamburg-3.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-05 11:38:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "klaasnicolaas",
    "github_project": "python-hamburg",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "hamburg"
}
        
Elapsed time: 0.24384s