requirementslib


Namerequirementslib JSON
Version 3.0.0 PyPI version JSON
download
home_pagehttps://github.com/sarugaku/requirementslib
SummaryA tool for converting between pip-style and pipfile requirements.
upload_time2023-06-18 11:42:43
maintainerFrost Ming
docs_urlNone
authorDan Ryan
requires_python>=3.7
licenseMIT
keywords pipfile requirements.txt pip requirementslib pipenv lockfile dependency resolver resolver dependencies
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            RequirementsLib: Requirement Management Library for Pip and Pipenv

.. image:: https://img.shields.io/pypi/v/requirementslib.svg
    :target: https://pypi.org/project/requirementslib

.. image:: https://img.shields.io/pypi/l/requirementslib.svg
    :target: https://pypi.org/project/requirementslib

.. image:: https://github.com/sarugaku/requirementslib/actions/workflows/ci.yml/badge.svg
    :target: https://github.com/sarugaku/requirementslib/actions/workflows/ci.yml

.. image:: https://img.shields.io/pypi/pyversions/requirementslib.svg
    :target: https://pypi.org/project/requirementslib

.. image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg
    :target: https://saythanks.io/to/techalchemy

.. image:: https://readthedocs.org/projects/requirementslib/badge/?version=master
    :target: http://requirementslib.readthedocs.io/en/master/?badge=master
    :alt: Documentation Status

🐉 Installation
==================

Install from `PyPI`_:

.. code:: console

    $ pipenv install requirementslib

Install from `Github`_:

.. code:: console

    $ pipenv install -e git+https://github.com/sarugaku/requirementslib.git#egg=requirementslib


.. _PyPI: https://www.pypi.org/project/requirementslib
.. _Github: https://github.com/sarugaku/requirementslib


.. _`Summary`:

🐉 Summary
============

RequirementsLib provides a simple layer for building and interacting with
requirements in both the `Pipfile <https://github.com/pypa/pipfile/>`_ format
and the `requirements.txt <https://github.com/pypa/pip/>`_ format.  This library
was originally built for converting between these formats in `Pipenv <https://github.com/pypa/pipenv>`_.

.. _`Usage`:

🐉 Usage
=========

Importing a lockfile into your *setup.py* file
-----------------------------------------------------

You can use RequirementsLib to import your lockfile into your setup file for including your
**install_requires** dependencies:

.. code-block:: pycon

    from requirementslib import Lockfile
    lockfile = Lockfile.create('/path/to/project/dir')
    install_requires = lockfile.as_requirements(dev=False)


Interacting with a *Pipfile* directly
-------------------------------------------

You can also interact directly with a Pipfile:

