{"id":16843351,"url":"https://github.com/barttc/pip-check","last_synced_at":"2025-04-04T06:09:44.023Z","repository":{"id":57452868,"uuid":"51211236","full_name":"bartTC/pip-check","owner":"bartTC","description":"pip-check gives you a quick overview of all installed packages and their update status.","archived":false,"fork":false,"pushed_at":"2024-09-01T08:58:58.000Z","size":57,"stargazers_count":179,"open_issues_count":4,"forks_count":8,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-28T05:12:20.513Z","etag":null,"topics":["overview","package","package-manager","pip","python","version"],"latest_commit_sha":null,"homepage":"","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/bartTC.png","metadata":{"files":{"readme":"README.rst","changelog":null,"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":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-06T16:50:02.000Z","updated_at":"2025-03-24T08:51:44.000Z","dependencies_parsed_at":"2024-06-18T21:17:31.890Z","dependency_job_id":"628f9f73-8bae-4406-8ccd-6610c2e0edb6","html_url":"https://github.com/bartTC/pip-check","commit_stats":{"total_commits":66,"total_committers":4,"mean_commits":16.5,"dds":"0.10606060606060608","last_synced_commit":"2ac07903421275ac553a66fda2c4b47bc0ec8245"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartTC%2Fpip-check","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartTC%2Fpip-check/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartTC%2Fpip-check/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartTC%2Fpip-check/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bartTC","download_url":"https://codeload.github.com/bartTC/pip-check/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247128753,"owners_count":20888235,"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":["overview","package","package-manager","pip","python","version"],"created_at":"2024-10-13T12:50:37.290Z","updated_at":"2025-04-04T06:09:43.997Z","avatar_url":"https://github.com/bartTC.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://travis-ci.org/bartTC/pip-check.svg?branch=master\n    :target: https://travis-ci.org/bartTC/pip-check\n\n-----\n\n=========\npip-check\n=========\n\npip-check gives you a quick overview of all installed packages and their\nupdate status. Under the hood it calls ``pip list --outdated --format=columns``\nand transforms it into a more user friendly table.\n\n.. image:: https://d.pr/i/ZDPuw5.png\n\nInstallation::\n\n    pip install pip-check\n\nThe last version that runs on Python 2.7 or 3.4 is v2.5.2. Install it with::\n\n    pip install pip-check==2.5.2\n\nUsage::\n\n    $ pip-check -h\n    usage: pip-check [-h] [-a] [-c PIP_CMD] [-l] [-r] [-f] [-H] [-u] [-U]\n\n    A quick overview of all installed packages and their update status.\n\n    optional arguments:\n      -h, --help            show this help message and exit\n      -a, --ascii           Display as ASCII Table\n      -c PIP_CMD, --cmd PIP_CMD\n                            The pip executable to run. Default: `pip`\n      -l, --local           Show only virtualenv installed packages.\n      -r, --not-required    List only packages that are not dependencies of\n                            installed packages.\n      -f, --full-version    Show full version strings.\n      -H, --hide-unchanged  Do not show \"unchanged\" packages.\n      -u, --show-update     Show update instructions for updatable packages.\n      -U, --user            Show only user installed packages.\n\nTesting:\n\nTest against a variation of Python versions::\n\n    $ pip install tox tox-pyenv\n    $ tox\n\nTest against your current Python version::\n\n    $ python setup.py test\n\nRecommeded Similar Tools\n------------------------\n\n- `pip-date`_ - Show the installation or modification times of all your pip packages\n- `pip-chill`_ - Lists only the dependencies (or not) of installed packages\n\n.. _pip-date: https://github.com/E3V3A/pip-date\n.. _pip-chill: https://github.com/rbanffy/pip-chill\n\nChangelog\n---------\n\nv2.9 (2024-09-01):\n\n- Show current Python and pip version upon load.\n- Test against Python 3.12.\n\nv2.8.1 (2022-11-06):\n\n- Fixes issue with packages not correctly sorted into \"Major\" category.\n\nv2.8 (2022-11-06):\n\n- Added support for Python 3.11.\n- Replaced deprecated \"distutils\" with \"packaging\" module.\n\nv2.7 (2021-11-16):\n\n- Drop support for Python 2.7, 3.4 and 3.5\n- Added support for Python 3.9 and 3.10.\n- Removed 'colorclass' as a dependency and with that the shell argument\n  `--disable-colors`.\n\nv2.6 (2019-12-12):\n\n- Requires Python 3.5 or higher.\n- Command error is shown if pip exits with a status code 1 (or larger).\n- Error message is shown if pip is not able to load packages in case of\n  network problems.\n- Update instructions will now add ``--user`` in case the pip-check command\n  should only show user packages as well.\n\nv2.5.2 (2019-08-08):\n\n- This is the last version that runs on Python 2.7. Install it with\n  ``pip install pip-check==2.5.2``\n- Windows color fixes.\n\nv2.5.1 (2019-08-08):\n\n- Windows script fixes.\n\nv2.5 (2019-08-08):\n\n- A more robust installation that installs pip-check as a proper console script.\n- Added new ``--disable-colors`` argument.\n- Added tests for Python 3.7 and 3.8.\n- Fixed Syntax warning happening with no outdated packages.\n- Cleanup of the entire codebase.\n\nv2.4 (2019-07-23):\n\n- Added support to only show packages from the ``user`` or ``local`` package\n  namespace.\n\nv2.3.3 (2018-02-19):\n\n- Visual fixes around ``--show-update``\n\nv2.3.2 (2018-02-18):\n\n- New ``--show-update`` argument.\n- Fixed ``--full-versions`` argument.\n- Minor UI improvements.\n\nv2.1 (2018-02-18):\n\n- Complete new architecture. It now calls ``pip`` directly and parses it output\n  which should be more reliable.\n- It's also using distutils for the version comparision now, which is more\n  reliable as well.\n- Lots of features and bug fixes.\n\nv0.2 (2016-02-09):\n\n- Fixes issues with older pip versions.\n- Truncates extremly long version numbers.\n\nv0.1 (2016-02-06):\n\n- Very first version, and yet with very limited features.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarttc%2Fpip-check","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbarttc%2Fpip-check","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarttc%2Fpip-check/lists"}