nednl


Namenednl JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/klaasnicolaas/python-nednl
SummaryGain insight into current and predictive energy data from The Netherlands
upload_time2024-04-02 23:07:41
maintainerKlaas Schoute
docs_urlNone
authorKlaas Schoute
requires_python<4.0,>=3.11
licenseMIT
keywords nednl api async client ned energy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- Banner -->
![alt Banner of the National Energy Dashboard NL package](https://raw.githubusercontent.com/klaasnicolaas/python-nednl/main/assets/header_nednl-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 [National Energy Dashboard][ned] NL.

## About

A Python package that allows you to retrieve data via the [API][api] of the [National Energy Dashboard][ned]. A data portal with datasets about the gas and electricity providing / consuming in the Netherlands.

## Installation

```bash
pip install nednl
```

### API Key

Before accessing the datasets, it's necessary to create an account on the website of NED. After you have done this, you'll be able to generate a unique API key, granting you access to the datasets.

## Datasets

<!-- TODO: Add a list of datasets that are supported by this package. -->

- All activities
- All classifications
- All granularities
- All granularity timezones
- All points
- All types
- Utilization

Currently there is a limit of 200 requests per 5 minutes.

### Example

An example of how you can query the solar consumption of the Netherlands with a granularity per 10 minutes.

```python
import asyncio

from nednl import NedNL


async def main() -> None:
    """Show example on using this package."""

    async with NedNL("YOUR_API_KEY") as client:
        response = await client.utilization(
            point_id=0,
            type_id=2,
            granularity_id=3,
            granularity_timezone_id=1,
            classification_id=2,
            activity_id=1,
            start_date="2024-03-29",
            end_date="2024-03-30",
        )
        print(response)

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

More examples can be found in the [examples folder](./examples/).

## 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) 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.


<!-- LINKS FROM PLATFORM -->
[ned]: https://ned.nl
[api]: https://ned.nl/nl/handleiding-api

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

[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-nednl",
    "name": "nednl",
    "maintainer": "Klaas Schoute",
    "docs_url": null,
    "requires_python": "<4.0,>=3.11",
    "maintainer_email": "hello@student-techlife.com",
    "keywords": "nednl, api, async, client, ned, energy",
    "author": "Klaas Schoute",
    "author_email": "hello@student-techlife.com",
    "download_url": "https://files.pythonhosted.org/packages/3b/c1/0d24adbe1055e0b7ad69add80df64244c4ffd9ae38f994051967b0bf60db/nednl-0.1.0.tar.gz",
    "platform": null,
    "description": "<!-- Banner -->\n![alt Banner of the National Energy Dashboard NL package](https://raw.githubusercontent.com/klaasnicolaas/python-nednl/main/assets/header_nednl-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 [National Energy Dashboard][ned] NL.\n\n## About\n\nA Python package that allows you to retrieve data via the [API][api] of the [National Energy Dashboard][ned]. A data portal with datasets about the gas and electricity providing / consuming in the Netherlands.\n\n## Installation\n\n```bash\npip install nednl\n```\n\n### API Key\n\nBefore accessing the datasets, it's necessary to create an account on the website of NED. After you have done this, you'll be able to generate a unique API key, granting you access to the datasets.\n\n## Datasets\n\n<!-- TODO: Add a list of datasets that are supported by this package. -->\n\n- All activities\n- All classifications\n- All granularities\n- All granularity timezones\n- All points\n- All types\n- Utilization\n\nCurrently there is a limit of 200 requests per 5 minutes.\n\n### Example\n\nAn example of how you can query the solar consumption of the Netherlands with a granularity per 10 minutes.\n\n```python\nimport asyncio\n\nfrom nednl import NedNL\n\n\nasync def main() -> None:\n    \"\"\"Show example on using this package.\"\"\"\n\n    async with NedNL(\"YOUR_API_KEY\") as client:\n        response = await client.utilization(\n            point_id=0,\n            type_id=2,\n            granularity_id=3,\n            granularity_timezone_id=1,\n            classification_id=2,\n            activity_id=1,\n            start_date=\"2024-03-29\",\n            end_date=\"2024-03-30\",\n        )\n        print(response)\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n\nMore examples can be found in the [examples folder](./examples/).\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) 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\n<!-- LINKS FROM PLATFORM -->\n[ned]: https://ned.nl\n[api]: https://ned.nl/nl/handleiding-api\n\n<!-- MARKDOWN LINKS & IMAGES -->\n[build-shield]: https://github.com/klaasnicolaas/python-nednl/actions/workflows/tests.yaml/badge.svg\n[build-url]: https://github.com/klaasnicolaas/python-nednl/actions/workflows/tests.yaml\n[codecov-shield]: https://codecov.io/gh/klaasnicolaas/python-nednl/branch/main/graph/badge.svg?token=B0TL8CNX75\n[codecov-url]: https://codecov.io/gh/klaasnicolaas/python-nednl\n[commits-shield]: https://img.shields.io/github/commit-activity/y/klaasnicolaas/python-nednl.svg\n[commits-url]: https://github.com/klaasnicolaas/python-nednl/commits/main\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-nednl\n[downloads-shield]: https://img.shields.io/pypi/dm/nednl\n[downloads-url]: https://pypistats.org/packages/nednl\n[last-commit-shield]: https://img.shields.io/github/last-commit/klaasnicolaas/python-nednl.svg\n[license-shield]: https://img.shields.io/github/license/klaasnicolaas/python-nednl.svg\n[maintainability-shield]: https://api.codeclimate.com/v1/badges/bd55196e975c3f32591b/maintainability\n[maintainability-url]: https://codeclimate.com/github/klaasnicolaas/python-nednl/maintainability\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg\n[pypi]: https://pypi.org/project/nednl/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/nednl\n[releases-shield]: https://img.shields.io/github/release/klaasnicolaas/python-nednl.svg\n[releases]: https://github.com/klaasnicolaas/python-nednl/releases\n[typing-shield]: https://github.com/klaasnicolaas/python-nednl/actions/workflows/typing.yaml/badge.svg\n[typing-url]: https://github.com/klaasnicolaas/python-nednl/actions/workflows/typing.yaml\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": "Gain insight into current and predictive energy data from The Netherlands",
    "version": "0.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/klaasnicolaas/python-nednl/issues",
        "Changelog": "https://github.com/klaasnicolaas/python-nednl/releases",
        "Documentation": "https://github.com/klaasnicolaas/python-nednl",
        "Homepage": "https://github.com/klaasnicolaas/python-nednl",
        "Repository": "https://github.com/klaasnicolaas/python-nednl"
    },
    "split_keywords": [
        "nednl",
        " api",
        " async",
        " client",
        " ned",
        " energy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "815d4345fa784d11e7925c6f9e637a9c6ee190b6d87455f83268ba030da6315d",
                "md5": "f95d655752b08ae930f20c20376c37b2",
                "sha256": "bb8051777265772b868a029b7b30c1464582147bc187b3bbd2b891a3cc984b6e"
            },
            "downloads": -1,
            "filename": "nednl-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f95d655752b08ae930f20c20376c37b2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.11",
            "size": 8884,
            "upload_time": "2024-04-02T23:07:40",
            "upload_time_iso_8601": "2024-04-02T23:07:40.285784Z",
            "url": "https://files.pythonhosted.org/packages/81/5d/4345fa784d11e7925c6f9e637a9c6ee190b6d87455f83268ba030da6315d/nednl-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bc10d24adbe1055e0b7ad69add80df64244c4ffd9ae38f994051967b0bf60db",
                "md5": "042e6ba8c60ba8121e98f71e0565d4aa",
                "sha256": "42ceecc82f9aa1b6ce1e10f523d393af82f2e38aaa789a8355b4ce59a627b376"
            },
            "downloads": -1,
            "filename": "nednl-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "042e6ba8c60ba8121e98f71e0565d4aa",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.11",
            "size": 10811,
            "upload_time": "2024-04-02T23:07:41",
            "upload_time_iso_8601": "2024-04-02T23:07:41.275350Z",
            "url": "https://files.pythonhosted.org/packages/3b/c1/0d24adbe1055e0b7ad69add80df64244c4ffd9ae38f994051967b0bf60db/nednl-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-02 23:07:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "klaasnicolaas",
    "github_project": "python-nednl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nednl"
}
        
Elapsed time: 0.23188s