• Stars
    star
    258
  • Rank 158,189 (Top 4 %)
  • Language
    Python
  • License
    MIT License
  • Created over 12 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python bindings for interacting with Vagrant virtual machines.

Introduction

Python-vagrant is a python module that provides a thin wrapper around the vagrant command line executable, allowing programmatic control of Vagrant virtual machines (boxes). This module is useful for:

  • Starting a Vagrant virtual machine (VM) (up).
  • Terminating a Vagrant VM (destroy).
  • Halting a Vagrant VM without destroying it (halt).
  • Querying the status of a VM or VMs (status).
  • Getting ssh configuration information useful for SSHing into the VM. (host, port, ...)
  • Running vagrant commands in a multi-VM environment by using vm_name parameter.
  • Initializing the VM based on a named base box, using init().
  • Adding, Removing, and Listing boxes (box add, box remove, box list).
  • Provisioning VMs - up() accepts options like no_provision, provision, and provision_with, and there is a provision() method.
  • Using sandbox mode from the Sahara gem.

This project began because I wanted python bindings for Vagrant so I could programmatically access my vagrant box using Fabric. Drop me a line to let me know how you use python-vagrant. I'd love to share more use cases. -Todd DeLuca

Versioning and API Stability

This package is beta and its API is not guaranteed to be stable. The API attempts to be congruent with the vagrant API terminology, to facilitate knowledge transfer for users already familiar with Vagrant. Over time, the python-vagrant API has changed to better match the underling vagrant CLI and to evolve with the changes in that CLI.

The package version numbering is in the form 0.X.Y. The initial 0 reflects the beta nature of this project. The number X is incremented when backwards-incompatible changes occur. The number Y is incremented when backwards-compatible features or bug fixes are added.

Requirements

  • Vagrant 2.2 or greater. Using the latest version of Vagrant is strongly recommended.
  • Vagrant requires VirtualBox, VMWare, or another supported provider.
  • Python 3.9 or newer.
  • The Sahara gem for Vagrant is optional. It will allow you to use SandboxVagrant.

Installation

Install from pypi.python.org

Download and install python-vagrant:

pip install python-vagrant

Install from github.com

Clone and install python-vagrant

cd ~
git clone [email protected]:pycontribs/python-vagrant.git
cd python-vagrant
python setup.py install

Usage

A contrived example of starting a vagrant box (using a Vagrantfile from the current directory) and running a fabric task on it:

import vagrant
from fabric.api import env, execute, task, run

@task
def mytask():
    run('echo $USER')

v = vagrant.Vagrant()
v.up()
env.hosts = [v.user_hostname_port()]
env.key_filename = v.keyfile()
env.disable_known_hosts = True # useful for when the vagrant box ip changes.
execute(mytask) # run a fabric task on the vagrant host.

Another example showing how to use vagrant multi-vm feature with fabric:

import vagrant
from fabric.api import *

@task
def start(machine_name):
   """Starts the specified machine using vagrant"""
   v = vagrant.Vagrant()
   v.up(vm_name=machine_name)
   with settings(host_string= v.user_hostname_port(vm_name=machine_name),
                 key_filename = v.keyfile(vm_name=machine_name),
                 disable_known_hosts = True):
        run("echo hello")

By default python vagrant instances are quiet, meaning that they capture stdout and stderr. For a "loud" instance, use vagrant.Vagrant(quiet_stdout=False). Set quiet_stderr=False for an even louder version.

Interacting With the Vagrant Subprocess

The Vagrant class works by executing vagrant commands in a subprocess and interpreting the output. Depending on the needs of the user, the communication to and from the subprocess can be tailored by altering its environment and where it sends its stdout and stderr.

Silencing the Stdout or Stderr of the Vagrant Subprocess

The stdout and stderr of the underlying vagrant process can be silenced by using the out_cm and err_cm parameters, or by using the quiet_stdout and quiet_stderr parameters of Vagrant.__init__.

Using out_cm and err_cm to redirect stdout and stderr to /dev/null:

v = vagrant.Vagrant(out_cm=vagrant.devnull_cm, err_cm=vagrant.devnull_cm)
v.up() # normally noisy

Using quiet_stdout and quiet_stderr to redirect stdout and stderr to /dev/null:

v = vagrant.Vagrant(quiet_stdout=True, quiet_stderr=True)
v.up() # normally noisy

These are functionally equivalent.

Logging the Stdout or Stderr of the Vagrant Subprocess

A user might wish to direct the stdout and stderr of a vagrant subprocess to a file, perhaps to log and analyze the results of an automated process. This can be accomplished using the out_cm and err_cm parameters of Vagrant.__init__.

For example, log the stdout and stderr of the subprocess to the file 'deployment.log':

log_cm = vagrant.make_file_cm('deployment.log')
v = vagrant.Vagrant(out_cm=log_cm, err_cm=log_cm)
v.up() # normally noisy

Altering the Environment of the Vagrant Subprocess

It's possible to communicate with the Vagrant subprocess using environment variables. The Vagrantfile could expect environment variables to be present and act accordingly. The environment variables can be set by python-vagrant.

import vagrant

v = vagrant.Vagrant()

os_env = os.environ.copy()
os_env['USE_NFS'] = '1'

v.env = os_env
v.up()  # will pass env to the vagrant subprocess

