pipwin


Namepipwin JSON
Version 0.5.2 PyPI version JSON
download
home_pagehttps://github.com/lepisma/pipwin
Summarypipwin installs compiled python binaries on windows provided by Christoph Gohlke
upload_time2022-03-17 17:55:36
maintainer
docs_urlNone
authorlepisma
requires_python
licenseBSD
keywords pipwin windows binaries
VCS
bugtrack_url
requirements wheel docopt requests beautifulsoup4 pyprind six js2py packaging
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============================
pipwin
===============================


.. image:: https://img.shields.io/pypi/v/pipwin.svg?style=flat-square
    :target: https://pypi.python.org/pypi/pipwin/
    :alt: Latest Version

.. image:: https://img.shields.io/appveyor/ci/lepisma/pipwin.svg?style=flat-square
    :target: https://ci.appveyor.com/project/lepisma/pipwin
    :alt: Build

.. image:: https://img.shields.io/pypi/l/pipwin.svg?style=flat-square
    :target: https://pypi.python.org/pypi/pipwin/
    :alt: License

**pipwin** is a complementary tool for **pip** on Windows. **pipwin** installs
unofficial python package binaries for windows provided by Christoph Gohlke here
`http://www.lfd.uci.edu/~gohlke/pythonlibs/
<http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_

**Version 0.2.X changes the structure of cache file. Make sure to run `pipwin refresh` if updated.**

QuickStart
^^^^^^^^^^

.. code-block::

   >> pip install pipwin
   >> pipwin search cv

   Did you mean any of these ?

     * cvxopt
     * opencv-python
     * abcview
     * cvxpy

   >> pipwin install opencv-python

   >> pipwin install numpy>=1.11


Details
^^^^^^^

- On first run, **pipwin** builds a cache of available package list in ``~/.pipwin``

- You can force a cache rebuild using : ``pipwin refresh``

- List all available packages : ``pipwin list``

- Search packages : ``pipwin search <partial_name/name>``

- Install packages : ``pipwin install <package>``

  Also works version specifiers, e.g. ``pipwin install <package>==<version>`` or
  ``pipwin install <package><=<version>``

- Download only (to ``~/pipwin`` or ``<dest>`` if provided) : ``pipwin
  download -d <dest> <package>``

- Install from pipwin requirements file : ``pipwin install -r requirements.txt``

- Download only from pipwin requirements file : ``pipwin download -r
  requirements.txt``

- Uninstall packages (Can directly use **pip** for this) : ``pipwin uninstall
  <package>``

**Free software: BSD license**


Changelog
---------

v0.5.0
~~~~~~

- Handles text vs string parsing for beautifulsoup4 for python2 vs python3.
- Fixes [issue 43](https://github.com/lepisma/pipwin/issues/43)

v0.4.9
~~~~~~

- More robust whitespace handling in requirement parsing.

v0.4.8
~~~~~~

- Using PySmartDL to handle download and install of packages.
- Removed progress bar and streaming downloader blocks now handled by PySmartDL.

v0.4.7
~~~~~~

- Using postman client type to overcome use of robobrowser to create package
  cache.
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lepisma/pipwin",
    "name": "pipwin",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "pipwin windows binaries",
    "author": "lepisma",
    "author_email": "abhinav.tushar.vs@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d0/e4/388df6b5c233523a7ffab4d5e4e07de0590c901d05ac125e6a750a504e33/pipwin-0.5.2.tar.gz",
    "platform": null,
    "description": "===============================\npipwin\n===============================\n\n\n.. image:: https://img.shields.io/pypi/v/pipwin.svg?style=flat-square\n    :target: https://pypi.python.org/pypi/pipwin/\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/appveyor/ci/lepisma/pipwin.svg?style=flat-square\n    :target: https://ci.appveyor.com/project/lepisma/pipwin\n    :alt: Build\n\n.. image:: https://img.shields.io/pypi/l/pipwin.svg?style=flat-square\n    :target: https://pypi.python.org/pypi/pipwin/\n    :alt: License\n\n**pipwin** is a complementary tool for **pip** on Windows. **pipwin** installs\nunofficial python package binaries for windows provided by Christoph Gohlke here\n`http://www.lfd.uci.edu/~gohlke/pythonlibs/\n<http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_\n\n**Version 0.2.X changes the structure of cache file. Make sure to run `pipwin refresh` if updated.**\n\nQuickStart\n^^^^^^^^^^\n\n.. code-block::\n\n   >> pip install pipwin\n   >> pipwin search cv\n\n   Did you mean any of these ?\n\n     * cvxopt\n     * opencv-python\n     * abcview\n     * cvxpy\n\n   >> pipwin install opencv-python\n\n   >> pipwin install numpy>=1.11\n\n\nDetails\n^^^^^^^\n\n- On first run, **pipwin** builds a cache of available package list in ``~/.pipwin``\n\n- You can force a cache rebuild using : ``pipwin refresh``\n\n- List all available packages : ``pipwin list``\n\n- Search packages : ``pipwin search <partial_name/name>``\n\n- Install packages : ``pipwin install <package>``\n\n  Also works version specifiers, e.g. ``pipwin install <package>==<version>`` or\n  ``pipwin install <package><=<version>``\n\n- Download only (to ``~/pipwin`` or ``<dest>`` if provided) : ``pipwin\n  download -d <dest> <package>``\n\n- Install from pipwin requirements file : ``pipwin install -r requirements.txt``\n\n- Download only from pipwin requirements file : ``pipwin download -r\n  requirements.txt``\n\n- Uninstall packages (Can directly use **pip** for this) : ``pipwin uninstall\n  <package>``\n\n**Free software: BSD license**\n\n\nChangelog\n---------\n\nv0.5.0\n~~~~~~\n\n- Handles text vs string parsing for beautifulsoup4 for python2 vs python3.\n- Fixes [issue 43](https://github.com/lepisma/pipwin/issues/43)\n\nv0.4.9\n~~~~~~\n\n- More robust whitespace handling in requirement parsing.\n\nv0.4.8\n~~~~~~\n\n- Using PySmartDL to handle download and install of packages.\n- Removed progress bar and streaming downloader blocks now handled by PySmartDL.\n\nv0.4.7\n~~~~~~\n\n- Using postman client type to overcome use of robobrowser to create package\n  cache.",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "pipwin installs compiled python binaries on windows provided by Christoph Gohlke",
    "version": "0.5.2",
    "project_urls": {
        "Homepage": "https://github.com/lepisma/pipwin"
    },
    "split_keywords": [
        "pipwin",
        "windows",
        "binaries"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0e4388df6b5c233523a7ffab4d5e4e07de0590c901d05ac125e6a750a504e33",
                "md5": "efc76936bc3b980ba0618754b014716d",
                "sha256": "34791e633760240ac970ef41bf4cee4c31616ba31d9f58112e9bb83bab276746"
            },
            "downloads": -1,
            "filename": "pipwin-0.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "efc76936bc3b980ba0618754b014716d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7931,
            "upload_time": "2022-03-17T17:55:36",
            "upload_time_iso_8601": "2022-03-17T17:55:36.670167Z",
            "url": "https://files.pythonhosted.org/packages/d0/e4/388df6b5c233523a7ffab4d5e4e07de0590c901d05ac125e6a750a504e33/pipwin-0.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-03-17 17:55:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lepisma",
    "github_project": "pipwin",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "appveyor": true,
    "requirements": [
        {
            "name": "wheel",
            "specs": []
        },
        {
            "name": "docopt",
            "specs": []
        },
        {
            "name": "requests",
            "specs": []
        },
        {
            "name": "beautifulsoup4",
            "specs": [
                [
                    ">=",
                    "4.9.0"
                ]
            ]
        },
        {
            "name": "pyprind",
            "specs": []
        },
        {
            "name": "six",
            "specs": []
        },
        {
            "name": "js2py",
            "specs": []
        },
        {
            "name": "packaging",
            "specs": []
        }
    ],
    "lcname": "pipwin"
}
        
Elapsed time: 0.13668s