Metadata-Version: 1.1
Name: py-archy
Version: 1.0.0
Summary: Implementation of the popular node-archy tool in python
Home-page: https://github.com/dcdanko/py_archy
Author: David C. Danko
Author-email: dcdanko@gmail.com
License: MIT license
Description: 
        # PyArchy
        
        Implementation of the popular node-archy tool in python.
        Draws good looking trees and lists on the command line.
        
        [The original Archy on NPM](https://www.npmjs.com/package/archy)
        
        * Free software: MIT license
        
        ### Input:
        
        ```
        from pyarchy import pyarchy
        
        tree = { 'nodes' : [{ 'nodes' : ['a','b','c'], 'label' : 'bar'}, 'bizz'], 'label' : 'foo'}
        pyarchy(tree, unicode=False)
        ```
        ### Output:
        With Unicode
        ```
        foo
        └─┬ bar 
          ├── a
          ├── b
          └── c
        └── bizz
        ```
        With ASCII
        ```
        foo
        +-- bar
            +-- a
            +-- b
            `-- c
        `-- bizz
        ```
        
        ### Credits
        This package was created with Cookiecutter.
        
        
        
Keywords: pyarchy
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
