Jim Paris cfc66b6847 Fix flake8 errors throughout code
This found a small number of real bugs too, for example,
this one that looked weird because of a 2to3 conversion,
but was wrong both before and after:
-        except IndexError as TypeError:
+        except (IndexError, TypeError):
2020-08-06 17:58:41 -04:00
2020-08-06 17:32:06 -04:00
2020-08-04 10:42:00 -04:00
2020-08-04 10:42:00 -04:00
2020-08-04 10:42:00 -04:00
2020-08-06 17:58:41 -04:00
2020-08-05 17:04:58 -04:00

nilmtools: Tools and utilities for NilmDB

Tools and utilities for interacting with the NILM Database, or writing programs that interact with the NILM database.

by Jim Paris jim@jtan.com

Prerequisites:

# Runtime and build environments
sudo apt-get install python3

# Create a new Python virtual environment to isolate deps.
python3 -m venv ../venv
source ../venv/bin/activate   # run "deactivate" to leave

# Install all Python dependencies
pip3 install -r requirements.txt

Install:

Install it into the virtual environment

python3 setup.py install

If you want to instead install it system-wide, you will also need to install the requirements system-wide:

sudo pip3 install -r requirements.txt
sudo python3 setup.py install

Building new tools:

The tools in this package are meant to be installed with python3 setup.py install. If you want to make a new one, an easier way to develop would be to first install this package, and then copy a specific script like src/sinefit.py to a new location, and modify it as desired.

To add a tool to the package, place it in src/ and add the appropriate configuration to setup.py.

Description
No description provided
Readme 4 MiB
Languages
Python 95.5%
JavaScript 3.6%
Shell 0.5%
Makefile 0.4%