{ "info": { "author": "Krzysztof Chomski", "author_email": "krzysztof.chomski@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development", "Topic :: Utilities" ], "description": "pip-manager |Build Status|\n==========================\n\n``pip-manager`` is a command line tool to make Python packages\nmanagement easy.\n\nTable of Contents\n-----------------\n\n1. `Requirements <#requirements>`__\n2. `Installation <#installation>`__\n3. `Usage <#usage>`__\n4. `Contributing <#contributing>`__\n5. `Support <#support>`__\n6. `License <#license>`__\n7. `Acknowledgements <#acknowledgements>`__\n\n1. Requirements\n---------------\n\n``pip-manager`` works on both Python 2 and Python 3 (tested on\n``python2.7`` and ``python3.5+``) and is Linux and Windows compatible\n(tested on Linux Mint 18.2 and Windows 7).\n\nDependencies:\n^^^^^^^^^^^^^\n\n``pip-manager`` is written purely in Python and has ``pip`` as an only\ndependency.\n\nIMPORTANT note for Windows users:\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nOn Windows you have to install ported ``curses`` library\n(`link `__) as native\nPython ``curses`` does not work there.\n\n2. Installation\n---------------\n\n``pip-manager`` can be easily installed using ``pip``:\n\n::\n\n pip install -U pip-manager\n\nor ``pipenv``:\n\n::\n\n pipenv install pip-manager\n\nIf you want to install pip-manager system-wide just use ``sudo``:\n\n::\n\n sudo pip install -U pip-manager\n\n3. Usage\n--------\n\n| To run ``pip-manager`` just type ``pip-manager`` in your terminal\n window and hit ``Enter``.\n| If you made system-wide installation, run ``pip-manager`` with:\n\n::\n\n sudo -H pip-manager\n\nYou will see something very similar to this:\n\n::\n\n pip-manager v1.0.0 (python 2.7.12)\n \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502Checking the newest version for cssselect \u2502\n \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\nAfter a (hopefully) short while pip-manager will be ready to use:\n\n::\n\n pip-manager v1.0.0 (python 2.7.12)\n [ ] cssselect 1.0.1 1.0.1\n [ ] cycler 0.10.0 0.10.0\n [ ] decorator 4.0.11 4.0.11\n [ ] django 1.11.3 1.11.3\n [ ] docutils 0.13.1 0.13.1\n [ ] entrypoints 0.2.3 0.2.3\n [ ] enum34 1.1.6 1.1.6\n [ ] fancycompleter 0.7 0.7\n [ ] flask 0.10 0.12.2\n [ ] functools32 3.2.3.post2 3.2.3.post2\n [ ] futures 3.1.1 3.1.1\n [ ] html5lib 0.999999999 0.999999999\n [ ] hupper 1.0 1.0\n [ ] hyperlink 17.2.1 17.2.1\n Page: 1/5\n Options:\n Up/Down - prev/next package\n Left/Right - prev/next page\n PgUp/PgDn - jump up/down by 5\n Home/End - jump to top/bottom\n Space - (un)select package\n A - toggle all\n Enter - upgrade selected\n Delete - uninstall selected\n Q - exit\n\nAs you can see options are displayed all the time and are pretty\nself-explanatory, so using ``pip-manager`` should be really simple and\nstraightforward.\n\n| Second column shows current version installed and third column shows\n the newest stable version available.\n| It is not visible here, but if there is newer version available, it\n will be printed with **bold** font.\n| If newest version is already installed it will be printed greyed out.\n\nIMPORTANT: Protected distributions\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n| To protect yourself from accidentally removing needed distributions,\n you can add them to ``[protected]`` section in ``config.ini`` file\n (located in ``pip-manager`` installation directory).\n| This way you can select all packages by pressing ``A``, uninstall them\n with ``Delete`` and everything except protected packages will be\n uninstalled.\n| By default ``pip``, ``setuptools``, ``wheel`` and ``pip-manager`` are\n listed in the aforementioned file. To uninstall protected\n distributions you have to either uninstall them manually\n (``pip uninstall some_dist``) or remove them from ``config.ini`` file.\n\n4. Contributing\n---------------\n\n| Contributions are always welcome - just:\n| 1. Fork the project.\n| 2. Commit your changes on a feature/fix branch.\n| 3. Push.\n| 4. Submit a pull request.\n| 5. Have your changes merged :)\n\n5. Support\n----------\n\nIf you need assistance, want to report a bug or request a feature,\nplease raise an issue\n`here `__.\n\n6. License\n----------\n\n``pip-manager`` is released under the terms of the MIT License. Please\nrefer to the ``LICENSE.txt`` file for more details.\n\n7. Acknowledgements\n-------------------\n\nGreat thanks to ``pip`` creators and contributors for making life easier\nfor the rest of us.\n\n.. |Build Status| image:: https://travis-ci.org/kchomski/pip-manager.svg?branch=master\n :target: https://travis-ci.org/kchomski/pip-manager\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/kchomski/pip-manager", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pip-manager", "package_url": "https://pypi.org/project/pip-manager/", "platform": "", "project_url": "https://pypi.org/project/pip-manager/", "project_urls": { "Homepage": "https://github.com/kchomski/pip-manager" }, "release_url": "https://pypi.org/project/pip-manager/1.0.3/", "requires_dist": [ "pip" ], "requires_python": "", "summary": "pip-manager is a command line tool to make Python packages management easy.", "version": "1.0.3" }, "last_serial": 5500641, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "e9e81e212b209644ece3afa2e1704922", "sha256": "612235f2f0380357abc16c0a9b3b5d6cd91e120bb7a2532e2eb2d58c007779ca" }, "downloads": -1, "filename": "pip_manager-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9e81e212b209644ece3afa2e1704922", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14730, "upload_time": "2017-08-13T15:37:31", "url": "https://files.pythonhosted.org/packages/b7/4d/8a707ace31258e7001a172976cfcdf453f0701d7a8dd340b1c7a0ff14eb9/pip_manager-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "734c7ee2b463a2abdf539035528620a9", "sha256": "36dead5f5f5937d10d2890b11ad4c9ad217471c0f8acfed5bfe0fdff8b1bf1ae" }, "downloads": -1, "filename": "pip-manager-1.0.0.tar.gz", "has_sig": false, "md5_digest": "734c7ee2b463a2abdf539035528620a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11443, "upload_time": "2017-08-13T15:37:41", "url": "https://files.pythonhosted.org/packages/1e/b3/691a38c22941f0ede2dbe9d35b6dd711613795f1a49fc5052f02179f1691/pip-manager-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "9e36471934c03bcde7dfdd66839e67dc", "sha256": "8efc4b1c2eb0abf2c4ab9bc77754a3e8cc3f28f3310da148ae372b59b6933544" }, "downloads": -1, "filename": "pip_manager-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e36471934c03bcde7dfdd66839e67dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8780, "upload_time": "2018-07-09T23:19:21", "url": "https://files.pythonhosted.org/packages/f7/bd/e09fdcc35eba83800d2fd45b2eb55c92d41cca488e6fa27252d13007809a/pip_manager-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "22b357845edfdb879e697f1b6377dead", "sha256": "77b61587a76fdfb9baed547f265d1995e5f95804abce1dd05881b01538983848" }, "downloads": -1, "filename": "pip-manager-1.0.1.tar.gz", "has_sig": false, "md5_digest": "22b357845edfdb879e697f1b6377dead", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8075, "upload_time": "2018-07-09T23:19:22", "url": "https://files.pythonhosted.org/packages/66/e2/26def4246ed62132857be29d99164f1e3bf6dd72d256f524e73c74fc7b95/pip-manager-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "a865717405d3e6a54c73eaecdb0c14f6", "sha256": "25e9b10d195fe43bd4e5f0c68c55095d79f248f83cdb94564e5326b4f643bbef" }, "downloads": -1, "filename": "pip_manager-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a865717405d3e6a54c73eaecdb0c14f6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8876, "upload_time": "2018-07-09T23:39:56", "url": "https://files.pythonhosted.org/packages/d4/c6/a2ed5cd91f7f6d4683d60470436061d107d30e7150d94061f4c2f4bbfbc7/pip_manager-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abe2ba8e395f6ae654f727d2ccb83de8", "sha256": "01739d79880243fe1ca607081ecd8e1ca2a45488773d831f2541e0b8212c73bb" }, "downloads": -1, "filename": "pip-manager-1.0.2.tar.gz", "has_sig": false, "md5_digest": "abe2ba8e395f6ae654f727d2ccb83de8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8565, "upload_time": "2018-07-09T23:39:57", "url": "https://files.pythonhosted.org/packages/7b/ea/574cb04b5049d391d4443aa3aa83c6f27875bade33436a5a0de057c88302/pip-manager-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "251e4badbfc5b5e389be4fe57e806748", "sha256": "f6f4a4de2fe9bc9bd0a2242eba397d86c7c48139dc0f67cfff9f47df8ff0726f" }, "downloads": -1, "filename": "pip_manager-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "251e4badbfc5b5e389be4fe57e806748", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9711, "upload_time": "2019-07-08T12:48:01", "url": "https://files.pythonhosted.org/packages/63/52/15e4ea7df1d4a77b70c9df894acdd543e5f35df4124806c773d3ebedd8cf/pip_manager-1.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ba1e676ec439f5ab203d3f9a3c175fa9", "sha256": "e5e1028befb14742b8ee013ae1ea1a847f753020d7fe41f1ff702bda5cd3e192" }, "downloads": -1, "filename": "pip-manager-1.0.3.tar.gz", "has_sig": false, "md5_digest": "ba1e676ec439f5ab203d3f9a3c175fa9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9728, "upload_time": "2019-07-08T12:48:03", "url": "https://files.pythonhosted.org/packages/b8/87/9241052dca7d45211fd26f8ffa7955a4e4bdc37d62b987b6f4f777a2adc4/pip-manager-1.0.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "251e4badbfc5b5e389be4fe57e806748", "sha256": "f6f4a4de2fe9bc9bd0a2242eba397d86c7c48139dc0f67cfff9f47df8ff0726f" }, "downloads": -1, "filename": "pip_manager-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "251e4badbfc5b5e389be4fe57e806748", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9711, "upload_time": "2019-07-08T12:48:01", "url": "https://files.pythonhosted.org/packages/63/52/15e4ea7df1d4a77b70c9df894acdd543e5f35df4124806c773d3ebedd8cf/pip_manager-1.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ba1e676ec439f5ab203d3f9a3c175fa9", "sha256": "e5e1028befb14742b8ee013ae1ea1a847f753020d7fe41f1ff702bda5cd3e192" }, "downloads": -1, "filename": "pip-manager-1.0.3.tar.gz", "has_sig": false, "md5_digest": "ba1e676ec439f5ab203d3f9a3c175fa9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9728, "upload_time": "2019-07-08T12:48:03", "url": "https://files.pythonhosted.org/packages/b8/87/9241052dca7d45211fd26f8ffa7955a4e4bdc37d62b987b6f4f777a2adc4/pip-manager-1.0.3.tar.gz" } ] }