Metadata-Version: 2.1
Name: seedir
Version: 0.1.3
Summary: Package for creating, editing, and reading folder tree diagrams.
Home-page: https://github.com/earnestt1234/seedir
Author: Tom Earnest
Author-email: earnestt1234@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: emoji
Requires-Dist: natsort

# seedir
A Python package for creating, editing, and reading folder tree diagrams.


```python
>>> import seedir as sd
>>> sd.seedir(style='lines', itemlimit=10, depthlimit=2, exclude_folders='.git')

seedir/
├─.DS_Store
├─seedirpackagetesting.py
├─LICENSE
├─tests/
│ ├─__init__.py
│ ├─__pycache__/
│ └─tests.py
├─MANIFEST.in
├─pdoc_command.txt
├─docs/
│ └─seedir/
├─README.md
├─img/
│ └─pun.jpg
└─setup.py
```

## Installation

Available with [`pip`](https://pypi.org/project/seedir/):

```
pip install seedir
```

## Usage

See the [example usage Notebook](https://nbviewer.jupyter.org/github/earnestt1234/seedir/blob/master/examples.ipynb) for guided examples or the [API documentation](https://earnestt1234.github.io/seedir/seedir/index.html).

## License

Open source under MIT.


