Markdown tutorials for Python tools (static analysis, tests, and more)
A clean code should follow theses rules:
- documented (DOCSTRING)
- simple (KISS)
- well structured (SOLID)
- only what is necessary (YAGNI)
- no duplicated code (DRY)
- tested (TU)
To help you achieve this goal, you can use several tools. See: