{"id":13572310,"url":"https://github.com/PyCQA/pyflakes","last_synced_at":"2025-04-04T09:32:15.295Z","repository":{"id":15769094,"uuid":"18508013","full_name":"PyCQA/pyflakes","owner":"PyCQA","description":"A simple program which checks Python source files for errors","archived":false,"fork":false,"pushed_at":"2025-03-31T13:21:35.000Z","size":1009,"stargazers_count":1405,"open_issues_count":58,"forks_count":181,"subscribers_count":29,"default_branch":"main","last_synced_at":"2025-03-31T14:59:21.532Z","etag":null,"topics":["hacktoberfest","linter","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/pyflakes","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PyCQA.png","metadata":{"files":{"readme":"README.rst","changelog":"NEWS.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-04-07T06:19:46.000Z","updated_at":"2025-03-31T13:21:39.000Z","dependencies_parsed_at":"2023-02-16T22:00:41.936Z","dependency_job_id":"dd591c72-d502-4f0e-9880-f10db8ff1721","html_url":"https://github.com/PyCQA/pyflakes","commit_stats":{"total_commits":508,"total_committers":86,"mean_commits":5.906976744186046,"dds":0.7440944881889764,"last_synced_commit":"d9e32c4cbdb569e66d5f63c9687b8a396796a44b"},"previous_names":["pyflakes/pyflakes"],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyCQA%2Fpyflakes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyCQA%2Fpyflakes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyCQA%2Fpyflakes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyCQA%2Fpyflakes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PyCQA","download_url":"https://codeload.github.com/PyCQA/pyflakes/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246697909,"owners_count":20819462,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","linter","python"],"created_at":"2024-08-01T14:01:19.729Z","updated_at":"2025-04-04T09:32:10.284Z","avatar_url":"https://github.com/PyCQA.png","language":"Python","readme":"========\nPyflakes\n========\n\nA simple program which checks Python source files for errors.\n\nPyflakes analyzes programs and detects various errors.  It works by\nparsing the source file, not importing it, so it is safe to use on\nmodules with side effects.  It's also much faster.\n\nIt is `available on PyPI \u003chttps://pypi.org/project/pyflakes/\u003e`_\nand it supports all active versions of Python: 3.8+.\n\n\n\nInstallation\n------------\n\nIt can be installed with::\n\n  $ pip install --upgrade pyflakes\n\n\nUseful tips:\n\n* Be sure to install it for a version of Python which is compatible\n  with your codebase: ``python#.# -m pip install pyflakes`` (for example,\n  ``python3.10 -m pip install pyflakes``)\n\n* You can also invoke Pyflakes with ``python#.# -m pyflakes .`` if you want\n  to run it for a specific python version.\n\n* If you require more options and more flexibility, you could give a\n  look to Flake8_ too.\n\n\nDesign Principles\n-----------------\nPyflakes makes a simple promise: it will never complain about style,\nand it will try very, very hard to never emit false positives.\n\nPyflakes is also faster than Pylint_. This is\nlargely because Pyflakes only examines the syntax tree of each file\nindividually. As a consequence, Pyflakes is more limited in the\ntypes of things it can check.\n\nIf you like Pyflakes but also want stylistic checks, you want\nflake8_, which combines\nPyflakes with style checks against\n`PEP 8`_ and adds\nper-project configuration ability.\n\n\nMailing-list\n------------\n\nShare your feedback and ideas: `subscribe to the mailing-list\n\u003chttps://mail.python.org/mailman/listinfo/code-quality\u003e`_\n\nContributing\n------------\n\nIssues are tracked on `GitHub \u003chttps://github.com/PyCQA/pyflakes/issues\u003e`_.\n\nPatches may be submitted via a `GitHub pull request`_.\nIf you are comfortable doing so, please `rebase your changes`_\nso they may be applied to main with a fast-forward merge, and each commit is\na coherent unit of work with a well-written log message.  If you are not\ncomfortable with this rebase workflow, the project maintainers will be happy to\nrebase your commits for you.\n\nAll changes should include tests and pass flake8_.\n\n.. image:: https://github.com/PyCQA/pyflakes/workflows/Test/badge.svg\n   :target: https://github.com/PyCQA/pyflakes/actions\n   :alt: GitHub Actions build status\n\n.. _Pylint: https://pylint.pycqa.org/\n.. _flake8: https://pypi.org/project/flake8/\n.. _`PEP 8`: https://www.python.org/dev/peps/pep-0008/\n.. _`rebase your changes`: https://git-scm.com/book/en/v2/Git-Branching-Rebasing\n.. _`GitHub pull request`: https://github.com/PyCQA/pyflakes/pulls\n\nChangelog\n---------\n\nPlease see `NEWS.rst \u003chttps://github.com/PyCQA/pyflakes/blob/main/NEWS.rst\u003e`_.\n","funding_links":[],"categories":["Python","Static Checks","Linters \u0026 Style Checkers","Linters"],"sub_categories":["Linter"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPyCQA%2Fpyflakes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPyCQA%2Fpyflakes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPyCQA%2Fpyflakes/lists"}