🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

pep_quality

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pep_quality

PEP8 small quality test

1.4.1
PyPI
Maintainers
1

A simple pep8 quality test

First, this was taken from edx-platform and modified to reach my own goals.

Do you think your code is clean??!!

run quality_test on your home directory and find out how many violations your code have.

Simple installation using pip:

"pip install pep-quality"

use the following to test your code:

" from path import Path as path

from pep_quality.quality import run_quality

...

run_quality(path(file).abspath(), None) "

or you can just call from python manage.py shell like:

" from path import Path as path

from pep_quality.quality import run_quality

...

run_quality(path('.').abspath(), None) "

Keywords

PEP8 PEP-quality code codestyle

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts