balena-cloud


Namebalena-cloud JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/MrGreenBoutiqueOffices/python-balena-cloud
SummaryAsynchronous Python client to interact with the Balena Cloud API
upload_time2024-12-28 00:07:09
maintainerKlaas Schoute
docs_urlNone
authorKlaas Schoute
requires_python<4.0,>=3.11
licenseMIT
keywords balena-cloud 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 Balena Cloud package](https://raw.githubusercontent.com/MrGreenBoutiqueOffices/python-balena-cloud/main/assets/header_balena_cloud-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]
[![Code Coverage][codecov-shield]][codecov-url]


Asynchronous Python client for [Balena Cloud][balena].

## About

With this python package it's possible to get your organizations, fleets and devices. But also change or add new devices tags and environment variables.

## Installation

```bash
pip install balena-cloud
```

### Get API token

To use this package you need to have a Balena Cloud API token. You can get one by following the steps below:

1. Go to [Balena Cloud](https://www.balena.io/) and sign in.
2. Click on your profile icon in the top right corner.
3. Click on **Preferences** -> **Access tokens**.
4. Under "Api keys" click on **Create Api Key**.
5. Give your token a (required) name, description, set an expiration date and click on **Create token**.

### Example

```python
import asyncio

from balena_cloud import BalenaCloud


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

    async with BalenaCloud(token="YOUR_API_TOKEN") as client:
        organizations = await client.get_organizations()
        for organization in organizations:
            print(organization)


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]

### Installation

Install all packages, including all development requirements:

```bash
poetry install
```

_Poetry creates by default an virtual environment where it installs all
necessary pip packages_.

### Pre-commit

This repository uses the [pre-commit][pre-commit] framework, all changes
are linted and tested with each commit. To setup the pre-commit check, run:

```bash
poetry run pre-commit install
```

And to run all checks and tests manually, use the following command:

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

### Testing

It uses [pytest](https://docs.pytest.org/en/stable/) as the test framework. To run the tests:

```bash
poetry run pytest
```

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

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

## Trademark Legal Notices

All product names, trademarks and registered trademarks in this repository, are
property of their respective owners, and are used by the author for identification
purposes only. The use of these names, trademarks and brands, do not imply endorsement
or affiliation.

## License

MIT License

Copyright (c) 2024 NetOS

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 -->
[balena]: https://www.balena.io/

<!-- MARKDOWN LINKS & IMAGES -->
[build-shield]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/actions/workflows/tests.yaml/badge.svg
[build-url]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/actions/workflows/tests.yaml
[codecov-shield]: https://codecov.io/gh/MrGreenBoutiqueOffices/python-balena-cloud/branch/main/graph/badge.svg?token=1DG9LQJNY6
[codecov-url]: https://codecov.io/gh/MrGreenBoutiqueOffices/python-balena-cloud
[commits-shield]: https://img.shields.io/github/commit-activity/y/MrGreenBoutiqueOffices/python-balena-cloud.svg
[commits-url]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/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/MrGreenBoutiqueOffices/python-balena-cloud
[downloads-shield]: https://img.shields.io/pypi/dm/balena-cloud
[downloads-url]: https://pypistats.org/packages/balena-cloud
[last-commit-shield]: https://img.shields.io/github/last-commit/MrGreenBoutiqueOffices/python-balena-cloud.svg
[license-shield]: https://img.shields.io/github/license/MrGreenBoutiqueOffices/python-balena-cloud.svg
[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/balena-cloud/
[python-versions-shield]: https://img.shields.io/pypi/pyversions/balena-cloud
[releases-shield]: https://img.shields.io/github/release/MrGreenBoutiqueOffices/python-balena-cloud.svg
[releases]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/releases
[typing-shield]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/actions/workflows/typing.yaml/badge.svg
[typing-url]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/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/MrGreenBoutiqueOffices/python-balena-cloud",
    "name": "balena-cloud",
    "maintainer": "Klaas Schoute",
    "docs_url": null,
    "requires_python": "<4.0,>=3.11",
    "maintainer_email": "klaas@mrgreenoffices.nl",
    "keywords": "balena-cloud, api, async, client",
    "author": "Klaas Schoute",
    "author_email": "klaas@mrgreenoffices.nl",
    "download_url": "https://files.pythonhosted.org/packages/68/bb/a9a2d4a7517b73f91a664955b65f30f33b9b92429e54639263de8bf013ff/balena_cloud-0.1.0.tar.gz",
    "platform": null,
    "description": "<!-- Banner -->\n![alt Banner of the Balena Cloud package](https://raw.githubusercontent.com/MrGreenBoutiqueOffices/python-balena-cloud/main/assets/header_balena_cloud-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[![Code Coverage][codecov-shield]][codecov-url]\n\n\nAsynchronous Python client for [Balena Cloud][balena].\n\n## About\n\nWith this python package it's possible to get your organizations, fleets and devices. But also change or add new devices tags and environment variables.\n\n## Installation\n\n```bash\npip install balena-cloud\n```\n\n### Get API token\n\nTo use this package you need to have a Balena Cloud API token. You can get one by following the steps below:\n\n1. Go to [Balena Cloud](https://www.balena.io/) and sign in.\n2. Click on your profile icon in the top right corner.\n3. Click on **Preferences** -> **Access tokens**.\n4. Under \"Api keys\" click on **Create Api Key**.\n5. Give your token a (required) name, description, set an expiration date and click on **Create token**.\n\n### Example\n\n```python\nimport asyncio\n\nfrom balena_cloud import BalenaCloud\n\n\nasync def main() -> None:\n    \"\"\"Show example on using this package.\"\"\"\n\n    async with BalenaCloud(token=\"YOUR_API_TOKEN\") as client:\n        organizations = await client.get_organizations()\n        for organization in organizations:\n            print(organization)\n\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\n### Installation\n\nInstall all packages, including all development requirements:\n\n```bash\npoetry install\n```\n\n_Poetry creates by default an virtual environment where it installs all\nnecessary pip packages_.\n\n### Pre-commit\n\nThis repository uses the [pre-commit][pre-commit] framework, all changes\nare linted and tested with each commit. To setup the pre-commit check, run:\n\n```bash\npoetry run pre-commit install\n```\n\nAnd to run all checks and tests manually, use the following command:\n\n```bash\npoetry run pre-commit run --all-files\n```\n\n### Testing\n\nIt uses [pytest](https://docs.pytest.org/en/stable/) as the test framework. To run the 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## Trademark Legal Notices\n\nAll product names, trademarks and registered trademarks in this repository, are\nproperty of their respective owners, and are used by the author for identification\npurposes only. The use of these names, trademarks and brands, do not imply endorsement\nor affiliation.\n\n## License\n\nMIT License\n\nCopyright (c) 2024 NetOS\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[balena]: https://www.balena.io/\n\n<!-- MARKDOWN LINKS & IMAGES -->\n[build-shield]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/actions/workflows/tests.yaml/badge.svg\n[build-url]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/actions/workflows/tests.yaml\n[codecov-shield]: https://codecov.io/gh/MrGreenBoutiqueOffices/python-balena-cloud/branch/main/graph/badge.svg?token=1DG9LQJNY6\n[codecov-url]: https://codecov.io/gh/MrGreenBoutiqueOffices/python-balena-cloud\n[commits-shield]: https://img.shields.io/github/commit-activity/y/MrGreenBoutiqueOffices/python-balena-cloud.svg\n[commits-url]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/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/MrGreenBoutiqueOffices/python-balena-cloud\n[downloads-shield]: https://img.shields.io/pypi/dm/balena-cloud\n[downloads-url]: https://pypistats.org/packages/balena-cloud\n[last-commit-shield]: https://img.shields.io/github/last-commit/MrGreenBoutiqueOffices/python-balena-cloud.svg\n[license-shield]: https://img.shields.io/github/license/MrGreenBoutiqueOffices/python-balena-cloud.svg\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/balena-cloud/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/balena-cloud\n[releases-shield]: https://img.shields.io/github/release/MrGreenBoutiqueOffices/python-balena-cloud.svg\n[releases]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/releases\n[typing-shield]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/actions/workflows/typing.yaml/badge.svg\n[typing-url]: https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/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": "Asynchronous Python client to interact with the Balena Cloud API",
    "version": "0.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/issues",
        "Changelog": "https://github.com/MrGreenBoutiqueOffices/python-balena-cloud/releases",
        "Documentation": "https://github.com/MrGreenBoutiqueOffices/python-balena-cloud",
        "Homepage": "https://github.com/MrGreenBoutiqueOffices/python-balena-cloud",
        "Repository": "https://github.com/MrGreenBoutiqueOffices/python-balena-cloud"
    },
    "split_keywords": [
        "balena-cloud",
        " api",
        " async",
        " client"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca3524d0911ede9d7b1294390a034d4367b7c5684c8d0cecaf3914703ce3ef81",
                "md5": "2d1938acd36b2dd807c6931b09604dcd",
                "sha256": "ec733c086a1d1c30b006d33b47a5180713e72c9c67c52b56e73d12345e0cba0a"
            },
            "downloads": -1,
            "filename": "balena_cloud-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2d1938acd36b2dd807c6931b09604dcd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.11",
            "size": 9444,
            "upload_time": "2024-12-28T00:07:07",
            "upload_time_iso_8601": "2024-12-28T00:07:07.132290Z",
            "url": "https://files.pythonhosted.org/packages/ca/35/24d0911ede9d7b1294390a034d4367b7c5684c8d0cecaf3914703ce3ef81/balena_cloud-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68bba9a2d4a7517b73f91a664955b65f30f33b9b92429e54639263de8bf013ff",
                "md5": "f82d526d0846f973a2110e9e14c69057",
                "sha256": "f5d5a956ffe0fbb97b0ffccf5a18d1fa20bda8edfa231aa6afe9728c2f49f649"
            },
            "downloads": -1,
            "filename": "balena_cloud-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f82d526d0846f973a2110e9e14c69057",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.11",
            "size": 11293,
            "upload_time": "2024-12-28T00:07:09",
            "upload_time_iso_8601": "2024-12-28T00:07:09.673879Z",
            "url": "https://files.pythonhosted.org/packages/68/bb/a9a2d4a7517b73f91a664955b65f30f33b9b92429e54639263de8bf013ff/balena_cloud-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-28 00:07:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MrGreenBoutiqueOffices",
    "github_project": "python-balena-cloud",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "balena-cloud"
}
        
Elapsed time: 1.32894s