1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# -*- coding: utf-8 -*-
"""
[seedir](https://github.com/earnestt1234/seedir) is a Python package for
creating, editing, and reading folder tree diagrams.
The general logic of seedir is based on representing directories in 3
different forms: real directories on a computer, text diagrams of directories,
and "fake directories" (manipulable Python folder objects). seedir provides
tools for going in between these formats.
.. include:: ../docs/gettingstarted.md
## Cheatsheet

"""
#imports for package namespace
from .realdir import seedir
from .fakedir import (fakedir,
fakedir_fromstring,
populate,
randomdir,)
from .fakedir import FakeDir
from .fakedir import FakeFile
from .printing import (get_styleargs,
STYLE_DICT,)
|