img avatar
 
× You must be logged in to change this data. If you don't have an account, please join.

Settings : Manage Projects

  Name I Use This Lines of Code   Current Committers Community Rating Reviews Description  
flake8-bugbear 0 4413
10 none 0 A plugin for Flake8 finding likely bugs and design problems in your program. Contains warnings that don't belong in pyflakes and pycodestyle.
flake8-polyfill 1 675
0 none 0 Polyfill for compatibility across versions of Flake8
pycqa-infrastructure 0 0
0 none 0 Ansible roles and playbooks for managing PyCQA's Jenkins infrastructure
flake8-docstrings 1 0
18 none 0
flake8-import-order 1 0
3 none 0 Flake8 plugin that checks import order against various Python Style Guides
bandit 1 0
1 none 0 Python AST-based static analyzer from OpenStack Security Group
Baron (Python) 1 27940
7
5.0
 
0 IDE allow you to refactor code, Baron allows you to write refactoring code.
RedBaron 1 6653
7
5.0
 
0 Bottom-up approach to refactoring in python
python-astroid 0 35084
26 none 0 The aim of this python module is to provide a common base representation of python source code for ... [More] projects such as pychecker, pyreverse, pylint... Well, actually the development of this library is essentially governed by pylint's needs. It used to be called logilab-astng. It provides a compatible representation which comes from the _ast module. It rebuilds the tree generated by the builtin _ast module by recursively walking down the AST and building an extended ast. The new node classes have additional methods and attributes for different usages. They include some support for static inference and local name scopes. Furthermore, astroid builds partial trees by inspecting living objects. [Less]
mccabe 1 442
0 none 0 Ned's script to check McCabe complexity. This module provides a plugin for flake8, the Python code checker.
Prospector (Python) 4 0
0
4.0
   
0 A Python static analysis frontend which configures and filters PyLint to produce more useful output ... [More] and which will gain additional backends in future versions. (If Flake8 is the lightweight check your IDE runs every time you save, this is intended to be the thorough check you run on a commit or push hook.) This is also the backend which powers Landscape.io, so using them together is similar to running your test suite manually before you push to the continuous integration server. [Less]
pep8-naming 0 1416
5 none 0 Naming Convention checker for Python
flake8 10 6974
25
5.0
 
0 This project glues together PyFlakes, PEP8, and a McCabe complexity checker to analyze the quality of code written in python. It is extremely extensible and already has several extensions written for it.
pydocstyle 2 5191
14 none 0 PEP257 docstring style checker.
pycodestyle 8 4779
10
5.0
 
0 Simple Python style checker. A tool to check your Python code against some of the style conventions in PEP 8.
Pyflakes 29 4659
16
4.5
   
0 A Lint-like tool for Python, like PyChecker. It is focused on identifying common errors quickly without executing Python code.