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 517b237636 tests: fix test databases 3 years ago
docs Consistently use bytes everywhere for stream data 4 years ago
extras Fix #! at top of shell scripts for py3 and venvs 3 years ago
nilmdb flake8: fix style 3 years ago
tests tests: fix test databases 3 years ago
.coveragerc Remove old files from .coveragerc exclusions 4 years ago
.gitattributes Incorporate versioneer for versioning 11 years ago
.gitignore Clean up README 4 years ago
MANIFEST.in Update setup.py and build instructions 4 years ago
Makefile Add pylint config and selectively fix some pylint errors 4 years ago
README.md Bump Python version requirement 3 years ago
requirements.txt Add yappi dependency for "nilmdb-server -y", but don't require ipython 3 years ago
setup.cfg Fix flake8-reported issues with fsck 3 years ago
setup.py Fix #! at top of shell scripts for py3 and venvs 3 years ago
versioneer.py Update build system for Python 3 4 years ago

README.md

nilmdb: Non-Intrusive Load Monitor Database

by Jim Paris jim@jtan.com

NilmDB requires Python 3.8 or newer.

Prerequisites:

# Runtime and build environments
sudo apt install python3 python3-dev python3-venv python3-pip

# 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

Test:

python3 setup.py nosetests

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

Usage:

nilmdb-server --help
nilmdb-fsck --help
nilmtool --help

See docs/wsgi.md for info on setting up a WSGI application in Apache.