New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

flake8-codes

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flake8-codes

CLI tool to introspect flake8 plugins and their codes.

pipPyPI
Version
0.2.2
Maintainers
1

flake8-codes

CLI tool to introspect flake8 plugins and their codes.

Input: plugin name (pycodestyle), error code (W605), or code prefix (W6).

Output: plugin name, error code, error message.

Only plugins installed in the same environment are inspected.

Installation

python3 -m pip install -U --user flake8-codes

Example

$ python3 -m flake8_codes W6
pycodestyle          | W601     | .has_key() is deprecated, use 'in'
pycodestyle          | W602     | deprecated form of raising exception
pycodestyle          | W603     | '<>' is deprecated, use '!='
pycodestyle          | W604     | backticks are deprecated, use 'repr()'
pycodestyle          | W605     | invalid escape sequence '\%s'
pycodestyle          | W606     | 'async' and 'await' are reserved keywords starting with Python 3.7

Keywords

flake8

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