Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jml/tree-format

Python library for printing trees on the console
https://github.com/jml/tree-format

Last synced: about 1 month ago
JSON representation

Python library for printing trees on the console

Awesome Lists containing this project

README

        

Python library to generate nicely formatted trees, like the UNIX `tree`
command.

## Example

Produce output like this:

```
foo
├── bar
│ ├── a
│ └── b
├── baz
└── qux
└── c⏎
d
```

using code like this:

```python
from operator import itemgetter

from tree_format import format_tree

tree = (
'foo', [
('bar', [
('a', []),
('b', []),
]),
('baz', []),
('qux', [
('c\nd', []),
]),
],
)

print format_tree(
tree, format_node=itemgetter(0), get_children=itemgetter(1))
```

## License

This is made available under the Apache Software License, version 2.0.

Copyright (c) 2015 - Jonathan M. Lange

## Testing

Run tests with:

```
python -m testtools.run discover
```