Home Assistant custom component Cookiecutter¶
Quickstart Guide¶
Requirements¶
Install Cookiecutter:
$ pipx install cookiecutter
pipx is preferred, but you can also install with pip install --user
.
It is recommended to set up Python 3.7, 3.8, or 3.9 using pyenv.
Creating a project¶
Generate a Home Assistant custom component project by using the following command:
$ cookiecutter gh:oncleben31/cookiecutter-homeassistant-custom-component --checkout=2021.1.1
Follow the instructions to customize the generated project
Setting |
Definition |
---|---|
|
Integration name used in configuration UI. |
|
Project name on GitHub. |
|
Integration domain name |
|
Prefix to be use in classes name |
|
GitHub user hosting the repository |
|
Initial version of the component |
Change to the root directory of your new project, and create a Git repository:
$ git init
$ git add .
$ git commit
Setup the development container¶
The development container allows to work in a local and dedicated Home Assitant instance to test your custom component. To launch it you need to have already installed Docker, Visual Studio Code (VSC) and the Visual Studio Code Remote - Containers extension.
Open your local copy of the repository with VSC:
$ code .
Visual Studio Code starts and you are asked to “Reopen in Container”, this will start the build of the container.
When done, you can launch the local instance of Home Assistant by running the task Run Home Assistant on port 9123
.
Use your preferred browser to open the URL http://localhost:9123
.
Initalize your Home Assistant local instance by following the onboarding workflow.
When setup, you can go to Configuration -> Integrations menu, clic the +
button
and search the name you have given to the custom component.
Follow the config flow of the custom component to integrate it in Home Assistant.
Now you are all set to modify the code and develop your ideas !
Advanced usages¶
Add a logo¶
You have the possibility to add a logo to be used in the integrations configuration UI. To do so, visit the home-assistant/brands repository on GitHub and follow the instructions.
Deploy with HACS¶
HACS is the community store. You can ease the installation of your custom component by making it compatible with HACS.
The template have already the tools do do that: hacs.json
and info.md
files.
The Publish documentation explains how to set those files
and the different options you have to integrate your custom component in the HACS network.
Step by step debugging¶
If you choose to use Visual Studio Code with the development container, you can test your custom component in Home Assistant with step by step debugging.
You need to modify the configuration.yaml
file in .devcontainer
folder
by uncommenting the line:
# debugpy:
Then launch the task Run Home Assistant on port 9123
, and launch the debbuger
with the existing debugging configuration Python: Attach Local
.
For more information, look at the Remote Python Debugger integration documentation.
Known limitations¶
If you plan to host the generated repository in a GitHub organization you will need manual modifications.
Currently the template work well when the repostory is hosted in a GitHub individual account, where URL name and code owner are the same. If you want to use an organization, it is recommended to use the name of this organization for
github_user
settings and modify manually where it’s needed afer generation with Cookiecutter.
User Guide¶
This is the user guide for the Home Assistant Custom Component Cookiecutter, a Python template for Home Assistant based on the Integration Blueprint repository.
If you’re in a hurry, check out the quickstart guide.
Introduction¶
In progress
About this project¶
Features¶
Here is a detailed list of features for this Python template:
Ready to use Home Assistant custom component
UI configuration with config Flow
Translations
Development, testing and step by step debugging in Visual Studio Code development container
HACS ready
Continuous integration with GitHub Actions
Settings for pre-commit
Optional tests suite with pytest and code coverage
You can find a repository created with this cookiecutter template in the cookiecutter-homeassistant-custom-component-instance example.
Release cadence¶
In progress
Installation¶
In progress
Project creation¶
In progress
Project overview¶
This repository contains multiple files, here is a overview:
|
Used for development/testing with VSCODE, more info in the readme file in that dir |
|
Template for Feature Requests |
|
Template for issues |
|
Probot settings to control the repository settings. |
|
Tasks for the devcontainer |
|
|
|
The component file for the integration |
|
This is a sample API client |
|
Binary sensor platform for the integration |
|
Config flow file, this adds the UI configuration possibilities |
|
A file to hold shared variables/constants for the entire integration |
|
A manifest file for Home Assistant |
|
Sensor platform for the integration |
|
Switch sensor platform for the integration |
|
Makes the tests folder a Python package |
|
|
|
Tests for custom_components/[DOMAIN NAME]/api.py |
|
Tests for custom_components/[DOMAIN NAME]/config_flow.py |
|
Tests for custom_components/[DOMAIN NAME]/__init__.py |
|
Tests for custom_components/[DOMAIN NAME]/switch.py |
|
Guidelines on how to contribute |
|
Screenshot that demonstrate how it might look in the UI |
|
An example on a info file (used by HACS) |
|
The license file for the project |
|
The file you are reading now, should contain info about the integration, installation and configuration instructions |
|
Python packages used to provide IntelliSense/code hints during development of this integration, typically includes packages in |
|
Python packages required to run the tests for this integration, typically includes packages in |
If you want to use all the potential and features of this blueprint template you
should use Visual Studio Code to develop in a container. In this container you
will have all the tools to ease your python development and a dedicated Home
Assistant core instance to run your integration. See .devcontainer/README.md
for more information.
If you need to work on a Python library in parallel of this integration, there are different options. The following one seems easy to implement:
Create a dedicated branch for your python library on a public git repository (example: branch dev)
Update in the
manifest.json
file therequirements
key to point on your development branch ( example:"requirements": ["git+https://github.com/ludeeus/sampleclient.git@dev#devp==0.0.1beta1"]
)Each time you need to make a modification to your Python library, push it to your development branch and increase the number of the Python library version in
manifest.json
file to ensure Home Assistant update the code of the python library. (example"requirements": ["git+https://...==0.0.1beta2"]
).
Developing in Visual Studio Code with a development container¶
The easiest way to get started with custom integration development is to use Visual Studio Code with development containers. This approach will create a preconfigured development environment with all the tools you need.
In the container you will have a dedicated Home Assistant core instance running with your custom component code.
You can configure this instance by updating the ./devcontainer/configuration.yaml
file.
Prerequisites¶
git installed
Docker - For Linux, macOS, or Windows 10 Pro/Enterprise/Education use the current release version of Docker - Windows 10 Home requires WSL 2 and the current Edge version of Docker Desktop (see instructions here). This can also be used for Windows Pro/Enterprise/Education.
Getting started¶
Clone the repository to your computer.
Open the repository using Visual Studio code.
When you open this repository with Visual Studio code you are asked to “Reopen in Container”, this will start the build of the container.
If you don’t see this notification, open the command palette and select ``Remote-Containers: Reopen Folder in Container``.
Tasks¶
The devcontainer comes with some useful tasks to help you with development.
You can start these tasks by opening the command palette
and select Tasks: Run Task
then select the one you want to run.
When a task is currently running, it can be restarted by opening the command palette
and selecting Tasks: Restart Running Task
, then select the task you want to restart.
The available tasks are:
Task |
Description |
---|---|
Run Home Assistant on port 9123 |
Launch Home Assistant with your custom component code and the configuration defined in |
Run Home Assistant configuration against /config |
Check the configuration. |
Upgrade Home Assistant to latest dev |
Upgrade the Home Assistant core version in the container to the latest version of the |
Install a specific version of Home Assistant |
Install a specific version of Home Assistant core in the container. |
Step by Step debugging¶
With the development container, you can test your custom component in Home Assistant with step by step debugging.
You need to modify the configuration.yaml
file in .devcontainer
folder
by uncommenting the line:
# debugpy:
Then launch the task Run Home Assistant on port 9123
, and launch the debbuger
with the existing debugging configuration Python: Attach Local
.
For more information, look at the Remote Python Debugger integration documentation.
Linting¶
In progress
GitHub Actions Workflows¶
In progress
Add a logo¶
In progress
Deploy on HACS¶
In progress
Contributor Guide¶
Thank you for your interest in improving the Home Assistant Custom Component Cookiecutter. This project is open-source under the MIT license and welcomes contributions in the form of bug reports, feature requests, and pull requests.
Here is a list of important resources for contributors:
How to report a bug¶
Report bugs on the Issue Tracker.
When filing an issue, make sure to answer these questions:
Which operating system and Python version are you using?
Which version of this project are you using?
What did you do?
What did you expect to see?
What did you see instead?
The best way to get your bug fixed is to provide a test case, and/or steps to reproduce the issue.
How to request a feature¶
Request features on the Issue Tracker.
How to set up your development environment¶
You need Python 3.7+ and the following tools:
Fork the repository on GitHub, and clone the fork to your local machine. You can now generate a project from your development version:
$ cookiecutter path/to/cookiecutter-homeassistant-custom-component
How to test the project¶
This template repository has a Continuous Integration workflow that generate a default project from the cookiecutter template and run tests on it.
You can also manually test the generated integration with different tools implemented in Github workflows.
This template repository is linked to a generated instance repository for testing purpose. You can generate this instance by using the following command:
$ ./scripts/gen_instance
You will be able to use the GitHub workflow if you push the generated repository on GitHub. You can run pre-commit or pytest suite manually and you can ensure the integration generated is working in Home Assistant when launched by Visual Studio Code in a devcontainer.
Plese refere to generated project CONTRIBUTING.rst
file for detailed instructions on testing.
How to submit changes¶
Open a pull request to submit changes to this project.
Your pull request needs to meet the following guidelines for acceptance:
The Nox test suite must pass without errors and warnings.
Include unit tests. This project maintains 100% code coverage.
If your changes add functionality, update the documentation accordingly.
Feel free to submit early, though—we can always iterate on this.
It is recommended to open an issue before starting work on anything. This will allow a chance to talk it over with the owners and validate your approach.
How to accept changes¶
You need to be a project maintainer to accept changes.
Before accepting a pull request, go through the following checklist:
The PR must pass all checks.
The PR must have a descriptive title.
The PR should be labelled with the kind of change (see below).
Release notes are pre-filled with titles and authors of merged pull requests. Labels group the pull requests into sections. The following list shows the available sections, with associated labels in parentheses:
💥 Breaking Changes (
breaking
)🚀 Features (
enhancement
)🔥 Removals and Deprecations (
removal
)🐞 Fixes (
bug
)🐎 Performance (
performance
)🚨 Testing (
testing
)👷 Continuous Integration (
ci
)📚 Documentation (
documentation
)🔨 Refactoring (
refactoring
)💄 Style (
style
)📦 Dependencies (
dependencies
)
To merge the pull request, follow these steps:
Click Squash and Merge. (Select this option from the dropdown menu of the merge button, if it is not shown.)
Click Confirm squash and merge.
Click Delete branch.
How to make a release¶
You need to be a project maintainer to make a release.
Before making a release, go through the following checklist:
All pull requests for the release have been merged.
The default branch passes all checks.
Releases are made by publishing a GitHub Release. A draft release is being maintained based on merged pull requests. To publish the release, follow these steps:
Click Edit next to the draft release.
Enter a tag with the new version.
Enter the release title, also the new version.
Edit the release description, if required.
Click Publish Release.
Version numbers adhere to Calendar Versioning,
of the form YYYY.MM.Micro
.
After publishing the release, the following automated steps are triggered:
The Git tag is applied to the repository.
Read the Docs builds a new stable version of the documentation.
Contributor Covenant Code of Conduct¶
Our Pledge¶
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
Our Standards¶
Examples of behavior that contributes to a positive environment for our community include:
Demonstrating empathy and kindness toward other people
Being respectful of differing opinions, viewpoints, and experiences
Giving and gracefully accepting constructive feedback
Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
Focusing on what is best not just for us as individuals, but for the overall community
Examples of unacceptable behavior include:
The use of sexualized language or imagery, and sexual attention or advances of any kind
Trolling, insulting or derogatory comments, and personal or political attacks
Public or private harassment
Publishing others’ private information, such as a physical or email address, without their explicit permission
Other conduct which could reasonably be considered inappropriate in a professional setting
Enforcement Responsibilities¶
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
Scope¶
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
Enforcement¶
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at oncleben31@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
Enforcement Guidelines¶
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
1. Correction¶
Community Impact: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
Consequence: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
2. Warning¶
Community Impact: A violation through a single incident or series of actions.
Consequence: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
3. Temporary Ban¶
Community Impact: A serious violation of community standards, including sustained inappropriate behavior.
Consequence: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
4. Permanent Ban¶
Community Impact: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
Consequence: A permanent ban from any sort of public interaction within the community.
Attribution¶
This Code of Conduct is adapted from the Contributor Covenant, version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
Community Impact Guidelines were inspired by Mozilla’s code of conduct enforcement ladder.
For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
MIT License¶
Copyright © 2021 oncleben31
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.
This repository is a Cookiecutter template for a Home Assistant custom component based on the integration_blueprint template.
This project is sort of fusion of cookiecutter-homeassistant-component, integration_blueprint and cookiecutter-hypermodern-python projects.
Usage¶
It is recommended to use the latest stable version by using the command:
$ cookiecutter gh:oncleben31/homeassistant-custom-component \ --checkout=2021.1.1
Features¶
Ready to use Home Assistant custom component
UI configuration with config Flow
Translations
Development, testing and step by step debugging in Visual Studio Code development container
HACS ready
Continuous integration with GitHub Actions
Settings for pre-commit
Optional tests suite with pytest and code coverage
You can find a repository created with this cookiecutter template in the cookiecutter-homeassistant-custom-component-instance example.
FAQ¶
What is this project about?
The mission of this project is to provide Home Assistant custom component developers a ready-to-use template with best practices from Home Assistant developers documentation and from Hypermodern Python blog articles.
Where does the custom component come from?
The code of the custom component generated by this cookiecuter has been intitated and maintained by @Ludeeus. I try to keep synchronized with it and implement additional features.