Coder Social home page Coder Social logo

r-downing / pyflakes Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pycqa/pyflakes

0.0 0.0 0.0 935 KB

A simple program which checks Python source files for errors

Home Page: https://pypi.org/project/pyflakes

License: MIT License

Python 100.00%

pyflakes's Introduction

Pyflakes

A simple program which checks Python source files for errors.

Pyflakes analyzes programs and detects various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It's also much faster.

It is available on PyPI and it supports all active versions of Python: 3.6+.

Installation

It can be installed with:

$ pip install --upgrade pyflakes

Useful tips:

  • Be sure to install it for a version of Python which is compatible with your codebase: python#.# -m pip install pyflakes (for example, python3.10 -m pip install pyflakes)
  • You can also invoke Pyflakes with python#.# -m pyflakes . if you want to run it for a specific python version.
  • If you require more options and more flexibility, you could give a look to Flake8 too.

Design Principles

Pyflakes makes a simple promise: it will never complain about style, and it will try very, very hard to never emit false positives.

Pyflakes is also faster than Pylint. This is largely because Pyflakes only examines the syntax tree of each file individually. As a consequence, Pyflakes is more limited in the types of things it can check.

If you like Pyflakes but also want stylistic checks, you want flake8, which combines Pyflakes with style checks against PEP 8 and adds per-project configuration ability.

Mailing-list

Share your feedback and ideas: subscribe to the mailing-list

Contributing

Issues are tracked on GitHub.

Patches may be submitted via a GitHub pull request. If you are comfortable doing so, please rebase your changes so they may be applied to main with a fast-forward merge, and each commit is a coherent unit of work with a well-written log message. If you are not comfortable with this rebase workflow, the project maintainers will be happy to rebase your commits for you.

All changes should include tests and pass flake8.

GitHub Actions build status

Changelog

Please see NEWS.rst.

pyflakes's People

Contributors

florentx avatar asottile avatar myint avatar bitglue avatar jayvdb avatar asmeurer avatar jdufresne avatar adiroiban avatar kevinw avatar ryneeverett avatar mithrandi avatar hugovk avatar sigmavirus24 avatar dannysepler avatar peterjclaw avatar mgedmin avatar attilaolah avatar ankitxjoshi avatar adamchainz avatar hanaasagi avatar ambv avatar scop avatar terencehonles avatar msullivan avatar sbraz avatar laurentb avatar joernheissler avatar exarkun avatar jwilk avatar alexandrul avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.