Alternatively, the environment can be passed at instantiation time.

import vagrant

os_env = os.environ.copy()
os_env['USE_NFS'] = '1'

v = vagrant.Vagrant(env=env)
assert v.env is env  # True
v.up()  # will pass env to the vagrant subprocess

Contribute

If you use python and vagrant and this project does not do what you want, please open an issue or a pull request on GitHub.

Please see CHANGELOG.md and Releases for a detailed list of updates, contributions and authors.

When making a pull request, please include unit tests that test your changes and make sure any existing tests still work. See the Testing section below.

Testing

Running the full suite of tests might take 10 minutes or so. It involves downloading boxes and starting and stopping virtual machines several times.

Run the tests from the top-level directory of the repository:

tox -e py

Here is an example of running an individual test:

tox -e py -- -k tests.test_vagrant:test_boxes

Manual test of functionality for controlling where the vagrant subcommand output is sent -- console or devnull:

>>> import vagrant
>>> import os
>>> vagrantfile = '/Users/tfd/proj/python-vagrant/tests/vagrantfiles/single_box'
>>> # Demonstrate a quiet Vagrant.  Equivalent to out_cm=vagrant.devnull_cm
... v1 = vagrant.Vagrant(vagrantfile)
>>> v1.destroy() # output to /dev/null
>>> # Demonstrate a loud Vagrant.  Equivalent to out_cm=vagrant.stdout_cm
... v2 = vagrant.Vagrant(vagrantfile, quiet_stdout=False)
>>> v2.destroy() # stdout sent to console
==> default: VM not created. Moving on...
>>> # Demonstrate that out_cm takes precedence over quiet_stdout=True
... v3 = vagrant.Vagrant(vagrantfile, out_cm=vagrant.stdout_cm)
>>> v3.destroy() # output to console
==> default: VM not created. Moving on...
>>> # Demonstrate a quiet Vagrant using devnull_cm directly
... v4 = vagrant.Vagrant(vagrantfile, out_cm=vagrant.devnull_cm)
>>> v4.destroy() # output to console
>>>

More Repositories

1

jira

Python Jira library. Development chat available on https://matrix.to/#/#pycontribs:matrix.org
Python
1,940
star
2

ansi2html

Convert text with ansi color codes to HTML
Python
387
star
3

pyrax

The Python SDK for the Rackspace Cloud
Python
237
star
4

tendo

Official repository of python tendo library, always welcoming new contributions.
Python
144
star
5

confluence

Confluence Python API, please check ticket below πŸ†˜
Python
140
star
6

mk

mk ease contributing to any open source repository by exposing most common actions you can run. Inspired by make, tox and other cool tools!
Python
91
star
7

ruyaml

ruyaml is a openly maintained fork of elusive ruamel-yaml package that can be used as as a drop-in replacement.
Python
73
star
8

django-alexa

Amazon Alexa Skills Kit integration for Django -- ARCHIVED contact @ssbarnea if you can resurrect it.
Python
69
star
9

subprocess-tee

A subprocess.run drop-in replacement that supports a tee mode, being able to display output in real time while still capturing it. No dependencies needed
Python
45
star
10

python-crowd

A python client to the Atlassian Crowd REST API. ❗️seeking-new-maintainer
Python
45
star
11

enrich

Enrich adds few missing features to the wonderful rich library.
Python
28
star
12

phoebian

The missing tools for managing Atlassian ones, better daemons, automatic software updater.
Shell
23
star
13

selinux

Pure-python selinux shim module for use in virtualenvs
Python
19
star
14

activedirectory

ActiveDirectory / AD / LDAP Servers user Pure Python.
Python
16
star
15

rmux

rmux allows you to run your local project on multiple remote machines in parallel
Python
9
star
16

pyversion

Python package versioning made simple
Python
6
star
17

meta

Repository used to organize everything around PyContribs Community itself.
6
star
18

powertape

A project that does nothing else than documenting Jenkins Pipelines usage.
Groovy
6
star
19

pia

PIA - Package Installer for Ansible with a KISS approach
Python
6
star
20

pys

Repository used to pre-build python enabled images for popular operating systems
Dockerfile
6
star
21

remotefilelog

Python
5
star
22

gri

Git/Gerrit Review Interface helps you manage change requests from multiple servers.
Python
4
star
23

python3-ldap

Python
4
star
24

ruamel-yaml

read-only git mirror from official hg repository. Mirroring is done via GHA from meta repository.
Python
4
star
25

zuul-lint

Zuul Config Linter
Python
4
star
26

pysample

pysample provides a simple and complete python package testing and deployment template.
Python
3
star
27

gh-pre

gh cli extension to help with project maintenance tasks such preparing releases.
Python
3
star
28

termatch

Python
2
star
29

ppinfo

Package to retrieve metadata about a local python project
Python
2
star
30

tender

Tool to help tending github repos: like managing labels
Python
2
star
31

zbr

Zuul Build Reproducer
1
star
32

devops-police

Python
1
star
33

proofit

ProofIt checks presence of specific PR labels in order to assure creation of meaningful release notes andwith and proper use of semantic versioning.
Python
1
star
34

a2h

Rewrite of ansi2html from scratch with a less-restrictive MIT licensing
Python
1
star
35

scheme8

A multi-purpose JSON/YAML scheme checker written in python and pre-commit compatible
Python
1
star