Code Standards

For the Python code we follow the PEP8 standard. A linter called flake8 is used to verify adherence to the standard.

Setting up dev environment

source venv/bin/activate
pip install -r requirements-dev.txt

Running flake8

flake8 .

Automatically formatting Python code

autopep8 -i -aaa -r .
isort .