{ "info": { "author": "Sam Kingston and AUTHORS", "author_email": "sam@sjkwi.com.au", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "virtualenv-api - an API for virtualenv\n======================================\n\n|Build Status|\n|Latest version|\n|BSD License|\n\n`virtualenv`_ is a tool to create isolated Python environments. Unfortunately,\nit does not expose a native Python API. This package aims to provide an API in\nthe form of a wrapper around virtualenv.\n\nIt can be used to create and delete environments and perform package management\ninside the environment.\n\nFull support is provided for all supported versions of Python.\n\n.. _virtualenv: http://www.virtualenv.org/\n.. |Build Status| image:: https://travis-ci.org/sjkingo/virtualenv-api.svg\n :target: https://travis-ci.org/sjkingo/virtualenv-api\n.. |Latest version| image:: https://img.shields.io/pypi/v/virtualenv-api.svg\n :target: https://pypi.python.org/pypi/virtualenv-api\n.. |BSD License| image:: https://img.shields.io/pypi/l/virtualenv-api.svg\n :target: https://github.com/sjkingo/virtualenv-api/blob/master/LICENSE\n\n\nInstallation\n------------\n\nThe latest stable release is available on `PyPi`_:\n\n::\n\n $ pip install virtualenv-api\n\nPlease note that the distribution is named ``virtualenv-api``, yet the Python\npackage is named ``virtualenvapi``.\n\nAlternatively, you may fetch the latest version from git:\n\n::\n\n $ pip install git+https://github.com/sjkingo/virtualenv-api.git\n\n.. _PyPi: https://pypi.python.org/pypi/virtualenv-api\n\nUsage\n-----\n\nTo begin managing an environment (it will be created if it does not exist):\n\n.. code:: python\n\n from virtualenvapi.manage import VirtualEnvironment\n env = VirtualEnvironment('/path/to/environment/name')\n\nIf you have already activated a virtualenv and wish to operate on it, simply\ncall ``VirtualEnvironment`` without the path argument:\n\n.. code:: python\n\n env = VirtualEnvironment()\n\nThe `VirtualEnvironment` constructor takes some optional arguments (their defaults are shown below):\n\n* ``python=None`` - specify the Python interpreter to use. Defaults to the default system interpreter *(new in 2.1.3)*\n* ``cache=None`` - existing directory to override the default pip download cache\n* ``readonly=False`` - prevent all operations that could potentially modify the environment *(new in 2.1.7)*\n* ``system_site_packages=False`` - include system site packages in operations on the environment *(new in 2.1.14)*\n\nOperations\n----------\n\nOnce you have a `VirtualEnvironment` object, you can perform operations on it.\n\n- Check if the ``mezzanine`` package is installed:\n\n.. code:: python\n\n >>> env.is_installed('mezzanine')\n False\n\n- Install the latest version of the ``mezzanine`` package:\n\n.. code:: python\n\n >>> env.install('mezzanine')\n\n- A wheel of the latest version of the ``mezzanine`` package (new in\n 2.1.4):\n\n.. code:: python\n\n >>> env.wheel('mezzanine')\n\n- Install version 1.4 of the ``django`` package (this is pip\u2019s syntax):\n\n.. code:: python\n\n >>> env.install('django==1.4')\n\n- Upgrade the ``django`` package to the latest version:\n\n.. code:: python\n\n >>> env.upgrade('django')\n\n- Upgrade all packages to their latest versions (new in 2.1.7):\n\n.. code:: python\n\n >>> env.upgrade_all()\n\n- Uninstall the ``mezzanine`` package:\n\n.. code:: python\n\n >>> env.uninstall('mezzanine')\n\nPackages may be specified as name only (to work on the latest version), using\npip\u2019s package syntax (e.g. ``django==1.4``) or as a tuple of ``('name',\n'ver')`` (e.g. ``('django', '1.4')``).\n\n- A package may be installed directly from a git repository (must end\n with ``.git``):\n\n.. code:: python\n\n >>> env.install('git+git://github.com/sjkingo/cartridge-payments.git')\n\n*New in 2.1.10:*\n\n- A package can be installed in pip's *editable* mode by prefixing the package\n name with `-e` (this is pip's syntax):\n\n.. code:: python\n\n >>> env.install('-e git+https://github.com/stephenmcd/cartridge.git')\n\n*New in 2.1.15:*\n\n- Packages in a pip requirements file can be installed by prefixing the\n requirements file path with `-r`:\n\n.. code:: python\n\n >>> env.install('-r requirements.txt')\n\n- Instances of the environment provide an ``installed_packages``\n property:\n\n.. code:: python\n\n >>> env.installed_packages\n [('django', '1.5'), ('wsgiref', '0.1.2')]\n\n- A list of package names is also available in the same manner:\n\n.. code:: python\n\n >>> env.installed_package_names\n ['django', 'wsgiref']\n\n- Search for a package on PyPI (changed in 2.1.5: this now returns a\n dictionary instead of list):\n\n.. code:: python\n\n >>> env.search('virtualenv-api')\n {'virtualenv-api': 'An API for virtualenv/pip'}\n >>> len(env.search('requests'))\n 231\n\n- The old functionality (pre 2.1.5) of ``env.search`` may be used:\n\n.. code:: python\n\n >>> list(env.search('requests').items())\n [('virtualenv-api', 'An API for virtualenv/pip')]\n\nVerbose output from each command is available in the environment's\n``build.log`` file, which is appended to with each operation. Any errors are\nlogged to ``build.err``.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/sjkingo/virtualenv-api", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "virtualenv-api", "package_url": "https://pypi.org/project/virtualenv-api/", "platform": "", "project_url": "https://pypi.org/project/virtualenv-api/", "project_urls": { "Homepage": "https://github.com/sjkingo/virtualenv-api" }, "release_url": "https://pypi.org/project/virtualenv-api/2.1.17/", "requires_dist": null, "requires_python": "", "summary": "An API for virtualenv/pip", "version": "2.1.17" }, "last_serial": 4488973, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "05136d38c0f020ee4a5fe4d70bc03c41", "sha256": "a1d0484e08887b087ff230a8d4fc245a4d4c9727bb39644ea96c0e4f84945d7e" }, "downloads": -1, "filename": "virtualenv-api-1.0.0.tar.gz", "has_sig": false, "md5_digest": "05136d38c0f020ee4a5fe4d70bc03c41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2641, "upload_time": "2013-03-27T05:16:51", "url": "https://files.pythonhosted.org/packages/a2/a8/5786ef9ab9d6ce553b06e49ba1e321920969eeecd708825765a0be6a604d/virtualenv-api-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "9a0c7d8bedf581c20bdca3ba2a5f4c91", "sha256": "2ea522a228e94db73b86edd7720a9e29323e63c9897b2527fb523504fd999773" }, "downloads": -1, "filename": "virtualenv-api-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9a0c7d8bedf581c20bdca3ba2a5f4c91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2775, "upload_time": "2014-04-02T10:05:02", "url": "https://files.pythonhosted.org/packages/be/b5/459e3517e132c3db02d974061a2b08e082f51f79d07b349788f22b889932/virtualenv-api-1.1.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "e1bb55f09b28a63b5483d684dce7e1f4", "sha256": "de03bcc678874d531d2cf463f763e89e96a8bf7b2ff1b0d528d39f342d594e16" }, "downloads": -1, "filename": "virtualenv-api-2.0.0.tar.gz", "has_sig": false, "md5_digest": "e1bb55f09b28a63b5483d684dce7e1f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3207, "upload_time": "2014-04-09T21:11:55", "url": "https://files.pythonhosted.org/packages/d9/36/d3335c05f44ddfdbc95cb6a4e6ec89aeda6d5ab8fb8b5ded971c16647134/virtualenv-api-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "1044db2c647ed65010aee5e797505ccd", "sha256": "aa83244bbf8ba1f7698df536251abf993d2bbd3018e5d86c0b17706a4f0d952c" }, "downloads": -1, "filename": "virtualenv-api-2.0.1.tar.gz", "has_sig": false, "md5_digest": "1044db2c647ed65010aee5e797505ccd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3303, "upload_time": "2014-11-13T21:53:08", "url": "https://files.pythonhosted.org/packages/b9/b3/be12e5bf5f98741e870ec815762887f2e9320d31e66f892f28f923e9c2c2/virtualenv-api-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "dbf613cf42932fb38eaebcc60ff30871", "sha256": "1ffdffcfc3d0c075cf7f84af4d47271bc0eb8c1b87419003c7a07cfe39b70803" }, "downloads": -1, "filename": "virtualenv-api-2.1.0.tar.gz", "has_sig": false, "md5_digest": "dbf613cf42932fb38eaebcc60ff30871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3757, "upload_time": "2014-11-18T20:37:57", "url": "https://files.pythonhosted.org/packages/bc/6b/d950a854275fc15586e9c0122638f0a00acefd150889d796763872ba9a09/virtualenv-api-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "dbc59009ddb0b14f4b7788b40057798f", "sha256": "43fdb6f8a91b235650448e9bc04c42d99f59dd60b3949826a984944cd832a5c7" }, "downloads": -1, "filename": "virtualenv-api-2.1.1.tar.gz", "has_sig": false, "md5_digest": "dbc59009ddb0b14f4b7788b40057798f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3767, "upload_time": "2014-11-18T20:43:44", "url": "https://files.pythonhosted.org/packages/7f/13/edbe0e515a94067d0439428ed4a2c21f3697c4732dd1373eb2fdcb951a88/virtualenv-api-2.1.1.tar.gz" } ], "2.1.10": [ { "comment_text": "", "digests": { "md5": "73caaa89e9e72c9adb4c350968877575", "sha256": "5cfe1daf6cacede978f932a4b6b286f8afb19025bdcd8f3a65bcaf0c412f8280" }, "downloads": -1, "filename": "virtualenv_api-2.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73caaa89e9e72c9adb4c350968877575", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 9613, "upload_time": "2016-06-03T05:05:37", "url": "https://files.pythonhosted.org/packages/e4/9d/f975df81419ee754ecf1529ea582c73ac57d43dd29d595561887e34421f2/virtualenv_api-2.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fe54da85af34551e560b9be78605471", "sha256": "3c44bd0b8ba6c9eac95733062a89c41320028908df5f39bfeb487d1d609f01ef" }, "downloads": -1, "filename": "virtualenv-api-2.1.10.tar.gz", "has_sig": false, "md5_digest": "8fe54da85af34551e560b9be78605471", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7087, "upload_time": "2016-06-03T05:05:31", "url": "https://files.pythonhosted.org/packages/da/16/b5a0cc52664d6c261c91b1c2413eb6655b859f8c2d264b130e24a976cd75/virtualenv-api-2.1.10.tar.gz" } ], "2.1.11": [ { "comment_text": "", "digests": { "md5": "af8e27767759eabccb90e8e2116c0ada", "sha256": "b1f745fba5a8d2037fb53ed45e9d321cbfe729bc32945055640ab6ab20ac7eff" }, "downloads": -1, "filename": "virtualenv_api-2.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af8e27767759eabccb90e8e2116c0ada", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 9711, "upload_time": "2016-07-14T12:29:25", "url": "https://files.pythonhosted.org/packages/b1/1d/203ae2a68cb45deee996213208e54965693f6b01c25046dbb12df649c257/virtualenv_api-2.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7e8fad1407fba15b2e51f8372e5bbd32", "sha256": "ca79ccb34f00ae26cca02fd8515035ce1ebfc47ef0a30b569dd7d35cb228e7db" }, "downloads": -1, "filename": "virtualenv-api-2.1.11.tar.gz", "has_sig": false, "md5_digest": "7e8fad1407fba15b2e51f8372e5bbd32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7139, "upload_time": "2016-07-14T12:29:21", "url": "https://files.pythonhosted.org/packages/1a/1c/bd934911050e0e13da07ee2a1374fc323f5427e2ca2a9cc25776aa7afbc5/virtualenv-api-2.1.11.tar.gz" } ], "2.1.12": [ { "comment_text": "", "digests": { "md5": "cb1a77c6dab7807758d6f852dbd04a32", "sha256": "0ffe482006165f7c0e77b5d31390b14437031b393a9b62e6b40a028918b8f8f5" }, "downloads": -1, "filename": "virtualenv_api-2.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb1a77c6dab7807758d6f852dbd04a32", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10049, "upload_time": "2016-10-21T21:18:14", "url": "https://files.pythonhosted.org/packages/87/9d/2dba1ee5f0e6c5188f566e3f005f90e23fbd708c39a38d364c6fc5393233/virtualenv_api-2.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6fa909c3d3449e3073c1c091f0cb274f", "sha256": "28fc72cdfd1b9b0af4f8d2bf74f2227b4e66bd3dca31e17dfa0f04fc36a1a1c1" }, "downloads": -1, "filename": "virtualenv-api-2.1.12.tar.gz", "has_sig": false, "md5_digest": "6fa909c3d3449e3073c1c091f0cb274f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7436, "upload_time": "2016-10-21T21:18:10", "url": "https://files.pythonhosted.org/packages/20/ae/2f3bef63848656ce8f13ac9c9a7d2f3e89198b0382e1cc014315a7fcc3b2/virtualenv-api-2.1.12.tar.gz" } ], "2.1.13": [ { "comment_text": "", "digests": { "md5": "ca7cce15182ea495d6365bba09a46d30", "sha256": "b1e2927b3343c1768a30ceeae269674e48a7d87bffef951e849c748e73439a0c" }, "downloads": -1, "filename": "virtualenv_api-2.1.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ca7cce15182ea495d6365bba09a46d30", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10320, "upload_time": "2016-10-26T01:03:57", "url": "https://files.pythonhosted.org/packages/05/06/92f82ce555d12c5d217b0b7dbc592e2cc42f2f45174724ae15bfc1bda2b7/virtualenv_api-2.1.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1eede94f7ef825ff82fc8b3ef9abc91", "sha256": "ccf2438c7f6351ac67144a85630beeb8fc1e79178a7eee0e6422497ae9e85ee0" }, "downloads": -1, "filename": "virtualenv-api-2.1.13.tar.gz", "has_sig": false, "md5_digest": "b1eede94f7ef825ff82fc8b3ef9abc91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7682, "upload_time": "2016-10-26T01:03:53", "url": "https://files.pythonhosted.org/packages/69/24/eb2fb7f339d6d90d9f295517f0dca84cf212390c81b82da0a67c702e7f38/virtualenv-api-2.1.13.tar.gz" } ], "2.1.14": [ { "comment_text": "", "digests": { "md5": "b18168262bac602cb113180a5e824c26", "sha256": "30d0d75725c8fee396ad51afd041187905f3d872fec2ba1393f6498663444f5e" }, "downloads": -1, "filename": "virtualenv_api-2.1.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b18168262bac602cb113180a5e824c26", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10555, "upload_time": "2017-02-21T23:24:09", "url": "https://files.pythonhosted.org/packages/cf/81/ca2a3c37167c15b03532b375a63fcf75175cc760270201dea16273425508/virtualenv_api-2.1.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "827f22587ab5c7a6b553ea699209b7ea", "sha256": "259eab77cdfbe79e6a7d4ce7ba1a9b15ffe3d648d2924f80e2b424135b1df643" }, "downloads": -1, "filename": "virtualenv-api-2.1.14.tar.gz", "has_sig": false, "md5_digest": "827f22587ab5c7a6b553ea699209b7ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7799, "upload_time": "2017-02-21T23:24:06", "url": "https://files.pythonhosted.org/packages/0e/4f/64113089de0275e188e185852b10aea9c204ed175eb0824f5c00bcbcee21/virtualenv-api-2.1.14.tar.gz" } ], "2.1.15": [ { "comment_text": "", "digests": { "md5": "52a2dcfffce2285f37330bc931456f94", "sha256": "33d744c4e9a26142743cc1d481993c8f1e8a9f3e1e009a0877a2dafd7950252a" }, "downloads": -1, "filename": "virtualenv_api-2.1.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "52a2dcfffce2285f37330bc931456f94", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10680, "upload_time": "2017-03-17T09:07:39", "url": "https://files.pythonhosted.org/packages/e8/c6/23c6bbac37c9ab010cfd117da7c51832c7c996c7cbe575ffcb7a83713b90/virtualenv_api-2.1.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7b5cf76d883767074cda14c0b141463", "sha256": "d4847d149a0d9bd9560b30da90d6a56d6705e8f345574711db7b807e932f6e5a" }, "downloads": -1, "filename": "virtualenv-api-2.1.15.tar.gz", "has_sig": false, "md5_digest": "b7b5cf76d883767074cda14c0b141463", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7913, "upload_time": "2017-03-17T09:07:33", "url": "https://files.pythonhosted.org/packages/6a/0b/d61ba47132b95564ebd31fa19266c65c098c24324a1bd1f5a698496d3070/virtualenv-api-2.1.15.tar.gz" } ], "2.1.16": [ { "comment_text": "", "digests": { "md5": "cc3c6fc350638b654e566be502f0f293", "sha256": "c9fd26e5fb999ed682361be402e9876a0ae855b75dd55961eb8b7e54f46f4bc9" }, "downloads": -1, "filename": "virtualenv_api-2.1.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc3c6fc350638b654e566be502f0f293", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10763, "upload_time": "2017-03-17T14:24:24", "url": "https://files.pythonhosted.org/packages/b1/b6/6799799a67fab60620444b688133df1be00c1aeb56d395d25cd4d145254e/virtualenv_api-2.1.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53b2f1828009c080aecc85fe0db2f49f", "sha256": "b0910986905612b665122c543a56223d9774b76712dc295c5ac43eb896c2b9b0" }, "downloads": -1, "filename": "virtualenv-api-2.1.16.tar.gz", "has_sig": false, "md5_digest": "53b2f1828009c080aecc85fe0db2f49f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7972, "upload_time": "2017-03-17T14:24:21", "url": "https://files.pythonhosted.org/packages/52/10/ebe92a360d626916504203465cfcbd1e22574521b45a82b15b9666e4241e/virtualenv-api-2.1.16.tar.gz" } ], "2.1.17": [ { "comment_text": "", "digests": { "md5": "be808c085cd6e009ded67969781ab009", "sha256": "cc4f4b57dfd2f938d598f980c36b4f9793c622148083729f87f7a3594d26c002" }, "downloads": -1, "filename": "virtualenv_api-2.1.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be808c085cd6e009ded67969781ab009", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 10740, "upload_time": "2018-11-15T09:15:48", "url": "https://files.pythonhosted.org/packages/f2/b8/06f16529258cfa315653ece7c440b2c7c5f4fa41ba5890b43e16ab556b6b/virtualenv_api-2.1.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50d8045473615c83a0e712fb7b589658", "sha256": "b0a239feef35b4475162945d9987956881c7d378cf7828d8ceb5667d249b41db" }, "downloads": -1, "filename": "virtualenv-api-2.1.17.tar.gz", "has_sig": false, "md5_digest": "50d8045473615c83a0e712fb7b589658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7951, "upload_time": "2018-11-15T09:15:44", "url": "https://files.pythonhosted.org/packages/53/5e/78d374d9e3742a3fc8f9a39b579602eb160dd258cec404ea1d6831b6bfa9/virtualenv-api-2.1.17.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "5c631daaff85e6c61a7932b7304e8a6e", "sha256": "6460592750713a51d5fcc447f58344a91a3efe6ab40c8b2f3c7734f5727ca2f2" }, "downloads": -1, "filename": "virtualenv-api-2.1.2.tar.gz", "has_sig": false, "md5_digest": "5c631daaff85e6c61a7932b7304e8a6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3776, "upload_time": "2014-11-24T20:36:06", "url": "https://files.pythonhosted.org/packages/12/05/e52b4c3761eec24a2a64f605846d0c9bb3a66c21c0db53ad14ee7bb0ae52/virtualenv-api-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "4a48becf14977c93b6196833ec2ac609", "sha256": "b7c54f4f2954a2e83cf86737186a1333ea48a387953f656d375368c922aa7f9a" }, "downloads": -1, "filename": "virtualenv-api-2.1.3.tar.gz", "has_sig": false, "md5_digest": "4a48becf14977c93b6196833ec2ac609", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3888, "upload_time": "2015-03-28T02:47:44", "url": "https://files.pythonhosted.org/packages/79/ab/b459085a2ee7e8dfaf74f9cfa2c9b667b444048ec99c8b3db7e9188d3cba/virtualenv-api-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "cf318b1835244c34524da91f1865cfac", "sha256": "5b65cb4b36fb28ec77bae4bb1fae35cb8313ffdcbedd92779ac7f45c096a0214" }, "downloads": -1, "filename": "virtualenv_api-2.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf318b1835244c34524da91f1865cfac", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5821, "upload_time": "2015-06-05T00:53:45", "url": "https://files.pythonhosted.org/packages/4b/28/f656de9e69cee316a069dc5b89a4218b17d53973d5c5307e63b8cf749a2d/virtualenv_api-2.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b27c0a26bd5d1fbfe8929fdc5078158f", "sha256": "005d07870bf842c9026bce01ee066338d18238591dfab604d9761694a77a9104" }, "downloads": -1, "filename": "virtualenv-api-2.1.4.tar.gz", "has_sig": false, "md5_digest": "b27c0a26bd5d1fbfe8929fdc5078158f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3961, "upload_time": "2015-06-05T00:48:56", "url": "https://files.pythonhosted.org/packages/fc/d8/d57db5b3182662496c9d41e2b4f8af0959cbd107a4eedfc62b23f417b348/virtualenv-api-2.1.4.tar.gz" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "aec715f3d33f85cfe35df8062e14e48d", "sha256": "00d6e1d334ad395fda96d655e314b95e283f32791fa532f46acf2cc2918824b3" }, "downloads": -1, "filename": "virtualenv_api-2.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aec715f3d33f85cfe35df8062e14e48d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8708, "upload_time": "2015-06-10T04:12:22", "url": "https://files.pythonhosted.org/packages/19/63/dcb1443d981a3ca7236388ffe8f5469b8a1a06f90394be75273d21917310/virtualenv_api-2.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca855ba2112a6004ca0230d2c213fdbf", "sha256": "8bba463c20fecbf546e747d58c68bd2fcbabab3213c0d1ca824e91b3b1da0135" }, "downloads": -1, "filename": "virtualenv-api-2.1.6.tar.gz", "has_sig": false, "md5_digest": "ca855ba2112a6004ca0230d2c213fdbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5494, "upload_time": "2015-06-10T04:12:18", "url": "https://files.pythonhosted.org/packages/b1/ea/39208b3435ca0b17c04886de787ffc4b9ad0226c24ef91f5b4af3d8a5563/virtualenv-api-2.1.6.tar.gz" } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "8681468948bebe8ae207b294bd63fe9e", "sha256": "dd09449b5aed622706a68f723a81f8ba8b32c17b84120ad3d01998115c39c235" }, "downloads": -1, "filename": "virtualenv_api-2.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8681468948bebe8ae207b294bd63fe9e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9349, "upload_time": "2015-08-10T08:46:55", "url": "https://files.pythonhosted.org/packages/3c/9a/2dbe27eddfa5b3a5dad3f2840eac62979b34d83aae35804c08e26a039d1c/virtualenv_api-2.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2eee7636151703e21410ea4c7b884b48", "sha256": "7cc396b544c3818541c20bfa8d8a8ae08e839ef604825f14ca4f4bc53de48a1b" }, "downloads": -1, "filename": "virtualenv-api-2.1.7.tar.gz", "has_sig": false, "md5_digest": "2eee7636151703e21410ea4c7b884b48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5882, "upload_time": "2015-08-10T08:46:51", "url": "https://files.pythonhosted.org/packages/a2/97/21c3717d8249e583e97c906a588213b117aad2091d43183ac2830f4bfeba/virtualenv-api-2.1.7.tar.gz" } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "9a24dcac942b85e3334289744091f826", "sha256": "c6a188762664e46a900655d8a044f41d4d74b2e7c15eae45c75c41fbc11205c2" }, "downloads": -1, "filename": "virtualenv_api-2.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9a24dcac942b85e3334289744091f826", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 6171, "upload_time": "2016-04-01T00:47:25", "url": "https://files.pythonhosted.org/packages/5b/39/421785741fb3f6a2283d8c36a4066a7de2e43a3fc60445e41c12009995aa/virtualenv_api-2.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21a0f52ca2e23b0cb90055ca6fd8d53b", "sha256": "92397423d700fa51ed4f782f2b163901bd5d86b2e73b21b5d287901e6d2fe57f" }, "downloads": -1, "filename": "virtualenv-api-2.1.8.tar.gz", "has_sig": false, "md5_digest": "21a0f52ca2e23b0cb90055ca6fd8d53b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5793, "upload_time": "2016-04-01T00:47:17", "url": "https://files.pythonhosted.org/packages/0c/16/b6039b26d8523f8d19d6800eec71daf44ae67e313ac3e6746c860dbd25b8/virtualenv-api-2.1.8.tar.gz" } ], "2.1.9": [ { "comment_text": "", "digests": { "md5": "87bb7704adb939a0b48e3e06b25652fd", "sha256": "a4e63ca891fa4f7f61f1e93834d83dcfda2ace45b4764f764e47e867691abf15" }, "downloads": -1, "filename": "virtualenv_api-2.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87bb7704adb939a0b48e3e06b25652fd", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 6332, "upload_time": "2016-04-30T21:53:32", "url": "https://files.pythonhosted.org/packages/82/9b/d4509506fa16ebc04cf8c34b6fa3255dc589c1fe3dbeeed5ee14272bab41/virtualenv_api-2.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b21bc80e18c73c694948acbd1f659f5c", "sha256": "302aaab651f1fe973f4def4f3f910ca704b5c82b54fee33daff1e79b698e7e9c" }, "downloads": -1, "filename": "virtualenv-api-2.1.9.tar.gz", "has_sig": false, "md5_digest": "b21bc80e18c73c694948acbd1f659f5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5920, "upload_time": "2016-04-30T21:53:24", "url": "https://files.pythonhosted.org/packages/9d/2e/388b54b30e7c6c4dfe0de0cb729254c18d84883bb1339aafa76e86cb6730/virtualenv-api-2.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "be808c085cd6e009ded67969781ab009", "sha256": "cc4f4b57dfd2f938d598f980c36b4f9793c622148083729f87f7a3594d26c002" }, "downloads": -1, "filename": "virtualenv_api-2.1.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be808c085cd6e009ded67969781ab009", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 10740, "upload_time": "2018-11-15T09:15:48", "url": "https://files.pythonhosted.org/packages/f2/b8/06f16529258cfa315653ece7c440b2c7c5f4fa41ba5890b43e16ab556b6b/virtualenv_api-2.1.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50d8045473615c83a0e712fb7b589658", "sha256": "b0a239feef35b4475162945d9987956881c7d378cf7828d8ceb5667d249b41db" }, "downloads": -1, "filename": "virtualenv-api-2.1.17.tar.gz", "has_sig": false, "md5_digest": "50d8045473615c83a0e712fb7b589658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7951, "upload_time": "2018-11-15T09:15:44", "url": "https://files.pythonhosted.org/packages/53/5e/78d374d9e3742a3fc8f9a39b579602eb160dd258cec404ea1d6831b6bfa9/virtualenv-api-2.1.17.tar.gz" } ] }