Skip to main content

A package to create portable virtual environments programmatically.

Project description

venvctl

codecov

pipeline status

Python package

venvctl is a CLI tool allowing the creation of fully portable Python virtual environments.

Synopsis

venvctl helps building fully portable Python virtual environments, in bulk, or single mode, keeping the state in config files. Each virtual environment comes with a detailed markdown report, allowing to control the integrity of its state, broken dependencies, errors, and warnings that occurred in the build process. Eventually, the folders ready for distributions get packed in tarballs, as shown in the example below:

...
│   ...
│   └── pyvenv.cfg
├── builds
│   ├── ansible_2_9.tar.gz
│   └── base.tar.gz
└── reports
    ├── ansible_2_9.md
    └── base.md

Limitations

It is evident that the portability is limited to systems sharing the same kernel, do not expect to build a virtual environment on a Debian based system, and deploy it on a RHEL host, to mention one of the many cases;

It is possible shipping a virtual environment with a different version of python other than the one installed on the destination system, yet again, do not assume to run python3 based venvs on a system solely configured with python 2.x.

Requirements

venvctl relies on a few packages to explicate its core functionalities:

piphyperd==1.9.6

piphyperd, a wrapper around pip to manage installations and audits.

markd==0.1.20

markd, a Python package that facilitates the generation of markdown flavored files.

virtualenv==20.0.14  # Virtual Python Environment builder.
click8==8.0.1  # Composable command line interface toolkit.
binaryornot==0.4.4  # Ultra-lightweight pure Python package to check if a file is binary or text.

Installation

venvctl is currently distributed only through PyPi.org

pip install --user venvctl

Visit the project page for further information about the package status and releases.

Documentation

For the detailed instructions and a full API walkthroug, refer to the Official Documenation.

You can leverage venvctl both programmatically, or calling the CLI, as shown in the example below:

venvctl generate \
    --config ~/path/to/your/config/venvs.json \
    --out ./venvs

A config file follows the json structure:

[
    {
        "name": "base",
        "packages": [
            "docker==4.1.0"
        ]
    },
    {
        "name": "ansible_2_9",
        "parent": "base",
        "packages": [
            "ansible==2.9"
        ]
    },
    {
        "name": "ansible_2_9_tox",
        "parent": "ansible_2_9",
        "packages": [
            "tox==3.12.1"
        ]
    }
]

The build process follows an inheritance pattern, in the example above, the environment named base is the core for the rest; ansible_2_9 inherits its packages; ansible_2_9_tox adds modules on the top of its parent, ansible_2_9.

With this logic, the build process in bulk can be quite fast, even when deploying complex virtual environments.

License

GNU General Public License v3 (GPLv3)

About the author

Francesco Cosentino

I'm a surfer, a crypto trader, and a DevSecOps Engineer with 15 years of experience designing highly-available distributed production environments and developing cloud-native apps in public and private clouds.

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

venvctl-1.3.4.tar.gz (44.9 kB view hashes)

Uploaded Source

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