Metadata-Version: 2.3 Name: python-homeassistant-analytics Version: 0.9.0 Summary: Asynchronous Python client for Homeassistant Analytics. License: MIT Keywords: Homeassistant,api,async,client Author: Joost Lekkerkerker Author-email: joostlek@outlook.com Maintainer: Joost Lekkerkerker Maintainer-email: joostlek@outlook.com Requires-Python: >=3.11,<4.0 Classifier: Development Status :: 5 - Production/Stable Classifier: Framework :: AsyncIO Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Natural Language :: English Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Topic :: Software Development :: Libraries :: Python Modules Requires-Dist: aiohttp (>=3.0.0) Requires-Dist: mashumaro (>=3.11,<4.0) Requires-Dist: orjson (>=3.9.0) Requires-Dist: yarl (>=1.6.0) Project-URL: Bug Tracker, https://github.com/joostlek/python-homeassistant-analytics/issues Project-URL: Changelog, https://github.com/joostlek/python-homeassistant-analytics/releases Project-URL: Documentation, https://github.com/joostlek/python-homeassistant-analytics Project-URL: Homepage, https://github.com/joostlek/python-homeassistant-analytics Project-URL: Repository, https://github.com/joostlek/python-homeassistant-analytics Description-Content-Type: text/markdown # Python: Homeassistant analytics [![GitHub Release][releases-shield]][releases] [![Python Versions][python-versions-shield]][pypi] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] [![License][license-shield]](LICENSE.md) [![Build Status][build-shield]][build] [![Code Coverage][codecov-shield]][codecov] [![Code Smells][code-smells]][sonarcloud] Asynchronous Python client for Homeassistant analytics. ## About This package allows you to fetch data from Homeassistant analytics. ## Installation ```bash pip install python-homeassistant-analytics ``` ## 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 the [Poetry][poetry] dependency manager. But also relies on the use of NodeJS for certain checks during development. You need at least: - Python 3.11+ - [Poetry][poetry-install] - NodeJS 12+ (including NPM) To install all packages, including all development requirements: ```bash npm install poetry install ``` 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 ``` ## Authors & contributors The content is by [Joost Lekkerkerker][joostlek]. For a full list of all authors and contributors, check [the contributor's page][contributors]. ## License MIT License Copyright (c) 2024-2025 Joost Lekkerkerker 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. [build-shield]: https://github.com/joostlek/python-homeassistant-analytics/actions/workflows/tests.yaml/badge.svg [build]: https://github.com/joostlek/python-homeassistant-analytics/actions [code-smells]: https://sonarcloud.io/api/project_badges/measure?project=joostlek_python-homeassistant-analytics&metric=code_smells [codecov-shield]: https://codecov.io/gh/joostlek/python-homeassistant-analytics/branch/master/graph/badge.svg [codecov]: https://codecov.io/gh/joostlek/python-homeassistant-analytics [commits-shield]: https://img.shields.io/github/commit-activity/y/joostlek/python-homeassistant-analytics.svg [commits]: https://github.com/joostlek/python-homeassistant-analytics/commits/master [contributors]: https://github.com/joostlek/python-homeassistant-analytics/graphs/contributors [joostlek]: https://github.com/joostlek [keepchangelog]: http://keepachangelog.com/en/1.0.0/ [license-shield]: https://img.shields.io/github/license/joostlek/python-homeassistant-analytics.svg [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg [poetry-install]: https://python-poetry.org/docs/#installation [poetry]: https://python-poetry.org [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/python-homeassistant-analytics [releases-shield]: https://img.shields.io/github/release/joostlek/python-homeassistant-analytics.svg [releases]: https://github.com/joostlek/python-homeassistant-analytics/releases [semver]: http://semver.org/spec/v2.0.0.html [sonarcloud]: https://sonarcloud.io/summary/new_code?id=joostlek_python-homeassistant-analytics [pypi]: https://pypi.org/project/python-homeassistant-analytics/