Parser to extract data from a Vagrantfile into a data struct readable by python
Project description
pyvagrantfile
Parses a vagrant file into a python object for inspect. Mainly used to read and build Vagrant file in python. I built this to help me write a utility in python which can build projects and convert Vagrantfiles to packer files.
Supported Directives
Most vm.config directives,
Chef provisioner
Shell provisioner
VB provider
Installation
After it’s on the pip server, you should be able to install on the client by running
$ pip install pyvagrantfile
Deployment
When this is ready to be deployed, you can upload it to the pip server
$ cd $WORKSPACE/pyvagrantfile $ python setup.py sdist upload
Usage
Contributing
virtualenv
When doing development and testing, it’s good practice to use a virtualenv. A virtualenv is a sandboxed python environment which does not modify the system python installation You can install one as follows:
$ pip install virtualenv $ cd $WORKSPACE/pyvagrantfile $ virtualenv venv $ . ./venv/bin/activate (pyvagrantfile)$
Now that you have a working virtualenv, you can install the utility in development mode. Keep in mind that the ‘activate’ step, is valid only for a single session. If you close the terminal you’ll have to run venv/bin/activate again. You can now run pip, python, and pyvagrantfile while only referring to the local python environment created in $WORKSPACE/pyvagrantfile. You can see this by running:
(pyvagrantfile)$ which pip $WORKSPACE/pyvagrantfile/venv/bin/python (pyvagrantfile)$ which python
Development Mode
When testing this utility, you can install it and still edit the source files as follows:
$ cd $WORKSPACE/pyvagrantfile $ pip install --editable .
Roadmap
I intially tried to use pyPEG, but could not get a handle on it, so for now, we use a custom state parser. I want to move this to a PEG parser to make it easier to manage, but in the spirit of minimum viable product, it’s up and out.
This is currently way too specific. Needs to be rewritten to parse general ruby structures and extract details out of it, rather than looking for particular vagrant configurations.
Port parser from state parser to PEG parser.
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
Built Distribution
File details
Details for the file pyvagrantfile-0.5.11.tar.gz
.
File metadata
- Download URL: pyvagrantfile-0.5.11.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c26930b09e25c1a7f064711481ca973a8fbacca20e4e0d79287471f171bb40c |
|
MD5 | da64002d7c93fd11cb958fd2044a0c60 |
|
BLAKE2b-256 | ece9613b7716b694509edb35e28f336a23a071b53152996bc5f4656146d09f4e |
File details
Details for the file pyvagrantfile-0.5.11-py2.py3-none-any.whl
.
File metadata
- Download URL: pyvagrantfile-0.5.11-py2.py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23760c65f8680111bbbd12adb02b3d657cada3dc7d0b7736fde30f1e32f4881e |
|
MD5 | 35831b7f9475ca817bf1fed50b24e891 |
|
BLAKE2b-256 | 69f6879dc449bae2da2f34ca827e474a77062a83b64caba4f52c511c31d08209 |