Metadata-Version: 2.1
Name: pathtree
Version: 0.1.3
Summary: Python command line tree printer
Home-page: https://github.com/skylerlee/pathtree
Author: skylerlee
Author-email: skyler.ac.lee@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown

# pathtree

[![PyPI](https://img.shields.io/pypi/v/pathtree.svg)](https://pypi.org/project/pathtree/)

## Installation

`pip install pathtree`

## Example

* Use in Shell

Run command `find pathtree | python pathtree` will print this:

```txt
pathtree
├── pathtree.py
├── __main__.py
├── __pycache__
│   ├── pathtree.cpython-36.pyc
│   └── __main__.cpython-36.pyc
└── __init__.py
```

* Use Programmatically

```python
from pathtree import Tree

# Init
tree = Tree()
# Add path
tree.add_path(<path>)
# Print tree
print(tree.dump())
```

## License
The MIT License.


