You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Jim Paris e99027db46 Freeze requirements 3 years ago
extras Finish trainola testing and porting to Python 3 3 years ago
nilmtools Fix flake8 errors throughout code 3 years ago
tests Flesh out remaining tests and Python 3 fixes 3 years ago
.coveragerc Add test framework, and initial test for nilm-copy 3 years ago
.gitattributes Large restructuring, added setup 11 years ago
.gitignore Use multiprocessing to start multiple servers in tests 3 years ago
MANIFEST.in Start Python 3 conversion 3 years ago
Makefile Cleanup Makefile 3 years ago
README.md Start Python 3 conversion 3 years ago
requirements.txt Freeze requirements 3 years ago
setup.cfg Fix flake8 errors throughout code 3 years ago
setup.py Fix #! at top of shell scripts for py3 and venvs 3 years ago
versioneer.py Update versioneer 3 years ago

README.md

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.