Skip to main content

An API for virtualenv/pip

Project description

Build Status Latest version BSD License

virtualenv is a tool to create isolated Python environments. Unfortunately, it does not expose a native Python API. This package aims to provide an API in the form of a wrapper around virtualenv.

It can be used to create and delete environments and perform package management inside the environment.

Full support is provided for all supported versions of Python.

Installation

The latest stable release is available on PyPi:

$ pip install virtualenv-api

Please note that the distribution is named virtualenv-api, yet the Python package is named virtualenvapi.

Alternatively, you may fetch the latest version from git:

$ pip install git+https://github.com/sjkingo/virtualenv-api.git

Usage

To begin managing an environment (it will be created if it does not exist):

from virtualenvapi.manage import VirtualEnvironment
env = VirtualEnvironment('/path/to/environment/name')

If you have already activated a virtualenv and wish to operate on it, simply call VirtualEnvironment without the path argument:

env = VirtualEnvironment()

The VirtualEnvironment constructor takes some optional arguments (their defaults are shown below):

  • python=None - specify the Python interpreter to use. Defaults to the default system interpreter (new in 2.1.3)

  • cache=None - existing directory to override the default pip download cache

  • readonly=False - prevent all operations that could potentially modify the environment (new in 2.1.7)

  • system_site_packages=False - include system site packages in operations on the environment (new in 2.1.14)

Operations

Once you have a VirtualEnvironment object, you can perform operations on it.

  • Check if the mezzanine package is installed:

>>> env.is_installed('mezzanine')
False
  • Install the latest version of the mezzanine package:

>>> env.install('mezzanine')
  • A wheel of the latest version of the mezzanine package (new in 2.1.4):

>>> env.wheel('mezzanine')
  • Install version 1.4 of the django package (this is pip’s syntax):

>>> env.install('django==1.4')
  • Upgrade the django package to the latest version:

>>> env.upgrade('django')
  • Upgrade all packages to their latest versions (new in 2.1.7):

>>> env.upgrade_all()
  • Uninstall the mezzanine package:

>>> env.uninstall('mezzanine')

Packages may be specified as name only (to work on the latest version), using pip’s package syntax (e.g. django==1.4) or as a tuple of ('name', 'ver') (e.g. ('django', '1.4')).

  • A package may be installed directly from a git repository (must end with .git):

>>> env.install('git+git://github.com/sjkingo/cartridge-payments.git')

New in 2.1.10:

  • A package can be installed in pip’s editable mode by prefixing the package name with -e (this is pip’s syntax):

>>> env.install('-e git+https://github.com/stephenmcd/cartridge.git')

New in 2.1.15:

  • Packages in a pip requirements file can be installed by prefixing the requirements file path with -r:

>>> env.install('-r requirements.txt')
  • Instances of the environment provide an installed_packages property:

>>> env.installed_packages
[('django', '1.5'), ('wsgiref', '0.1.2')]
  • A list of package names is also available in the same manner:

>>> env.installed_package_names
['django', 'wsgiref']
  • Search for a package on PyPI (changed in 2.1.5: this now returns a dictionary instead of list):

>>> env.search('virtualenv-api')
{'virtualenv-api': 'An API for virtualenv/pip'}
>>> len(env.search('requests'))
231
  • The old functionality (pre 2.1.5) of env.search may be used:

>>> list(env.search('requests').items())
[('virtualenv-api', 'An API for virtualenv/pip')]

Verbose output from each command is available in the environment’s build.log file, which is appended to with each operation. Any errors are logged to build.err.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

virtualenv-api-2.1.18.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

virtualenv_api-2.1.18-py2.py3-none-any.whl (9.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file virtualenv-api-2.1.18.tar.gz.

File metadata

  • Download URL: virtualenv-api-2.1.18.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for virtualenv-api-2.1.18.tar.gz
Algorithm Hash digest
SHA256 2115cceaeab27faf2909780c442f4ee7a33fda9a49fe8255967432290a0557af
MD5 4d9d4b7b1f2cbb0c1eea31aa584f7f7f
BLAKE2b-256 666c59cf0e953613f572308f540b44c9e0114163716fb233df2ae2a3ae7b176e

See more details on using hashes here.

File details

Details for the file virtualenv_api-2.1.18-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for virtualenv_api-2.1.18-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7b9227a32b97dfddfc1f362cbd78ab768226be663c2ae20c7182e6d428268c28
MD5 530d6e535a5d211ad572ede0516c05e1
BLAKE2b-256 eecb197bc3ba2a5f1d3af520f1acfb124dd696a63561c360abadd86619f54fad

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page