switch virtualenvs with a python context manager
Project description
Example
>>> from virtualenvcontext import VirtualenvContext
>>> try: >>> import kitchen >>> except ImportError as e: >>> print "kitchen is definitely not installed in system-python"
>>> with VirtaulenvContext("my-venv"): >>> import kitchen >>> print "But it *is* installed in my virtualenv"
>>> try: >>> import kitchen >>> except ImportError as e: >>> print "But once I exit that block, I lose my powers again..."
Caveat:
It expects that you’re using virtualenvwrapper but you should be anyways.
Get this project:
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
File details
Details for the file virtualenvcontext-0.1.0.tar.gz
.
File metadata
- Download URL: virtualenvcontext-0.1.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98dc29e90f595f04be22ab3ee57f237069cec96f7842f238f9479d44a54c7c5c |
|
MD5 | 77d9987df8a8d0ebb802582bf0d9f5a8 |
|
BLAKE2b-256 | d152490bb38a7969f7b4adb7fd97daac55ac446846cc78a6c773ef5d650f3f0e |