.. code-block:: pycon

    >>> from requirementslib import Pipfile
    >>> pf = Pipfile.load('/home/hawk/git/pypa-pipenv')
    >>> pf.sections
    [Section(name='packages', requirements=[]), Section(name='dev-packages', requirements=[Requirement(name='pipenv', vcs=None, req=FileRequirement(setup_path=None, path='.', editable=True, uri='file:///home/hawk/git/pypa-pipenv', link=<Link file:///home/hawk/git/pypa-pipenv>, name='pipenv', req=<Requirement: "-e file:///home/hawk/git/pypa-pipenv">), markers='', specifiers=None, index=None, editable=True, hashes=[], extras=None),...]


And you can even write it back out into Pipfile's native format:

.. code-block:: pycon

    >>> print(pf.dump(to_dict=False))
    [packages]

    [dev-packages]
    pipenv = {path = ".", editable = true}
    flake8 = ">=3.3.0,<4"
    pytest = "*"
    mock = "*"

    [scripts]
    tests = "bash ./run-tests.sh"

    [pipenv]
    allow_prereleases = true


Create a requirement object from *requirements.txt* format
------------------------------------------------------------------

.. code-block:: pycon

    >>> from requirementslib import Requirement
    >>> r = Requirement.from_line('-e git+https://github.com/pypa/pipenv.git@master#egg=pipenv')
    >>> print(r)
    Requirement(name='pipenv', vcs='git', req=VCSRequirement(editable=True, uri='git+https://github.com/pypa/pipenv.git', path=None, vcs='git', ref='master', subdirectory=None, name='pipenv', link=<Link git+https://github.com/pypa/pipenv.git@master#egg=pipenv>, req=<Requirement: "-e git+https://github.com/pypa/pipenv.git@master#egg=pipenv">), markers=None, specifiers=None, index=None, editable=True, hashes=[], extras=[])

    >>> r.as_pipfile()
    {'pipenv': {'editable': True, 'ref': 'master', 'git': 'https://github.com/pypa/pipenv.git'}}


Or move from *Pipfile* format to *requirements.txt*:

.. code-block:: pycon

    >>> r = Requirement.from_pipfile(name='pythonfinder', indexes=[], pipfile={'path': '../pythonfinder', 'editable': True})
    >>> r.as_line()
    '-e ../pythonfinder'


Resolving Editable Package Dependencies
---------------------------------------------

Requirementslib also can resolve the dependencies of editable packages by calling the ``run_requires`` method.
This method returns a detailed dictionary containing metadata parsed from the package built in
a transient folder (unless it is already on the system or the call is run in a virtualenv).

The output of ``run_requires`` is very detailed and in most cases will be sufficient:

.. code-block:: pycon

    >>> from pprint import pprint
    >>> from requirementslib.models.requirements import Requirement
    >>> r = Requirement.from_line("-e git+git@github.com:sarugaku/vistir.git#egg=vistir[spinner]")
    >>> setup_info_dict = r.run_requires()
    >>> from pprint import pprint
    >>> pprint(setup_info_dict)
    {'base_dir': '/tmp/requirementslib-t_ftl6no-src/src/vistir',
    'build_backend': 'setuptools.build_meta',
    'build_requires': ['setuptools>=36.2.2', 'wheel>=0.28.0'],
    'extra_kwargs': {'build_dir': '/tmp/requirementslib-t_ftl6no-src/src',
                    'download_dir': '/home/hawk/.cache/pipenv/pkgs',
                    'src_dir': '/tmp/requirementslib-t_ftl6no-src/src',
                    'wheel_download_dir': '/home/hawk/.cache/pipenv/wheels'},
    'extras': {'spinner': [Requirement.parse('cursor'),
                            Requirement.parse('yaspin')],
                'tests': [Requirement.parse('pytest'),
                        Requirement.parse('pytest-xdist'),
                        Requirement.parse('pytest-cov'),
                        Requirement.parse('pytest-timeout'),
                        Requirement.parse('hypothesis-fspaths'),
                        Requirement.parse('hypothesis')]},
    'ireq': <InstallRequirement object: vistir[spinner] from git+ssh://git@github.com/sarugaku/vistir.git#egg=vistir editable=True>,
    'name': 'vistir',
    'pyproject': PosixPath('/tmp/requirementslib-t_ftl6no-src/src/vistir/pyproject.toml'),
    'python_requires': '>=2.6,!=3.0,!=3.1,!=3.2,!=3.3',
    'requires': {'backports.functools_lru_cache;python_version<="3.4"': Requirement.parse('backports.functools_lru_cache; python_version <= "3.4"'),
                'backports.shutil_get_terminal_size;python_version<"3.3"': Requirement.parse('backports.shutil_get_terminal_size; python_version < "3.3"'),
                'backports.weakref;python_version<"3.3"': Requirement.parse('backports.weakref; python_version < "3.3"'),
                'colorama': Requirement.parse('colorama'),
                'pathlib2;python_version<"3.5"': Requirement.parse('pathlib2; python_version < "3.5"'),
                'requests': Requirement.parse('requests'),
                'six': Requirement.parse('six'),
                'spinner': [Requirement.parse('cursor'),
                            Requirement.parse('yaspin')]},
    'setup_cfg': PosixPath('/tmp/requirementslib-t_ftl6no-src/src/vistir/setup.cfg'),
    'setup_py': PosixPath('/tmp/requirementslib-t_ftl6no-src/src/vistir/setup.py')}


As a side-effect of calls to ``run_requires``, new metadata is made available on the
requirement itself via the property ``requirement.req.dependencies``:


.. code-block:: pycon

    >>> pprint(r.req.dependencies)
    ({'backports.functools_lru_cache;python_version<="3.4"': Requirement.parse('backports.functools_lru_cache; python_version <= "3.4"'),
    'backports.shutil_get_terminal_size;python_version<"3.3"': Requirement.parse('backports.shutil_get_terminal_size; python_version < "3.3"'),
    'backports.weakref;python_version<"3.3"': Requirement.parse('backports.weakref; python_version < "3.3"'),
    'colorama': Requirement.parse('colorama'),
    'pathlib2;python_version<"3.5"': Requirement.parse('pathlib2; python_version < "3.5"'),
    'requests': Requirement.parse('requests'),
    'six': Requirement.parse('six'),
    'spinner': [Requirement.parse('cursor'), Requirement.parse('yaspin')]},
    [],
    ['setuptools>=36.2.2', 'wheel>=0.28.0'])


🐉 Integrations
==================

* `Pip <https://github.com/pypa/pip>`_
* `Pipenv <https://github.com/pypa/pipenv>`_
* `Pipfile`_

🐉 Contributing
===============

1. Fork the repository and clone the fork to your local machine: ``git clone git@github.com:yourusername/requirementslib.git``

2. Move into the repository directory and update the submodules: ``git submodule update --init --recursive``

3. Install the package locally in a virtualenv using `pipenv <https://github.com/pypa/pipenv>`_: ``pipenv install --dev``

   a. You can also install the package into a `virtualenv <https://github.com/pypa/virtualenv>`_ by running ``pip install -e .[dev,tests,typing]``
      to ensure all the development and test dependencies are installed

4. Before making any changes to the code, make sure to file an issue. The best way to ensure a smooth collaboration is to communicate *before*
   investing significant time and energy into any changes! Make sure to consider not just your own use case but others who might be using the library

5. Create a new branch. For bugs, you can simply branch to ``bugfix/<issuenumber>``. Features can be branched to ``feature/<issuenumber>``. This convention
   is to streamline the branching process and to encourage good practices around filing issues and associating pull requests with specific issues. If you
   find yourself addressing many issues in one pull request, that should give you pause

6. Make your desired changes. Don't forget to add additional tests to account for your new code -- continuous integration **will** fail without it

7. Test your changes by running ``pipenv run pytest -ra tests`` or simply ``pytest -ra tests`` if you are inside an activated virtual environment

8. Create a corresponding ``.rst`` file in the ``news`` directory with a one sentence description of your change, e.g. ``Resolved an issue which sometimes prevented requirements from being converted from Pipfile entries to pip lines correctly``

9. Commit your changes. The first line of your commit should be a summary of your changes, no longer than 72 characters, followed by a blank line, followed by a bulleted description of your changes.
   Don't forget to add separate lines with the phrase ``- Fixes #<issuenumber>`` for each issue you are addressing in your pull request

10. Before submitting your pull request, make sure to ``git remote add upstream git@github.com:sarugaku/requirementslib.git`` and then ``git fetch upstream && git pull upstream master`` to ensure your code is in sync with the latest version of the master branch,

11. Create a pull request describing your fix, referencing the issues in question. If your commit message from step 8 was detailed, you should be able to copy and paste it


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sarugaku/requirementslib",
    "name": "requirementslib",
    "maintainer": "Frost Ming",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "mianghong@gmail.com",
    "keywords": "pipfile,requirements.txt,pip,requirementslib,pipenv,lockfile,dependency resolver,resolver,dependencies",
    "author": "Dan Ryan",
    "author_email": "dan@danryan.co",
    "download_url": "https://files.pythonhosted.org/packages/7f/05/3b5b4d0aea645059f98d90ed45ce390c3955712b5c4c2cbe6c90d3333f09/requirementslib-3.0.0.tar.gz",
    "platform": null,
    "description": "RequirementsLib: Requirement Management Library for Pip and Pipenv\n\n.. image:: https://img.shields.io/pypi/v/requirementslib.svg\n    :target: https://pypi.org/project/requirementslib\n\n.. image:: https://img.shields.io/pypi/l/requirementslib.svg\n    :target: https://pypi.org/project/requirementslib\n\n.. image:: https://github.com/sarugaku/requirementslib/actions/workflows/ci.yml/badge.svg\n    :target: https://github.com/sarugaku/requirementslib/actions/workflows/ci.yml\n\n.. image:: https://img.shields.io/pypi/pyversions/requirementslib.svg\n    :target: https://pypi.org/project/requirementslib\n\n.. image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg\n    :target: https://saythanks.io/to/techalchemy\n\n.. image:: https://readthedocs.org/projects/requirementslib/badge/?version=master\n    :target: http://requirementslib.readthedocs.io/en/master/?badge=master\n    :alt: Documentation Status\n\n\ud83d\udc09 Installation\n==================\n\nInstall from `PyPI`_:\n\n.. code:: console\n\n    $ pipenv install requirementslib\n\nInstall from `Github`_:\n\n.. code:: console\n\n    $ pipenv install -e git+https://github.com/sarugaku/requirementslib.git#egg=requirementslib\n\n\n.. _PyPI: https://www.pypi.org/project/requirementslib\n.. _Github: https://github.com/sarugaku/requirementslib\n\n\n.. _`Summary`:\n\n\ud83d\udc09 Summary\n============\n\nRequirementsLib provides a simple layer for building and interacting with\nrequirements in both the `Pipfile <https://github.com/pypa/pipfile/>`_ format\nand the `requirements.txt <https://github.com/pypa/pip/>`_ format.  This library\nwas originally built for converting between these formats in `Pipenv <https://github.com/pypa/pipenv>`_.\n\n.. _`Usage`:\n\n\ud83d\udc09 Usage\n=========\n\nImporting a lockfile into your *setup.py* file\n-----------------------------------------------------\n\nYou can use RequirementsLib to import your lockfile into your setup file for including your\n**install_requires** dependencies:\n\n.. code-block:: pycon\n\n    from requirementslib import Lockfile\n    lockfile = Lockfile.create('/path/to/project/dir')\n    install_requires = lockfile.as_requirements(dev=False)\n\n\nInteracting with a *Pipfile* directly\n-------------------------------------------\n\nYou can also interact directly with a Pipfile:\n\n.. code-block:: pycon\n\n    >>> from requirementslib import Pipfile\n    >>> pf = Pipfile.load('/home/hawk/git/pypa-pipenv')\n    >>> pf.sections\n    [Section(name='packages', requirements=[]), Section(name='dev-packages', requirements=[Requirement(name='pipenv', vcs=None, req=FileRequirement(setup_path=None, path='.', editable=True, uri='file:///home/hawk/git/pypa-pipenv', link=<Link file:///home/hawk/git/pypa-pipenv>, name='pipenv', req=<Requirement: \"-e file:///home/hawk/git/pypa-pipenv\">), markers='', specifiers=None, index=None, editable=True, hashes=[], extras=None),...]\n\n\nAnd you can even write it back out into Pipfile's native format:\n\n.. code-block:: pycon\n\n    >>> print(pf.dump(to_dict=False))\n    [packages]\n\n    [dev-packages]\n    pipenv = {path = \".\", editable = true}\n    flake8 = \">=3.3.0,<4\"\n    pytest = \"*\"\n    mock = \"*\"\n\n    [scripts]\n    tests = \"bash ./run-tests.sh\"\n\n    [pipenv]\n    allow_prereleases = true\n\n\nCreate a requirement object from *requirements.txt* format\n------------------------------------------------------------------\n\n.. code-block:: pycon\n\n    >>> from requirementslib import Requirement\n    >>> r = Requirement.from_line('-e git+https://github.com/pypa/pipenv.git@master#egg=pipenv')\n    >>> print(r)\n    Requirement(name='pipenv', vcs='git', req=VCSRequirement(editable=True, uri='git+https://github.com/pypa/pipenv.git', path=None, vcs='git', ref='master', subdirectory=None, name='pipenv', link=<Link git+https://github.com/pypa/pipenv.git@master#egg=pipenv>, req=<Requirement: \"-e git+https://github.com/pypa/pipenv.git@master#egg=pipenv\">), markers=None, specifiers=None, index=None, editable=True, hashes=[], extras=[])\n\n    >>> r.as_pipfile()\n    {'pipenv': {'editable': True, 'ref': 'master', 'git': 'https://github.com/pypa/pipenv.git'}}\n\n\nOr move from *Pipfile* format to *requirements.txt*:\n\n.. code-block:: pycon\n\n    >>> r = Requirement.from_pipfile(name='pythonfinder', indexes=[], pipfile={'path': '../pythonfinder', 'editable': True})\n    >>> r.as_line()\n    '-e ../pythonfinder'\n\n\nResolving Editable Package Dependencies\n---------------------------------------------\n\nRequirementslib also can resolve the dependencies of editable packages by calling the ``run_requires`` method.\nThis method returns a detailed dictionary containing metadata parsed from the package built in\na transient folder (unless it is already on the system or the call is run in a virtualenv).\n\nThe output of ``run_requires`` is very detailed and in most cases will be sufficient:\n\n.. code-block:: pycon\n\n    >>> from pprint import pprint\n    >>> from requirementslib.models.requirements import Requirement\n    >>> r = Requirement.from_line(\"-e git+git@github.com:sarugaku/vistir.git#egg=vistir[spinner]\")\n    >>> setup_info_dict = r.run_requires()\n    >>> from pprint import pprint\n    >>> pprint(setup_info_dict)\n    {'base_dir': '/tmp/requirementslib-t_ftl6no-src/src/vistir',\n    'build_backend': 'setuptools.build_meta',\n    'build_requires': ['setuptools>=36.2.2', 'wheel>=0.28.0'],\n    'extra_kwargs': {'build_dir': '/tmp/requirementslib-t_ftl6no-src/src',\n                    'download_dir': '/home/hawk/.cache/pipenv/pkgs',\n                    'src_dir': '/tmp/requirementslib-t_ftl6no-src/src',\n                    'wheel_download_dir': '/home/hawk/.cache/pipenv/wheels'},\n    'extras': {'spinner': [Requirement.parse('cursor'),\n                            Requirement.parse('yaspin')],\n                'tests': [Requirement.parse('pytest'),\n                        Requirement.parse('pytest-xdist'),\n                        Requirement.parse('pytest-cov'),\n                        Requirement.parse('pytest-timeout'),\n                        Requirement.parse('hypothesis-fspaths'),\n                        Requirement.parse('hypothesis')]},\n    'ireq': <InstallRequirement object: vistir[spinner] from git+ssh://git@github.com/sarugaku/vistir.git#egg=vistir editable=True>,\n    'name': 'vistir',\n    'pyproject': PosixPath('/tmp/requirementslib-t_ftl6no-src/src/vistir/pyproject.toml'),\n    'python_requires': '>=2.6,!=3.0,!=3.1,!=3.2,!=3.3',\n    'requires': {'backports.functools_lru_cache;python_version<=\"3.4\"': Requirement.parse('backports.functools_lru_cache; python_version <= \"3.4\"'),\n                'backports.shutil_get_terminal_size;python_version<\"3.3\"': Requirement.parse('backports.shutil_get_terminal_size; python_version < \"3.3\"'),\n                'backports.weakref;python_version<\"3.3\"': Requirement.parse('backports.weakref; python_version < \"3.3\"'),\n                'colorama': Requirement.parse('colorama'),\n                'pathlib2;python_version<\"3.5\"': Requirement.parse('pathlib2; python_version < \"3.5\"'),\n                'requests': Requirement.parse('requests'),\n                'six': Requirement.parse('six'),\n                'spinner': [Requirement.parse('cursor'),\n                            Requirement.parse('yaspin')]},\n    'setup_cfg': PosixPath('/tmp/requirementslib-t_ftl6no-src/src/vistir/setup.cfg'),\n    'setup_py': PosixPath('/tmp/requirementslib-t_ftl6no-src/src/vistir/setup.py')}\n\n\nAs a side-effect of calls to ``run_requires``, new metadata is made available on the\nrequirement itself via the property ``requirement.req.dependencies``:\n\n\n.. code-block:: pycon\n\n    >>> pprint(r.req.dependencies)\n    ({'backports.functools_lru_cache;python_version<=\"3.4\"': Requirement.parse('backports.functools_lru_cache; python_version <= \"3.4\"'),\n    'backports.shutil_get_terminal_size;python_version<\"3.3\"': Requirement.parse('backports.shutil_get_terminal_size; python_version < \"3.3\"'),\n    'backports.weakref;python_version<\"3.3\"': Requirement.parse('backports.weakref; python_version < \"3.3\"'),\n    'colorama': Requirement.parse('colorama'),\n    'pathlib2;python_version<\"3.5\"': Requirement.parse('pathlib2; python_version < \"3.5\"'),\n    'requests': Requirement.parse('requests'),\n    'six': Requirement.parse('six'),\n    'spinner': [Requirement.parse('cursor'), Requirement.parse('yaspin')]},\n    [],\n    ['setuptools>=36.2.2', 'wheel>=0.28.0'])\n\n\n\ud83d\udc09 Integrations\n==================\n\n* `Pip <https://github.com/pypa/pip>`_\n* `Pipenv <https://github.com/pypa/pipenv>`_\n* `Pipfile`_\n\n\ud83d\udc09 Contributing\n===============\n\n1. Fork the repository and clone the fork to your local machine: ``git clone git@github.com:yourusername/requirementslib.git``\n\n2. Move into the repository directory and update the submodules: ``git submodule update --init --recursive``\n\n3. Install the package locally in a virtualenv using `pipenv <https://github.com/pypa/pipenv>`_: ``pipenv install --dev``\n\n   a. You can also install the package into a `virtualenv <https://github.com/pypa/virtualenv>`_ by running ``pip install -e .[dev,tests,typing]``\n      to ensure all the development and test dependencies are installed\n\n4. Before making any changes to the code, make sure to file an issue. The best way to ensure a smooth collaboration is to communicate *before*\n   investing significant time and energy into any changes! Make sure to consider not just your own use case but others who might be using the library\n\n5. Create a new branch. For bugs, you can simply branch to ``bugfix/<issuenumber>``. Features can be branched to ``feature/<issuenumber>``. This convention\n   is to streamline the branching process and to encourage good practices around filing issues and associating pull requests with specific issues. If you\n   find yourself addressing many issues in one pull request, that should give you pause\n\n6. Make your desired changes. Don't forget to add additional tests to account for your new code -- continuous integration **will** fail without it\n\n7. Test your changes by running ``pipenv run pytest -ra tests`` or simply ``pytest -ra tests`` if you are inside an activated virtual environment\n\n8. Create a corresponding ``.rst`` file in the ``news`` directory with a one sentence description of your change, e.g. ``Resolved an issue which sometimes prevented requirements from being converted from Pipfile entries to pip lines correctly``\n\n9. Commit your changes. The first line of your commit should be a summary of your changes, no longer than 72 characters, followed by a blank line, followed by a bulleted description of your changes.\n   Don't forget to add separate lines with the phrase ``- Fixes #<issuenumber>`` for each issue you are addressing in your pull request\n\n10. Before submitting your pull request, make sure to ``git remote add upstream git@github.com:sarugaku/requirementslib.git`` and then ``git fetch upstream && git pull upstream master`` to ensure your code is in sync with the latest version of the master branch,\n\n11. Create a pull request describing your fix, referencing the issues in question. If your commit message from step 8 was detailed, you should be able to copy and paste it\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A tool for converting between pip-style and pipfile requirements.",
    "version": "3.0.0",
    "project_urls": {
        "Homepage": "https://github.com/sarugaku/requirementslib"
    },
    "split_keywords": [
        "pipfile",
        "requirements.txt",
        "pip",
        "requirementslib",
        "pipenv",
        "lockfile",
        "dependency resolver",
        "resolver",
        "dependencies"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a6e2d0c72c224f760d49e954f6c0eb5e4075b589c7e99e895ba0b250dc6e469",
                "md5": "b17c7bab7c024614063f9b120f59cd41",
                "sha256": "67b42903d7c32f89c7047d1020c619d37cb515c475a4ae6f4e5683e1c56d7bf7"
            },
            "downloads": -1,
            "filename": "requirementslib-3.0.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b17c7bab7c024614063f9b120f59cd41",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 96688,
            "upload_time": "2023-06-18T11:42:41",
            "upload_time_iso_8601": "2023-06-18T11:42:41.136905Z",
            "url": "https://files.pythonhosted.org/packages/8a/6e/2d0c72c224f760d49e954f6c0eb5e4075b589c7e99e895ba0b250dc6e469/requirementslib-3.0.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f053b5b4d0aea645059f98d90ed45ce390c3955712b5c4c2cbe6c90d3333f09",
                "md5": "bde41684f0bd033e5708941c22e05bf1",
                "sha256": "28f8e0b1c38b34ae06de68ef115b03bbcdcdb99f9e9393333ff06ded443e3f24"
            },
            "downloads": -1,
            "filename": "requirementslib-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "bde41684f0bd033e5708941c22e05bf1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 108130,
            "upload_time": "2023-06-18T11:42:43",
            "upload_time_iso_8601": "2023-06-18T11:42:43.106177Z",
            "url": "https://files.pythonhosted.org/packages/7f/05/3b5b4d0aea645059f98d90ed45ce390c3955712b5c4c2cbe6c90d3333f09/requirementslib-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-18 11:42:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sarugaku",
    "github_project": "requirementslib",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "requirementslib"
}
        
Elapsed time: 0.08073s