pyvert

pyvert is a tool to convert a filesystem directory structure to and from YAML


Keywords
convert, folder, file, dictionary, yaml, structure, filesystem, represent, utility
License
GPL-3.0
Install
pip install pyvert==0.4

Documentation

pyvert

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