Computing over Decentralized Network, with P2P
- Install necessary software such as Python3 or Make.
- Clone the repository.
make install
.- (optional) Setup Visual Studio Code to work with Python
- Install official Python extension.
- Enable linting (
Ctrl+Shift+P
→ Enable Linting) Select pycodestyle as a linter (You'll want 2 linters to be enabled: pylint (error detection) and pycodestyle (code style hints). To achieve that, make sure these 2 options are set in .vscode/settings.json:Ctrl+Shift+P
→ Select Linter)"python.linting.pylintEnabled = true"
,"python.linting.pycodestyleEnabled = true"
.
Use make run
.
Use make test
to run unit tests. make report
additionally generates a code coverage report.