Skip to content

blaketmiller/pyvert

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages