# Python: MyLight Systems
[![GitHub Release][releases-shield]][releases]
[![Python Versions][python-versions-shield]][pypi]
![Project Stage][project-stage-shield]
![Project Maintenance][maintenance-shield]
[![License][license-shield]](.github/LICENSE.md)
[![Build Status][build-shield]][build]
[![Code Coverage][codecov-shield]][codecov]
Asynchronous Python client for MyLight Systems.
## About
This package allows you to fetch data from MyLight Systems.
This source code is based on the [airgradient-python](https://github.com/acesyde/python-mylight-systems-api-client) package.
## Installation
```bash
pip install mylightsystems
```
## 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 development environment
This Python project is fully managed using [mise][mise] for tool management and [uv][uv] for dependency management. It also relies on the use of NodeJS for certain checks during development.
You need at least:
- [mise][mise-install] (for tool management)
### Using mise (recommended)
To install all tools and set up the project:
```bash
mise install
mise run project:setup
```
### Development commands
This project uses [ruff][ruff] for linting and formatting. 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 mise tasks:
```bash
mise run precommit:run
```
To run just the Python tests:
```bash
mise run project:tests
```
To run linting:
```bash
mise run project:lint
```
To fix linting issues:
```bash
mise run project:lint-fix
```
## Authors & contributors
The content is by [Pierre-Emmanuel Mercier][acesyde].
For a full list of all authors and contributors,
check [the contributor's page][contributors].
[build-shield]: https://github.com/acesyde/python-mylight-systems-api-client/actions/workflows/tests.yaml/badge.svg
[build]: https://github.com/acesyde/python-mylight-systems-api-client/actions
[codecov-shield]: https://codecov.io/gh/acesyde/python-mylight-systems-api-client/branch/master/graph/badge.svg
[codecov]: https://codecov.io/gh/acesyde/python-mylight-systems-api-client
[commits-shield]: https://img.shields.io/github/commit-activity/y/acesyde/python-mylight-systems-api-client.svg
[commits]: https://github.com/acesyde/python-mylight-systems-api-client/commits/master
[contributors]: https://github.com/acesyde/python-mylight-systems-api-client/graphs/contributors
[acesyde]: https://github.com/acesyde
[keepchangelog]: http://keepachangelog.com/en/1.0.0/
[license-shield]: https://img.shields.io/github/license/acesyde/python-mylight-systems-api-client.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg
[mise]: https://mise.jdx.dev/
[mise-install]: https://mise.jdx.dev/getting-started.html
[uv]: https://docs.astral.sh/uv/
[uv-install]: https://docs.astral.sh/uv/getting-started/installation/
[ruff]: https://docs.astral.sh/ruff/
[pre-commit]: https://pre-commit.com/
[project-stage-shield]: https://img.shields.io/badge/project%20stage-stable-green.svg
[python-versions-shield]: https://img.shields.io/pypi/pyversions/mylightsystems
[releases-shield]: https://img.shields.io/github/release/acesyde/python-mylight-systems-api-client.svg
[releases]: https://github.com/acesyde/python-mylight-systems-api-client/releases
[semver]: http://semver.org/spec/v2.0.0.html
[pypi]: https://pypi.org/project/mylightsystems/
Raw data
{
"_id": null,
"home_page": null,
"name": "mylightsystems",
"maintainer": "Pierre-Emmanuel Mercier",
"docs_url": null,
"requires_python": ">=3.13",
"maintainer_email": "acesyde@gmail.com",
"keywords": "MyLight Systems, api, async, client",
"author": "Pierre-Emmanuel Mercier",
"author_email": "acesyde@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/30/ae/f1aad6ff02af7affc8fb47319a1587caadfb20292908f1ea0b76f9526e93/mylightsystems-0.0.5.tar.gz",
"platform": null,
"description": "# Python: MyLight Systems\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]](.github/LICENSE.md)\n\n[![Build Status][build-shield]][build]\n[![Code Coverage][codecov-shield]][codecov]\n\nAsynchronous Python client for MyLight Systems.\n\n## About\n\nThis package allows you to fetch data from MyLight Systems.\n\nThis source code is based on the [airgradient-python](https://github.com/acesyde/python-mylight-systems-api-client) package.\n\n## Installation\n\n```bash\npip install mylightsystems\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 development environment\n\nThis Python project is fully managed using [mise][mise] for tool management and [uv][uv] for dependency management. It also relies on the use of NodeJS for certain checks during development.\n\nYou need at least:\n\n- [mise][mise-install] (for tool management)\n\n### Using mise (recommended)\n\nTo install all tools and set up the project:\n\n```bash\nmise install\nmise run project:setup\n```\n\n### Development commands\n\nThis project uses [ruff][ruff] for linting and formatting. As this repository uses the [pre-commit][pre-commit] framework, all changes are linted and tested with each commit.\n\nYou can run all checks and tests manually using mise tasks:\n\n```bash\nmise run precommit:run\n```\n\nTo run just the Python tests:\n\n```bash\nmise run project:tests\n```\n\nTo run linting:\n\n```bash\nmise run project:lint\n```\n\nTo fix linting issues:\n\n```bash\nmise run project:lint-fix\n```\n\n## Authors & contributors\n\nThe content is by [Pierre-Emmanuel Mercier][acesyde].\n\nFor a full list of all authors and contributors,\ncheck [the contributor's page][contributors].\n\n[build-shield]: https://github.com/acesyde/python-mylight-systems-api-client/actions/workflows/tests.yaml/badge.svg\n[build]: https://github.com/acesyde/python-mylight-systems-api-client/actions\n[codecov-shield]: https://codecov.io/gh/acesyde/python-mylight-systems-api-client/branch/master/graph/badge.svg\n[codecov]: https://codecov.io/gh/acesyde/python-mylight-systems-api-client\n[commits-shield]: https://img.shields.io/github/commit-activity/y/acesyde/python-mylight-systems-api-client.svg\n[commits]: https://github.com/acesyde/python-mylight-systems-api-client/commits/master\n[contributors]: https://github.com/acesyde/python-mylight-systems-api-client/graphs/contributors\n[acesyde]: https://github.com/acesyde\n[keepchangelog]: http://keepachangelog.com/en/1.0.0/\n[license-shield]: https://img.shields.io/github/license/acesyde/python-mylight-systems-api-client.svg\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg\n[mise]: https://mise.jdx.dev/\n[mise-install]: https://mise.jdx.dev/getting-started.html\n[uv]: https://docs.astral.sh/uv/\n[uv-install]: https://docs.astral.sh/uv/getting-started/installation/\n[ruff]: https://docs.astral.sh/ruff/\n[pre-commit]: https://pre-commit.com/\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-stable-green.svg\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/mylightsystems\n[releases-shield]: https://img.shields.io/github/release/acesyde/python-mylight-systems-api-client.svg\n[releases]: https://github.com/acesyde/python-mylight-systems-api-client/releases\n[semver]: http://semver.org/spec/v2.0.0.html\n[pypi]: https://pypi.org/project/mylightsystems/\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Asynchronous Python client for MyLight Systems.",
"version": "0.0.5",
"project_urls": {
"Bug Tracker": "https://github.com/acesyde/python-mylight-systems-api-client/issues",
"Changelog": "https://github.com/acesyde/python-mylight-systems-api-client/releases",
"Documentation": "https://github.com/acesyde/python-mylight-systems-api-client",
"Homepage": "https://github.com/acesyde/python-mylight-systems-api-client",
"Repository": "https://github.com/acesyde/python-mylight-systems-api-client"
},
"split_keywords": [
"mylight systems",
" api",
" async",
" client"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "72c27a34435e331f662c26bcd1770c7f6a43f7181a505beeb65aecbaae996a28",
"md5": "8b3d85a77d77bf336bd1551eb4c8880f",
"sha256": "cf79460c3c604102573b1a6c6616b999a10a7eb468bb6e4e20250ce564449229"
},
"downloads": -1,
"filename": "mylightsystems-0.0.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "8b3d85a77d77bf336bd1551eb4c8880f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.13",
"size": 8004,
"upload_time": "2025-07-20T18:31:58",
"upload_time_iso_8601": "2025-07-20T18:31:58.797370Z",
"url": "https://files.pythonhosted.org/packages/72/c2/7a34435e331f662c26bcd1770c7f6a43f7181a505beeb65aecbaae996a28/mylightsystems-0.0.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30aef1aad6ff02af7affc8fb47319a1587caadfb20292908f1ea0b76f9526e93",
"md5": "a21dca1317ffe0a1b22784fe379ebb95",
"sha256": "7a778affced586af9286261925e124c9f77c9822fb6b27e6ada53baf07a1f0b8"
},
"downloads": -1,
"filename": "mylightsystems-0.0.5.tar.gz",
"has_sig": false,
"md5_digest": "a21dca1317ffe0a1b22784fe379ebb95",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.13",
"size": 6681,
"upload_time": "2025-07-20T18:32:00",
"upload_time_iso_8601": "2025-07-20T18:32:00.161946Z",
"url": "https://files.pythonhosted.org/packages/30/ae/f1aad6ff02af7affc8fb47319a1587caadfb20292908f1ea0b76f9526e93/mylightsystems-0.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-20 18:32:00",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "acesyde",
"github_project": "python-mylight-systems-api-client",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "mylightsystems"
}