Introduction
The HASS-data-detective
package helps you explore and analyse the data in your Home Assistant) database. If you are running HASS-data-detective
on a machine with Home Assistant installed, it will automatically discover your database and by default collect information about the entities in your database. See the notebooks directory for examples of using the detective package. If you are on a Raspberry pi you should use the official JupyterLab add-on which includes HASS-data-detective
Installation on your machine
You can either: pip install HASS-data-detective
for the latest released version from pypi, or pip install git+https://github.com/robmarkcole/HASS-data-detective.git --upgrade
for the bleeding edge version from github. Note that due to the matplotlib dependency, libfreetype6-dev is a requirement on aarch64
platforms (i.e. RPi).
Which version to install?
The 3.0 version from pypi requires the existence of a states_meta
table which is not present in older Home Assistant databases. If you get the error (sqlite3.OperationalError) no such table: states_meta
then you should install the earlier release with pip install HASS-data-detective==2.6
Run with Docker locally
You can use the detective package within a Docker container so there is no need to install anything on your machine (assuming you already have docker installed). Note this will pull the jupyter/scipy-notebook docker image the first time you run it, but subsequent runs will be much faster. Note there is no image available for Raspberry pi.
From the root directory of this repo run:
docker run --rm -p 8888:8888 -e JUPYTER_ENABLE_LAB=yes -v "$PWD":/home/jovyan/work jupyter/scipy-notebook
Follow the URL printed to the terminal, which opens a Jupyter lab instance. Open a new terminal in Jupyter lab and navigate to the work
directory containing setup.py
, then run:
~/work$ pip install .
You can now navigate to the notebooks directory and start using the detective package. Note that you can install any package you want from pypi, but they will not persist on restarting the container.
Try out detective online
You can try out the latest version of detective from pypi without installing anything. If you click on the 'launch binder' button above, detective will be started in a Docker container online using the Binderhub service. Run the example notebook to explore detective, and use the Upload
button to upload your own home-assistant_v2.db
database file for analysis. Note that all data is deleted when the container closes down, so this service is just for trying out detective.
Development (VScode)
- Create a venv:
python3 -m venv venv
- Activate venv:
source venv/bin/activate
- Install requirements:
pip3 install -r requirements.txt
- Install detective in development mode:
pip3 install -e .
- Install Jupyterlab to run the notebooks:
pip3 install jupyterlab
- Open the notebook at
notebooks/Getting started with detective.ipynb
Running tests
- Install dependencies:
pip3 install -r requirements_test.txt
- Run:
pytest tests
Contributors
Big thanks to @balloob and @frenck, checkout their profiles!