{"id":13734160,"url":"https://github.com/JBKahn/flake8-print","last_synced_at":"2025-05-08T10:31:04.547Z","repository":{"id":775725,"uuid":"21356119","full_name":"JBKahn/flake8-print","owner":"JBKahn","description":"flake8","archived":false,"fork":false,"pushed_at":"2023-07-16T15:16:20.000Z","size":77,"stargazers_count":121,"open_issues_count":4,"forks_count":21,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-29T00:20:08.149Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/JBKahn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2014-06-30T15:28:57.000Z","updated_at":"2024-10-16T20:44:28.000Z","dependencies_parsed_at":"2024-01-06T09:57:24.727Z","dependency_job_id":"edf8fecd-1174-4405-b27f-f70d7ee56665","html_url":"https://github.com/JBKahn/flake8-print","commit_stats":{"total_commits":60,"total_committers":15,"mean_commits":4.0,"dds":0.5833333333333333,"last_synced_commit":"b33437f058e85b1f2c0f08787abc86bdeff9d0c6"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBKahn%2Fflake8-print","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBKahn%2Fflake8-print/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBKahn%2Fflake8-print/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBKahn%2Fflake8-print/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JBKahn","download_url":"https://codeload.github.com/JBKahn/flake8-print/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224720788,"owners_count":17358477,"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":[],"created_at":"2024-08-03T03:00:53.075Z","updated_at":"2024-11-15T02:32:23.003Z","avatar_url":"https://github.com/JBKahn.png","language":"Python","funding_links":[],"categories":["Limitations"],"sub_categories":[],"readme":"Flake8 print plugin\n===================\n\nCheck for Print statements in python files.\n\nThis module provides a plugin for ``flake8``, the Python code checker.\n\n\nInstallation\n------------\n\nYou can install or upgrade ``flake8-print`` with these commands::\n\n  $ pip install flake8-print\n  $ pip install --upgrade flake8-print\n\n\nPlugin for Flake8\n-----------------\n\nWhen both ``flake8 2.4.1`` and ``flake8-print`` are installed, the plugin is\navailable in ``flake8``::\n\n    $ flake8 --version\n    2.4.1 (pep8: 1.5.7, flake8-print: 2.0.0, mccabe: 0.3.1, pyflakes: 0.8.1)\n\nFlake8 allows disabling some tests based on the folder:\n\n```\n[flake8]\nper-file-ignores =\n    scripts/*: T20\n    cli.py: T20\n```\n\nError codes\n-----------\n\n| Error Code  | Description                          |\n| ----------- | ------------------------------------ |\n| T201        | print found                          |\n| T203        | pprint found                         |\n| T204        | pprint declared                      |\n\n\nChanges\n-------\n\n##### 5.0.0 - 2022-04-30\n\n* Move namespace from T0* to T2* to avoid collision with other library using same error code.\n* Remove python 2 specific code paths, error messages and six usage.\n\n##### 4.0.1 - 2022-04-30\n\n* Fixing bug with noqa detection by removing manual detection and relying on flake8 itself.\n\n##### 4.0.0 - 2020-11-29\n\n* Opted back into using Poetry now that the existing issues have been fixed.\n* Python 2.7 support was now officially dropped.\n\n##### 3.1.4 - 2019-1-11\n\n* Fix bug introduced in 3.1.3\n* Support for `nopep8` comments\n\n##### 3.1.3 - 2019-31-10\n\n* Swapped back from poetry to setup.py :(....python ecosystem issues....\n* single function refactor code\n\n##### 3.1.1 - 2019-03-12\n\n* Fix reading from stdin when it is closed (requires flake8 \u003e 2.1).\n* Add error codes to ReadMe.\n* Swapped to poetry from setup.py\n* Ran black on the repository\n\n##### 3.1.0 - 2018-02-11\n* Add a framework classifier for use in pypi.org\n* Fix entry_point in setup.py leaving it off by default again.\n\n##### 3.0.1 - 2017-11-06\n* Fix conflict in setup.py leaving it off by default again.\n* Fix bug in name code.\n\n##### 3.0.0 - 2017-11-05\n* Remove some of the python 2/3 message differentiation.\n* Use an AST rather than a logical line checker with a regex.\n* pprint support.\n* Loss of multiline noqa support, until there is a way to use both the AST and have flake8 provide the noqa lines.\n\n\n##### 2.0.2 - 2016-02-29\n* Fix ReadMe for pipy\n* Refactor, DRY it up.\n* Update python 2 vs python 3 print statement styles.\n\n##### 2.0.1 - 2015-11-21\n* Add back the decorator to fix the `flake8 --version` call.\n\n##### 2.0 - 2015-11-10\n* Support noqa at end of multiline print statement\n* Performance improvements\n* Removed PrintStatementChecker class and other functions\n* Added T101 for 'Python 2.x reserved word print used.'\n* Added testing for Python 3.3 and 3.5, and different flake8 versions\n\n##### 1.6.1 - 2015-05-22\n* Fix bug introduced in 1.6.\n\n##### 1.6 - 2015-05-18\n* Added proper support for python3 and testing for python 2.6, 2.7 and 3.4\n\n##### 1.5 - 2014-11-04\n* Added python2.6 support. Thanks @zoidbergwill\n\n##### 1.4 - 2014-10-06\n* Apped noqa support\n\n##### 1.3 - 2014-09-27\n* Dropped noqa support\n* Support for multiline comments and less false positives\n\n##### 1.2 - 2014-06-30\n* Does not catch the word print in single line strings\n* Does not catch inline comments with print in it\n* Added tests\n\n##### 1.1 - 2014-06-30\n* First release\n\n##### 1.0 - 2014-06-30\n* Whoops\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJBKahn%2Fflake8-print","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJBKahn%2Fflake8-print","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJBKahn%2Fflake8-print/lists"}