Backend and DB wrapper for feedback collection system.
Run:
pip install fdbkto install from PyPI or download this repository and run
python setup.py installto install from sources.
See examples directory for example use cases.
Launch development server to port 8080 with:
fdbk-server -p 8080See fdbk-server --help for other options.
Check and automatically fix formatting with:
pycodestyle fdbk
autopep8 -aaar --in-place fdbkRun static analysis with:
pylint -E --enable=invalid-name,unused-import,useless-object-inheritance fdbkRun unit tests with command:
python3 -m unittest discover -s tst/Get test coverage with commands:
coverage run --branch --source fdbk/ -m unittest discover -s tst/
coverage report -m