{ "info": { "author": "raimon", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: System :: Systems Administration", "Topic :: System :: System Shells" ], "description": "pip-licenses\n============\n\n|Build Status| |PyPI - Python Version| |PyPI version| |GitHub Release|\n|Codecov| |BSD License| |Requirements Status|\n\nDump the software license list of Python packages installed with pip.\n\nTable of Contents\n-----------------\n\n- `Description <#description>`__\n- `Installation <#installation>`__\n- `Usage <#usage>`__\n- `Command-Line Options <#command-line-options>`__\n\n - `Option: from <#option-from>`__\n\n - `Deprecated from-classifier <#deprecated-from-classifier>`__\n\n - `Option: with-system <#option-with-system>`__\n - `Option: with-authors <#option-with-authors>`__\n - `Option: with-urls <#option-with-urls>`__\n - `Option: with-description <#option-with-description>`__\n - `Option: with-license-file <#option-with-license-file>`__\n - `Option: ignore-packages <#option-ignore-packages>`__\n - `Option: order <#option-order>`__\n - `Option: format <#option-format>`__\n\n - `Markdown <#markdown>`__\n - `reST <#rest>`__\n - `Confluence <#confluence>`__\n - `HTML <#html>`__\n - `JSON <#json>`__\n - `CSV <#csv>`__\n - `Deprecated options <#deprecated-options>`__\n\n - `Option: summary <#option-summary>`__\n - `More Information <#more-information>`__\n\n- `Dockerfile <#dockerfile>`__\n- `License <#license>`__\n\n - `Dependencies <#dependencies>`__\n\n- `Uninstallation <#uninstallation>`__\n- `Contributing <#contributing>`__\n\nDescription\n-----------\n\n``pip-licenses`` is a CLI tool for checking the software license of\ninstalled Python packages with pip.\n\nImplemented with the idea inspired by ``composer licenses`` command in\nComposer (a.k.a PHP package management tool).\n\nhttps://getcomposer.org/doc/03-cli.md#licenses\n\nInstallation\n------------\n\nInstall it via PyPI using ``pip`` command.\n\n.. code:: bash\n\n # Install or Upgrade to newest available version\n $ pip install -U pip-licenses\n\nUsage\n-----\n\nExecute the command with your venv (or virtualenv) environment.\n\n.. code:: bash\n\n # Install packages in your venv environment\n (venv) $ pip install Django pip-licenses\n\n # Check the licenses with your venv environment\n (venv) $ pip-licenses\n Name Version License\n Django 2.0.2 BSD\n pytz 2017.3 MIT\n\nCommand-Line Options\n--------------------\n\nOption: from\n~~~~~~~~~~~~\n\nBy default, this tool finds the license from package Metadata\n(``--from=meta``). However, depending on the type of package, it does\nnot declare a license only in the Classifiers.\n\n(See also): `Set license to MIT in setup.py by alisianoi \u30fb Pull Request\n#1058 \u30fb\npypa/setuptools `__, `PEP\n314#License `__\n\nFor example, even if you check with the ``pip show`` command, the\nlicense is displayed as ``UNKNOWN``.\n\n.. code:: bash\n\n (venv) $ pip show setuptools\n Name: setuptools\n Version: 38.5.0\n Summary: Easily download, build, install, upgrade, and uninstall Python packages\n Home-page: https://github.com/pypa/setuptools\n Author: Python Packaging Authority\n Author-email: distutils-sig@python.org\n License: UNKNOWN\n\nIf you want to refer to the license declared in `the\nClassifiers `__,\nuse the ``--from=classifier`` option.\n\n.. code:: bash\n\n (venv) $ pip-licenses --from=classifier --with-system | grep setuptools\n setuptools 38.5.0 MIT License\n\nIf you want to find a license from whichever, mixed mode\n(``--from=mixed``) is available in ``pip-licenses`` version 1.14.0 or\nlater.\n\nIn mixed mode, it first tries to look for licenses in the Classifiers.\nWhen not found in the Classifiers, the license declared in Metadata is\ndisplayed.\n\n**Note:** If neither can find license information, please check with the\n``with-authors`` and ``with-urls`` options and contact the software\nauthor.\n\n- The ``m`` keyword is prepared as alias of ``meta``.\n- The ``c`` keyword is prepared as alias of ``classifier``.\n- The ``mix`` keyword is prepared as alias of ``mixed``.\n\nDeprecated from-classifier\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``from-classifier`` option will be deprecated in version 2.0.0. Please\nmigrate to ``--from`` option.\n\nOption: with-system\n~~~~~~~~~~~~~~~~~~~\n\nBy default, system packages such as ``pip`` and ``setuptools`` are\nignored.\n\nIf you want to output all including system package, use the\n``--with-system`` option.\n\n.. code:: bash\n\n (venv) $ pip-licenses --with-system\n Name Version License\n Django 2.0.2 BSD\n PTable 0.9.2 BSD (3 clause)\n pip 9.0.1 MIT\n pip-licenses 1.0.0 MIT License\n pytz 2017.3 MIT\n setuptools 38.5.0 UNKNOWN\n\nOption: with-authors\n~~~~~~~~~~~~~~~~~~~~\n\nWhen executed with the ``--with-authors`` option, output with author of\nthe package.\n\n.. code:: bash\n\n (venv) $ pip-licenses --with-authors\n Name Version License Author\n Django 2.0.2 BSD Django Software Foundation\n pytz 2017.3 MIT Stuart Bishop\n\nOption: with-urls\n~~~~~~~~~~~~~~~~~\n\nFor packages without Metadata, the license is output as ``UNKNOWN``. To\nget more package information, use the ``--with-urls`` option.\n\n.. code:: bash\n\n (venv) $ pip-licenses --with-urls\n Name Version License URL\n Django 2.0.2 BSD https://www.djangoproject.com/\n pytz 2017.3 MIT http://pythonhosted.org/pytz\n\nOption: with-description\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nWhen executed with the ``--with-description`` option, output with short\ndescription of the package.\n\n.. code:: bash\n\n (venv) $ pip-licenses --with-description\n Name Version License Description\n Django 2.0.2 BSD A high-level Python Web framework that encourages rapid development and clean, pragmatic design.\n pytz 2017.3 MIT World timezone definitions, modern and historical\n\nOption: with-license-file\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nWhen executed with the ``--with-license-file`` option, output the\nlocation of the package's license file on disk and the full contents of\nthat file. Due to the length of these fields, this option is best paired\nwith ``--format=json``.\n\nOption: ignore-packages\n~~~~~~~~~~~~~~~~~~~~~~~\n\nWhen executed with the ``--ignore-packages`` option, ignore the package\nspecified by argument from list output.\n\n.. code:: bash\n\n (venv) $ pip-licenses --ignore-packages django\n Name Version License\n pytz 2017.3 MIT\n\nPackage names of arguments can be separated by spaces.\n\n.. code:: bash\n\n (venv) $ pip-licenses --with-system --ignore-packages django pip pip-licenses\n Name Version License\n PTable 0.9.2 BSD (3 clause)\n pytz 2017.3 MIT\n setuptools 38.5.0 UNKNOWN\n\nOption: order\n~~~~~~~~~~~~~\n\nBy default, it is ordered by package name.\n\nIf you give arguments to the ``--order`` option, you can output in other\nsorted order.\n\n.. code:: bash\n\n (venv) $ pip-licenses --order=license\n\nOption: format\n~~~~~~~~~~~~~~\n\nBy default, it is output to the ``plain`` format.\n\nMarkdown\n^^^^^^^^\n\nWhen executed with the ``--format=markdown`` option, you can output list\nin markdown format. The ``m`` ``md`` keyword is prepared as alias of\n``markdown``.\n\n.. code:: bash\n\n (venv) $ pip-licenses --format=markdown\n | Name | Version | License |\n |--------|---------|---------|\n | Django | 2.0.2 | BSD |\n | pytz | 2017.3 | MIT |\n\nWhen inserted in a markdown document, it is rendered as follows:\n\n+----------+-----------+-----------+\n| Name | Version | License |\n+==========+===========+===========+\n| Django | 2.0.2 | BSD |\n+----------+-----------+-----------+\n| pytz | 2017.3 | MIT |\n+----------+-----------+-----------+\n\nreST\n^^^^\n\nWhen executed with the ``--format=rst`` option, you can output list in\n\"`Grid\ntables `__\"\nof reStructuredText format. The ``r`` ``rest`` keyword is prepared as\nalias of ``rst``.\n\n.. code:: bash\n\n (venv) $ pip-licenses --format=rst\n +--------+---------+---------+\n | Name | Version | License |\n +--------+---------+---------+\n | Django | 2.0.2 | BSD |\n +--------+---------+---------+\n | pytz | 2017.3 | MIT |\n +--------+---------+---------+\n\nConfluence\n^^^^^^^^^^\n\nWhen executed with the ``--format=confluence`` option, you can output\nlist in `Confluence (or JIRA) Wiki\nmarkup `__\nformat. The ``c`` keyword is prepared as alias of ``confluence``.\n\n.. code:: bash\n\n (venv) $ pip-licenses --format=confluence\n | Name | Version | License |\n | Django | 2.0.2 | BSD |\n | pytz | 2017.3 | MIT |\n\nHTML\n^^^^\n\nWhen executed with the ``--format=html`` option, you can output list in\nHTML table format. The ``h`` keyword is prepared as alias of ``html``.\n\n.. code:: bash\n\n (venv) $ pip-licenses --format=html\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
NameVersionLicense
Django2.0.2BSD
pytz2017.3MIT
\n\nJSON\n^^^^\n\nWhen executed with the ``--format=json`` option, you can output list in\nJSON format easily allowing post-processing. The ``j`` keyword is\nprepared as alias of ``json``.\n\n.. code:: json\n\n [\n {\n \"Author\": \"Django Software Foundation\",\n \"License\": \"BSD\",\n \"Name\": \"Django\",\n \"URL\": \"https://www.djangoproject.com/\",\n \"Version\": \"2.0.2\"\n },\n {\n \"Author\": \"Stuart Bishop\",\n \"License\": \"MIT\",\n \"Name\": \"pytz\",\n \"URL\": \"http://pythonhosted.org/pytz\",\n \"Version\": \"2017.3\"\n }\n ]\n\nCSV\n^^^\n\nWhen executed with the ``--format=csv`` option, you can output list in\nquoted CSV format. Useful when you want to copy/paste the output to an\nExcel sheet.\n\n.. code:: bash\n\n (venv) $ pip-licenses --format=csv\n \"Name\",\"Version\",\"License\"\n \"Django\",\"2.0.2\",\"BSD\"\n \"pytz\",\"2017.3\",\"MIT\"\n\nDeprecated options\n^^^^^^^^^^^^^^^^^^\n\nThe following options will be deprecated in version 2.0.0. Please\nmigrate to ``--format`` option.\n\n- ``--format-markdown``\n- ``--format-rst``\n- ``--format-confluence``\n- ``--format-html``\n- ``--format-json``\n\nOption: summary\n~~~~~~~~~~~~~~~\n\nWhen executed with the ``--summary`` option, you can output a summary of\neach license.\n\n.. code:: bash\n\n (venv) $ pip-licenses --summary --from=classifier --with-system\n Count License\n 2 BSD License\n 4 MIT License\n\n**Note:** When using this option, only ``--order=count`` or\n``--order=license`` has an effect for the ``--order`` option. And using\n``--with-authors`` and ``--with-urls`` will be ignored.\n\nMore Information\n~~~~~~~~~~~~~~~~\n\nOther, please make sure to execute the ``--help`` option.\n\nDockerfile\n----------\n\nYou can check the package license used by your app in the isolated\nDocker environment.\n\n.. code:: bash\n\n # Clone this repository to local\n $ git clone https://github.com/raimon49/pip-licenses.git\n $ cd pip-licenses\n\n # Create your app's requirements.txt file\n # Other ways, pip freeze > docker/requirements.txt\n $ echo \"Flask\" > docker/requirements.txt\n\n # Build docker image\n $ docker build . -t myapp-licenses\n\n # Check the package license in container\n $ docker run --rm myapp-licenses\n Name Version License\n Click 7.0 BSD License\n Flask 1.0.2 BSD License\n Jinja2 2.10 BSD License\n MarkupSafe 1.1.1 BSD License\n Werkzeug 0.15.2 BSD License\n itsdangerous 1.1.0 BSD License\n\n # Check with options\n $ docker run --rm myapp-licenses --summary\n Count License\n 4 BSD\n 2 BSD-3-Clause\n\n # When you need help\n $ docker run --rm myapp-licenses --help\n\n**Note:** This Docker image can not check package licenses with C and C\n++ Extensions. It only works with pure Python package dependencies.\n\nIf you want to resolve build environment issues, try adding\n``build-base`` packages and more.\n\n.. code:: diff\n\n --- a/Dockerfile\n +++ b/Dockerfile\n @@ -7,6 +7,8 @@ WORKDIR ${APPDIR}\n\n COPY ./docker/requirements.txt ${APPDIR}\n\n +RUN set -ex && apk add --no-cache --update --virtual .py-deps \\\n + build-base\n RUN python3 -m venv ${APPDIR}/myapp \\\n && source ${APPDIR}/myapp/bin/activate\n\nLicense\n-------\n\n`MIT\nLicense `__\n\nDependencies\n~~~~~~~~~~~~\n\n- `PTable `__ by Luke Maurits and\n maintainer of fork version Kane Blueriver under the BSD-3-Clause\n License\n\n``pip-licenses`` has been implemented in the policy to minimize the\ndependence on external package.\n\nUninstallation\n--------------\n\nUninstall package and dependent package with ``pip`` command.\n\n.. code:: bash\n\n $ pip uninstall pip-licenses PTable\n\nContributing\n------------\n\nSee `contribution\nguidelines `__.\n\n.. |Build Status| image:: https://travis-ci.org/raimon49/pip-licenses.svg?branch=master\n :target: https://travis-ci.org/raimon49/pip-licenses\n.. |PyPI - Python Version| image:: https://img.shields.io/pypi/pyversions/pip-licenses.svg\n :target: https://pypi.org/project/pip-licenses/\n.. |PyPI version| image:: https://badge.fury.io/py/pip-licenses.svg\n :target: https://badge.fury.io/py/pip-licenses\n.. |GitHub Release| image:: https://img.shields.io/github/release/raimon49/pip-licenses.svg\n :target: https://github.com/raimon49/pip-licenses/releases\n.. |Codecov| image:: https://codecov.io/gh/raimon49/pip-licenses/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/raimon49/pip-licenses\n.. |BSD License| image:: http://img.shields.io/badge/license-MIT-green.svg\n :target: https://github.com/raimon49/pip-licenses/blob/master/LICENSE\n.. |Requirements Status| image:: https://requires.io/github/raimon49/pip-licenses/requirements.svg?branch=master\n :target: https://requires.io/github/raimon49/pip-licenses/requirements/?branch=master\n\n\nCHANGELOG\n---------\n\n1.15.2\n~~~~~~\n\n- Read license file works well with Windows\n\n1.15.1\n~~~~~~\n\n- Skip parsing of license file for packages specified with\n ``--ignore-packages`` option\n\n1.15.0\n~~~~~~\n\n- Implement new option ``--format=csv``\n\n1.14.0\n~~~~~~\n\n- Implement new option ``--from=mixed`` as a mixed mode\n\n1.13.0\n~~~~~~\n\n- Implement new option ``--from=meta``, ``from=classifier``\n- Dropped support Python 3.4\n\n1.12.1\n~~~~~~\n\n- Fix bug\n\n - Change warning output to standard error\n\n1.12.0\n~~~~~~\n\n- Supports execution within Docker container\n- Warning of deprecated options\n- Fix bug\n\n - Ignore ``OSI Approved`` string with multiple licenses\n\n1.11.0\n~~~~~~\n\n- Implement new option ``--with-license-file``\n\n1.10.0\n~~~~~~\n\n- Implement new option ``--with-description``\n\n1.9.0\n~~~~~\n\n- Implement new option ``--summary``\n\n1.8.0\n~~~~~\n\n- Implement new option ``--format-json``\n- Dropped support Python 3.3\n\n1.7.1\n~~~~~\n\n- Fix bug\n\n - Support pip 10.x\n\n1.7.0\n~~~~~\n\n- Implement new option ``--format-confluence``\n\n1.6.1\n~~~~~\n\n- Fix bug\n\n - Support display multiple license with ``--from-classifier`` option\n\n- Improve document\n\n - Add section of 'Uninstallation' in README\n\n1.6.0\n~~~~~\n\n- Implement new option ``--format-html``\n\n1.5.0\n~~~~~\n\n- Implement new option ``--format-rst``\n\n1.4.0\n~~~~~\n\n- Implement new option ``--format-markdown``\n- Include LICENSE file in distribution package\n\n1.3.0\n~~~~~\n\n- Implement new option ``--ignore-packages``\n\n1.2.0\n~~~~~\n\n- Implement new option ``--from-classifier``\n\n1.1.0\n~~~~~\n\n- Improve document\n\n - Add ToC to README document\n - Add a information of dependencies\n\n1.0.0\n~~~~~\n\n- First stable release version\n\n0.2.0\n~~~~~\n\n- Implement new option ``--order``\n\n - Default behavior is ``--order=name``\n\n0.1.0\n~~~~~\n\n- First implementation version\n\n - Support options\n\n - ``--with-system``\n - ``--with-authors``\n - ``--with-urls``\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/raimon49/pip-licenses", "keywords": "pip pypi package license check", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "pip-licenses", "package_url": "https://pypi.org/project/pip-licenses/", "platform": "", "project_url": "https://pypi.org/project/pip-licenses/", "project_urls": { "Homepage": "https://github.com/raimon49/pip-licenses" }, "release_url": "https://pypi.org/project/pip-licenses/1.15.2/", "requires_dist": [ "PTable", "pytest-cov ; extra == 'test'", "pytest-pycodestyle ; extra == 'test'", "pytest-runner ; extra == 'test'" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "summary": "Dump the software license list of Python packages installed with pip.", "version": "1.15.2" }, "last_serial": 5583606, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "2b57157e812413b5741a26c7f24b0766", "sha256": "9153be72f9089bd95300356dc81f5929ec56accefd769ab6501562c350c223b3" }, "downloads": -1, "filename": "pip_licenses-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b57157e812413b5741a26c7f24b0766", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4779, "upload_time": "2018-02-05T02:55:52", "url": "https://files.pythonhosted.org/packages/58/87/d3eedfa84630b23f3c891f114832c9ff8f1d3e6d56a5696876c8add70a25/pip_licenses-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f97448910d7b214cbf5d23963894373", "sha256": "69c4e8b6efea477748eaa67f1c9f5470faeb4883c6596aa9079f4255fccef84a" }, "downloads": -1, "filename": "pip-licenses-0.1.0.tar.gz", "has_sig": false, "md5_digest": "8f97448910d7b214cbf5d23963894373", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3490, "upload_time": "2018-02-05T02:55:54", "url": "https://files.pythonhosted.org/packages/14/8f/1ff2588882b85c460ef04fbee26cb5b96806a58ffe1bd6889bf192bccfa4/pip-licenses-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "cf36c05451b6b2028e070be61efc7d72", "sha256": "7ea7037c40b02f00a1a7841c95e036c77809882b5fd3ac1ad9daaafdc0aab7df" }, "downloads": -1, "filename": "pip_licenses-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf36c05451b6b2028e070be61efc7d72", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5022, "upload_time": "2018-02-05T03:40:58", "url": "https://files.pythonhosted.org/packages/e9/75/d4972eaeafa65acb5576b24663d44db251aa50e14deab62f1356e23ec01c/pip_licenses-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2877aef65f6de9eb0c6a8418c2ab4fbf", "sha256": "e7e7fc62b938c066eb0d4c06beeddb232b8d330412b6342c23cee335df06671d" }, "downloads": -1, "filename": "pip-licenses-0.2.0.tar.gz", "has_sig": false, "md5_digest": "2877aef65f6de9eb0c6a8418c2ab4fbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3696, "upload_time": "2018-02-05T03:40:59", "url": "https://files.pythonhosted.org/packages/d3/a9/2e4000e3744487273581a736bf5e3991c6071ba0d683d00a876ee95dcd45/pip-licenses-0.2.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "a946ad503a647554ecf2864534b738be", "sha256": "a6319966ee533be9be77ec465ee588657998ef62a39eaddb9626c0dc6d2f41bd" }, "downloads": -1, "filename": "pip_licenses-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a946ad503a647554ecf2864534b738be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7217, "upload_time": "2018-02-05T10:11:27", "url": "https://files.pythonhosted.org/packages/1e/6a/6309099ef595bf3e4027222668870a06dc2923ff0679213df7444e799fb8/pip_licenses-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5283722511cce5f99b683b1eca46429c", "sha256": "70f08a074e38683c0b9f0df16beca16a3f9f66f2e5754b0c45a32d149355e294" }, "downloads": -1, "filename": "pip-licenses-1.0.0.tar.gz", "has_sig": false, "md5_digest": "5283722511cce5f99b683b1eca46429c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5225, "upload_time": "2018-02-05T10:11:29", "url": "https://files.pythonhosted.org/packages/0f/d2/e23a2d4bd8499513a875d695273dc5006e670eaa7be2ed0400bbb1dc4ce6/pip-licenses-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "1c8b1de3d2be2953af4584d41569b65c", "sha256": "093dc2dc9083aa2911055390e8e03579bb7390b5b9cb382ceb8e7bcdd12ecec0" }, "downloads": -1, "filename": "pip_licenses-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c8b1de3d2be2953af4584d41569b65c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7730, "upload_time": "2018-02-06T02:18:54", "url": "https://files.pythonhosted.org/packages/30/49/c97bec2e1ccf0cf79662e9ae5e460171ad24ad7933049c524d06c992c8d4/pip_licenses-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6a1957f6fa05fc928001d61ea5cec66", "sha256": "7eb161728efba647862d930cca7b3fd932a466d39f88321b69b15b2133636280" }, "downloads": -1, "filename": "pip-licenses-1.1.0.tar.gz", "has_sig": false, "md5_digest": "d6a1957f6fa05fc928001d61ea5cec66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5634, "upload_time": "2018-02-06T02:18:56", "url": "https://files.pythonhosted.org/packages/bf/fd/5def61625791556c1e1ac11d97a68d6ab759e5fdef3e41ad1563b2c347c9/pip-licenses-1.1.0.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "25b32582b8324631690a3a165638c9ad", "sha256": "440feae58056ccf11f907219161adeacde1905978af11aadcbbd79952015e8a2" }, "downloads": -1, "filename": "pip_licenses-1.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25b32582b8324631690a3a165638c9ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 8893, "upload_time": "2018-12-23T14:15:45", "url": "https://files.pythonhosted.org/packages/86/bb/9846b870412fdae771e7ef4494a3fe196304eff5a58d2a0dfde73b3de987/pip_licenses-1.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63e70302682b56f492fb88dffc21bbd6", "sha256": "acef5113f12296563a0b1cd880922d8d5679497b509409a01fe643b230fa02c4" }, "downloads": -1, "filename": "pip-licenses-1.10.0.tar.gz", "has_sig": false, "md5_digest": "63e70302682b56f492fb88dffc21bbd6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 9903, "upload_time": "2018-12-23T14:15:47", "url": "https://files.pythonhosted.org/packages/4a/d5/bf97e08e1744ef3fd76bcba3199f4a9f913e8e3343fa398da17cdc92b635/pip-licenses-1.10.0.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "a7ca5cb0c3f733fb81b296a4b391a4de", "sha256": "7f82993e65d53da44ff4f980fd33b24ec1a5ed6f2279490cc8be61017e6b4847" }, "downloads": -1, "filename": "pip_licenses-1.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a7ca5cb0c3f733fb81b296a4b391a4de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 9582, "upload_time": "2019-02-18T11:45:39", "url": "https://files.pythonhosted.org/packages/83/b5/d569cb9fe7466cc4ed48978f460c00aecb3992499f480a5d60b3284ef51e/pip_licenses-1.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c0acf7d7ec144eae7c072712ce1dc86", "sha256": "49899005d4b386b6e41628ee8dfc8ce67d118af01b676b7bfd27da43488d9426" }, "downloads": -1, "filename": "pip-licenses-1.11.0.tar.gz", "has_sig": false, "md5_digest": "5c0acf7d7ec144eae7c072712ce1dc86", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 10666, "upload_time": "2019-02-18T11:45:41", "url": "https://files.pythonhosted.org/packages/19/b6/0b51c047ef05a7efa3bdd82baaed935add7155fc9dfd49f4cfd9df449c12/pip-licenses-1.11.0.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "d5b16847758a419bc2da1b24d5fb3493", "sha256": "6c97e5e5cc9cea9f83b2e4166feb90172887dc07712d045229a0748ea21ee30c" }, "downloads": -1, "filename": "pip_licenses-1.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d5b16847758a419bc2da1b24d5fb3493", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 11054, "upload_time": "2019-02-27T16:56:26", "url": "https://files.pythonhosted.org/packages/72/72/9a027045ce9fd85c6f8da8996b557aff15e687dd1d933e82c75b56e37249/pip_licenses-1.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3150d213f24df348d69bbae0bbe23b9", "sha256": "fe751ed8d0b6cfd0e6c4b9aa75c71d65cc369fe821bbbf9281bfa3043915cb1f" }, "downloads": -1, "filename": "pip-licenses-1.12.0.tar.gz", "has_sig": false, "md5_digest": "d3150d213f24df348d69bbae0bbe23b9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 12409, "upload_time": "2019-02-27T16:56:27", "url": "https://files.pythonhosted.org/packages/e9/b2/4d770e9649861b979e7ca1003634fca02d4d4fe86be87a7199e97c9642d8/pip-licenses-1.12.0.tar.gz" } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "025dcac70e8f9f81919194ef0937e0a7", "sha256": "252839b31bf43321583e6c779a393875a11686b3b34766a3104572267846c339" }, "downloads": -1, "filename": "pip_licenses-1.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "025dcac70e8f9f81919194ef0937e0a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 11090, "upload_time": "2019-03-07T12:29:20", "url": "https://files.pythonhosted.org/packages/97/93/2998562907af1bf85c9ec3fb6b90fac37e90bd2596ecf515cb085fd6eb5e/pip_licenses-1.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3331a7c0833ed7c641b34fa202fe0068", "sha256": "47c46b015c6362469b102f2973e2399bac10d9dc2fca284363aee50dbcbbc255" }, "downloads": -1, "filename": "pip-licenses-1.12.1.tar.gz", "has_sig": false, "md5_digest": "3331a7c0833ed7c641b34fa202fe0068", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 12464, "upload_time": "2019-03-07T12:29:22", "url": "https://files.pythonhosted.org/packages/db/56/b2bf6e14c7cc0758ff0e61116ee3b86639001a651123fe6d7e23fd465f99/pip-licenses-1.12.1.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "67f47c5ec6f86cb22bd0b8d7ba004fd0", "sha256": "9f61236bbc2d7f4d27437049d97d8fcdcbcb4733d9da36f1076ba9e787433a5c" }, "downloads": -1, "filename": "pip_licenses-1.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "67f47c5ec6f86cb22bd0b8d7ba004fd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 11592, "upload_time": "2019-05-06T02:07:55", "url": "https://files.pythonhosted.org/packages/0c/7d/abd2028c0cfb48a7d71da5f7e83ef77de0344ebaf0c222e24b880b87a456/pip_licenses-1.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d02d9714e07569f005471e7b50f5f398", "sha256": "00aeaf964384bbadd32aeaed50ffa64ea4e6e0ae9030fa3c808384a8729d5532" }, "downloads": -1, "filename": "pip-licenses-1.13.0.tar.gz", "has_sig": false, "md5_digest": "d02d9714e07569f005471e7b50f5f398", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 13140, "upload_time": "2019-05-06T02:07:57", "url": "https://files.pythonhosted.org/packages/cc/ca/f4b09392e29fdca18fde10ebb5510c92b31ec1c8b2924a8f01bb3781d3d5/pip-licenses-1.13.0.tar.gz" } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "679f66f7fa9e1423f1e1c2c3fbc68d1c", "sha256": "101f80f54b1f06e31f681cbefbf092abe9825d16b9d2a19c806c962b694a667f" }, "downloads": -1, "filename": "pip_licenses-1.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "679f66f7fa9e1423f1e1c2c3fbc68d1c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 12050, "upload_time": "2019-05-10T01:37:03", "url": "https://files.pythonhosted.org/packages/19/12/acb7d2b10d4a78e39e27ad1c44fad62eefc99c4238fd181fac8e393e802e/pip_licenses-1.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40688d52f83bd222d75e5966cc4f5d0a", "sha256": "bff0c2d42217196a94dc8b0dc34d099944b0c8ea05461a2dc5ab5fe37e161040" }, "downloads": -1, "filename": "pip-licenses-1.14.0.tar.gz", "has_sig": false, "md5_digest": "40688d52f83bd222d75e5966cc4f5d0a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 13531, "upload_time": "2019-05-10T01:37:05", "url": "https://files.pythonhosted.org/packages/8b/8b/7a1a7886c0ddc8b01a12f8e2c11983c7ff090a49fe16ecd08238c6d296b0/pip-licenses-1.14.0.tar.gz" } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "2849d7cfe075d4630f60c8484838fa61", "sha256": "fdd6239c8d7662f452952c13abbf1fca6f4c940333b6448bc9886a323aa6ebc3" }, "downloads": -1, "filename": "pip_licenses-1.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2849d7cfe075d4630f60c8484838fa61", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 12381, "upload_time": "2019-05-11T03:57:09", "url": "https://files.pythonhosted.org/packages/8f/d9/371a29a0672407a9a4dade3d41b2edec0e25aba2a31fcf3d89877247c397/pip_licenses-1.15.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1447cf16d496cda236e8c141c62ee015", "sha256": "31d1d32f127e942bfc8fb0574513eccec068d1f3bdc1097fc2c691b788638fe8" }, "downloads": -1, "filename": "pip-licenses-1.15.0.tar.gz", "has_sig": false, "md5_digest": "1447cf16d496cda236e8c141c62ee015", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 14493, "upload_time": "2019-05-11T03:57:11", "url": "https://files.pythonhosted.org/packages/31/63/a92029a46f1ea18307e0793de6a72f1714eebeb11c8b8f86cc532168bb8c/pip-licenses-1.15.0.tar.gz" } ], "1.15.1": [ { "comment_text": "", "digests": { "md5": "4749eea1e6fe60b9b791a88e955ca9e3", "sha256": "e046203f789492875a8b3a846bb62046f43befbb1659e7083de5d232c3973bd7" }, "downloads": -1, "filename": "pip_licenses-1.15.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4749eea1e6fe60b9b791a88e955ca9e3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 12272, "upload_time": "2019-07-24T11:38:03", "url": "https://files.pythonhosted.org/packages/73/88/eff283111adfa1fa96ddeec9b4828f1dbf238d0749cb302c0e0334a76b43/pip_licenses-1.15.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ce0541be0a6d526a903a556ec80d5ee", "sha256": "8d591487f82cd39a59b7657240d4475c1adfb635bef59cdbff5126d540011e39" }, "downloads": -1, "filename": "pip-licenses-1.15.1.tar.gz", "has_sig": false, "md5_digest": "2ce0541be0a6d526a903a556ec80d5ee", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 14548, "upload_time": "2019-07-24T11:38:05", "url": "https://files.pythonhosted.org/packages/e7/89/f3397b87e5ae90e55d25ef89bb2b0261686a5cc1bbeb890cac6162abcb61/pip-licenses-1.15.1.tar.gz" } ], "1.15.2": [ { "comment_text": "", "digests": { "md5": "5a89f91a6ae638dcd73a2a3132973b9d", "sha256": "05dbcc67b2873c069a93ddea356ecf6cf3ce15da451f687c72cf1f0282ad1eac" }, "downloads": -1, "filename": "pip_licenses-1.15.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a89f91a6ae638dcd73a2a3132973b9d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 12320, "upload_time": "2019-07-25T14:45:21", "url": "https://files.pythonhosted.org/packages/fd/95/b4d2c7d785362d31daebd138117dd4782b1ac7b17508c2daed8455cb0c09/pip_licenses-1.15.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7b717dbfe88d3af599a94052f2c1d5a", "sha256": "620a1f87067837573df2174841444e7fc0978971d5c38e6dbc7da108999cc13c" }, "downloads": -1, "filename": "pip-licenses-1.15.2.tar.gz", "has_sig": false, "md5_digest": "b7b717dbfe88d3af599a94052f2c1d5a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 14650, "upload_time": "2019-07-25T14:45:23", "url": "https://files.pythonhosted.org/packages/b0/41/97f480c0a56eb3f193e2f09d996fc882acc5c15fbe2cdcfa34e52630cd24/pip-licenses-1.15.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "06b81a0b7972caba2f6cde1d9cb8343e", "sha256": "28eec1f567580dc73c3a296b1f1caac1f3323d498e9f7dfdd3c612328218bf54" }, "downloads": -1, "filename": "pip_licenses-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06b81a0b7972caba2f6cde1d9cb8343e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8387, "upload_time": "2018-02-07T06:26:39", "url": "https://files.pythonhosted.org/packages/1d/61/0b283202096710aa7e07ec48c419467ed8cf14a22e70fc7c3f7a4928b2bf/pip_licenses-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf40aa1920ce0511fe375e5a7bfc2da0", "sha256": "58a33fc726217794606703333cd1a896923def17588ba324f89bfd5466ff37c2" }, "downloads": -1, "filename": "pip-licenses-1.2.0.tar.gz", "has_sig": false, "md5_digest": "bf40aa1920ce0511fe375e5a7bfc2da0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6147, "upload_time": "2018-02-07T06:26:40", "url": "https://files.pythonhosted.org/packages/76/5e/ecf6d8456ee6e4b1378c41e6fae4346b768487463241ea68ef2fb680c271/pip-licenses-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "64e78dbcb252d641293265f9b4317224", "sha256": "598159a03777ab997b4b92772cd2783a0def7f7517b12f1c5fd6e309c98c0a96" }, "downloads": -1, "filename": "pip_licenses-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "64e78dbcb252d641293265f9b4317224", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8845, "upload_time": "2018-02-09T07:36:12", "url": "https://files.pythonhosted.org/packages/6b/1f/f42583fabd52199f00bc798eeaefcb453049c1030180ccf55426bbfe6913/pip_licenses-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56ad87eca35964568aee2c52220184cf", "sha256": "96d5e38ac6a6f7728690896d7910eda1fd2e0d8dfc7e8d8d7c36f5207c6b0b4e" }, "downloads": -1, "filename": "pip-licenses-1.3.0.tar.gz", "has_sig": false, "md5_digest": "56ad87eca35964568aee2c52220184cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6540, "upload_time": "2018-02-09T07:36:13", "url": "https://files.pythonhosted.org/packages/67/5f/298e61522cffd543561c41a910106dc2b2b4e287bf463f7cb2bae7438bdf/pip-licenses-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "756379814c8e9e819a4def21b007c2e3", "sha256": "bac1c1f5ec90a601dfee547806906c27bb881626630d6836976a0b451815baf2" }, "downloads": -1, "filename": "pip_licenses-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "756379814c8e9e819a4def21b007c2e3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9365, "upload_time": "2018-02-09T08:43:56", "url": "https://files.pythonhosted.org/packages/3a/69/902d5b15ebfb583731bc766e51f8d737e146086318663e38ac99f52d4f14/pip_licenses-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1a484c481c103d67237516b66ef6d077", "sha256": "d9e77f95ad2f2a2bca226c36cc5a11e40dd0d4b8e8b58e51c8717cb9274f9f58" }, "downloads": -1, "filename": "pip-licenses-1.4.0.tar.gz", "has_sig": false, "md5_digest": "1a484c481c103d67237516b66ef6d077", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7202, "upload_time": "2018-02-09T08:43:58", "url": "https://files.pythonhosted.org/packages/ca/61/b7c9e696baf09b0d1113e805866ee5e8a29cd4fc89ea576af64a4ad41da5/pip-licenses-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "437674b19d567ee47989cffb81832c5f", "sha256": "e2cbe45ea4450b1acfca6bc89db9e89b79f778c2a8af8d6ce82ec698756224e5" }, "downloads": -1, "filename": "pip_licenses-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "437674b19d567ee47989cffb81832c5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9745, "upload_time": "2018-02-10T09:24:01", "url": "https://files.pythonhosted.org/packages/e2/09/2883ebcf6f3971eb38f614a33de9b2590da26fd47e43e9bdb39143a1b44d/pip_licenses-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10b125243f68155e9b175068e67fb9ff", "sha256": "4a3240d011387d5b8b4279c1a25559c3ab9720930883b0abf5e1ea3efd32d03c" }, "downloads": -1, "filename": "pip-licenses-1.5.0.tar.gz", "has_sig": false, "md5_digest": "10b125243f68155e9b175068e67fb9ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7476, "upload_time": "2018-02-10T09:24:03", "url": "https://files.pythonhosted.org/packages/bb/ab/e65edc75d05fa5989047f09474a72cbe12544c95594ebd06e709ad157364/pip-licenses-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "84b53625b7cc71288fd8128d26c4f661", "sha256": "bad9207f5522089ef41a8814f9c858b28c250effc9143a09880f91fa8645ebad" }, "downloads": -1, "filename": "pip_licenses-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "84b53625b7cc71288fd8128d26c4f661", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10035, "upload_time": "2018-02-11T10:10:59", "url": "https://files.pythonhosted.org/packages/ad/44/d80f335e7b9f784f8e3d9fb0ec435fc3a52d4b9128245dfd01f6391be406/pip_licenses-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "214cb4a3c8a296419c6f4a1497b85e28", "sha256": "d43e5b2f19971781c36a77810375b06f53aba1653d2bbb01a2ae2ba797cd52ba" }, "downloads": -1, "filename": "pip-licenses-1.6.0.tar.gz", "has_sig": false, "md5_digest": "214cb4a3c8a296419c6f4a1497b85e28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7794, "upload_time": "2018-02-11T10:11:01", "url": "https://files.pythonhosted.org/packages/69/06/b7371e938e0d2d27652e3026a17dc21298e1d7d60bba69380e6166f2ad38/pip-licenses-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "ad33aafef63e8935331075e6edae8f1d", "sha256": "a3025df4c373c5e1f6095cd899736cffa514e8fe4e7e9f569968a5a19f0c11fd" }, "downloads": -1, "filename": "pip_licenses-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ad33aafef63e8935331075e6edae8f1d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10265, "upload_time": "2018-03-05T10:10:46", "url": "https://files.pythonhosted.org/packages/89/1f/2a0161cb26687df0da96098f0e2159fa9c095995c4e863c9e36a3cc2402f/pip_licenses-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "494926f6bdbcf472134d61925de8f60f", "sha256": "5f2c0174e6efcb9df88ea690713b8e8621aa34ecb1e3fee2e512b132ca0c36ee" }, "downloads": -1, "filename": "pip-licenses-1.6.1.tar.gz", "has_sig": false, "md5_digest": "494926f6bdbcf472134d61925de8f60f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7983, "upload_time": "2018-03-05T10:10:48", "url": "https://files.pythonhosted.org/packages/6d/07/6a0f9649c87662d67a9bcbd871e8d23b645d37bee486a5158d778312a7b0/pip-licenses-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "aaf159d9febaa35d95e68ec7ae89a6a1", "sha256": "c05e48e653322d2de7f1ef40a31fbd434b463eab598a044793dd081179c6aec3" }, "downloads": -1, "filename": "pip_licenses-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aaf159d9febaa35d95e68ec7ae89a6a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10763, "upload_time": "2018-03-19T07:39:28", "url": "https://files.pythonhosted.org/packages/3f/3c/06512e693e9aa22877a0dd51ac8656a742e14708b0486e1d446feec71e25/pip_licenses-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6927ef6394d1e8423d513bb569df2a5b", "sha256": "77ae0cbe3aaa6711a715100b7615367781c5265a2ab9c6e223d0f9057fcfbe1d" }, "downloads": -1, "filename": "pip-licenses-1.7.0.tar.gz", "has_sig": false, "md5_digest": "6927ef6394d1e8423d513bb569df2a5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8416, "upload_time": "2018-03-19T07:39:30", "url": "https://files.pythonhosted.org/packages/0b/c4/b1aa4146c325a1f494e9e97b65a82ca5afef36ea4495fa2b55955b21a310/pip-licenses-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "005ba43302513be403e3ac70adba2fd8", "sha256": "61f0fb880648c67ce4193d47165fd07ef6fd3c1e40e2da74b5cf411edd6228e5" }, "downloads": -1, "filename": "pip_licenses-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "005ba43302513be403e3ac70adba2fd8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7004, "upload_time": "2018-04-19T15:40:59", "url": "https://files.pythonhosted.org/packages/ec/2f/d57ab3b387095c1f221271d8b74cc29bd72390c5f7a8a5375d530781c2c3/pip_licenses-1.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ed2b743e8725e088ae417ed0a00341f", "sha256": "f2658fe65a5837d3fa63cca5cc7a55f6268c4a832ccfb18a72fa0076d1877090" }, "downloads": -1, "filename": "pip-licenses-1.7.1.tar.gz", "has_sig": false, "md5_digest": "2ed2b743e8725e088ae417ed0a00341f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8483, "upload_time": "2018-04-19T15:41:00", "url": "https://files.pythonhosted.org/packages/11/4c/a3e588ff53fde5112df643bad91d37ffc2e02c7e4ee421861b29acd01684/pip-licenses-1.7.1.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "e3e27d4f8a995521ac347504fe5f2e45", "sha256": "a092b5c0be0a405fbc860a35cae0e1a6d63a11180f3c5665e60af81f517da590" }, "downloads": -1, "filename": "pip_licenses-1.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3e27d4f8a995521ac347504fe5f2e45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 8364, "upload_time": "2018-10-12T14:38:30", "url": "https://files.pythonhosted.org/packages/ef/2b/597827d5a9ffcc06a7f0b721cc07d9864269f4a972b96e976176a3465d30/pip_licenses-1.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3eccadda2cf237b63a70ced9802000e", "sha256": "5a05534f15b44fdbf93ae12b879d59b5c16c7cff1f10a589547114ab72b0efca" }, "downloads": -1, "filename": "pip-licenses-1.8.0.tar.gz", "has_sig": false, "md5_digest": "e3eccadda2cf237b63a70ced9802000e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 9104, "upload_time": "2018-10-12T14:38:31", "url": "https://files.pythonhosted.org/packages/c9/0f/847f97d79e36e8daa8e631047f8128f7da10b13e1d570586ceb78bc888e9/pip-licenses-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "d4389973c916c63c4d7fce69ab5ccd2a", "sha256": "5331544561ab190b95cb4f09c78d1ba2c3f3360885c5a217aa78ccdbc9770b1d" }, "downloads": -1, "filename": "pip_licenses-1.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d4389973c916c63c4d7fce69ab5ccd2a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 8691, "upload_time": "2018-11-16T15:31:58", "url": "https://files.pythonhosted.org/packages/da/f3/faa608d9cd9c503133f648568e7ddadc70eb85d51240ae0d22b9e17574bf/pip_licenses-1.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "041dfb7a18a152b373b54220390830bc", "sha256": "de82dc28114dfcffd0e52a3ee41db2c465b2bd7a8bc51b4dfd19fd66c01c36cc" }, "downloads": -1, "filename": "pip-licenses-1.9.0.tar.gz", "has_sig": false, "md5_digest": "041dfb7a18a152b373b54220390830bc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 9571, "upload_time": "2018-11-16T15:32:00", "url": "https://files.pythonhosted.org/packages/24/f5/18493b1eb8ab4863e68ae2ee6b37dc2f1f34253fce6b6e1610c986e6864d/pip-licenses-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5a89f91a6ae638dcd73a2a3132973b9d", "sha256": "05dbcc67b2873c069a93ddea356ecf6cf3ce15da451f687c72cf1f0282ad1eac" }, "downloads": -1, "filename": "pip_licenses-1.15.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a89f91a6ae638dcd73a2a3132973b9d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 12320, "upload_time": "2019-07-25T14:45:21", "url": "https://files.pythonhosted.org/packages/fd/95/b4d2c7d785362d31daebd138117dd4782b1ac7b17508c2daed8455cb0c09/pip_licenses-1.15.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7b717dbfe88d3af599a94052f2c1d5a", "sha256": "620a1f87067837573df2174841444e7fc0978971d5c38e6dbc7da108999cc13c" }, "downloads": -1, "filename": "pip-licenses-1.15.2.tar.gz", "has_sig": false, "md5_digest": "b7b717dbfe88d3af599a94052f2c1d5a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 14650, "upload_time": "2019-07-25T14:45:23", "url": "https://files.pythonhosted.org/packages/b0/41/97f480c0a56eb3f193e2f09d996fc882acc5c15fbe2cdcfa34e52630cd24/pip-licenses-1.15.2.tar.gz" } ] }