Skip to content

Instantly share code, notes, and snippets.

@84adam
Created October 17, 2022 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 84adam/bcb08ce362960eca085b353605843f1d to your computer and use it in GitHub Desktop.
Save 84adam/bcb08ce362960eca085b353605843f1d to your computer and use it in GitHub Desktop.
Python Clean Code Tips & Tools
### Python Clean Code Tips & Tools
Check the quality of your code inside your CI pipeline.
- flake8 - style guide enforcer
- black - code formatting
- isort - optimize imports
- bandit - check for security vulnerabilities
- safety - check for security vulnerabilities of dependencies
Source: https://twitter.com/testdrivenio/status/1575160914135089152
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment