Last updated:
0 purchases
pyvert 0.4
Pyvert is a tool to convert a filesystem directory structure to and from YAML. Comes in useful for development when a directory of test files and folders is desired.
Modules
For converting a directory to a dict, use convert_dir:
>>> from pyvert import convert_dir
>>> foo = convert_dir.to_dict("/path/to/directory")
>>> type(foo)
<type 'dict'>
Scripts
From command line, generate a YAML file of a given directory:
$ dir2yaml /path/to/foobar
Dictionary written to foobar.yaml
Also works in reverse:
$ yaml2dir foobar.yaml
Directory created at /path/to/foobar
Installation
To install Pyvert, simply:
$ pip install pyvert
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.