Python library for easy tree displaying
Project description
Tree printer
============
This library provides a tree printer class for easy tree displaying
## Installation
``` sh
$ pip install treeprinter
```
## Basic usage
### Printer instance
``` python
from treeprinter import TreePrinter
class Tree(object):
def __init__(self, tag, children=None):
self.children = children or []
self.tag = tag
tree = Tree("animal", [
Tree("cat"),
Tree("dog", [Tree("chihuahua"), Tree("dalmatian")]),
Tree("wolf")])
printer = TreePrinter('children', 'tag')
printer.pprint(tree)
```
```
animal
|
---------------------------
| | |
cat dog wolf
|
----------
| |
chihuahua dalmatian
```
### Printer decorator
You could also get the same result by decorating your class like so to implement the \_\_str\_\_ method
``` python
@TreePrinter('children', 'tag')
class Tree(object):
def __init__(self, tag, children=None):
self.children = children or []
self.tag = tag
print(tree)
```
## Extensions
You can extend the library by implementing the base displayer
(see printers/json_printer.py)
``` python
from treeprinter import JsonPrinter
printer = JsonPrinter()
json = {
"fruits": ["Apple", "Banana", "Pear"],
"presidents": {
"France": ["Sarkozy", "Hollande"],
"USA": ["Trump", "Obama"]
},
"star": "Sun"
}
printer.pprint(json)
```
```
{}
|
--------------------------------------
| | |
{presidents} [fruits] star
| | |
---------------- -------------- Sun
| | | | |
[France] [USA] Apple Banana Pear
| |
--------- ------
| | | |
Sarkozy Hollande Trump Obama
```
============
This library provides a tree printer class for easy tree displaying
## Installation
``` sh
$ pip install treeprinter
```
## Basic usage
### Printer instance
``` python
from treeprinter import TreePrinter
class Tree(object):
def __init__(self, tag, children=None):
self.children = children or []
self.tag = tag
tree = Tree("animal", [
Tree("cat"),
Tree("dog", [Tree("chihuahua"), Tree("dalmatian")]),
Tree("wolf")])
printer = TreePrinter('children', 'tag')
printer.pprint(tree)
```
```
animal
|
---------------------------
| | |
cat dog wolf
|
----------
| |
chihuahua dalmatian
```
### Printer decorator
You could also get the same result by decorating your class like so to implement the \_\_str\_\_ method
``` python
@TreePrinter('children', 'tag')
class Tree(object):
def __init__(self, tag, children=None):
self.children = children or []
self.tag = tag
print(tree)
```
## Extensions
You can extend the library by implementing the base displayer
(see printers/json_printer.py)
``` python
from treeprinter import JsonPrinter
printer = JsonPrinter()
json = {
"fruits": ["Apple", "Banana", "Pear"],
"presidents": {
"France": ["Sarkozy", "Hollande"],
"USA": ["Trump", "Obama"]
},
"star": "Sun"
}
printer.pprint(json)
```
```
{}
|
--------------------------------------
| | |
{presidents} [fruits] star
| | |
---------------- -------------- Sun
| | | | |
[France] [USA] Apple Banana Pear
| |
--------- ------
| | | |
Sarkozy Hollande Trump Obama
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
treeprinter-0.0.2.tar.gz
(7.1 kB
view details)
File details
Details for the file treeprinter-0.0.2.tar.gz
.
File metadata
- Download URL: treeprinter-0.0.2.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28c80ab15176ad79a64c9a87641fbe25bc991628bc722f8934ba845b74a422c3 |
|
MD5 | 09a1dbe1285f1b254424c68bc9513b43 |
|
BLAKE2b-256 | 23acaf9d2a7e6f21923ffed0d3d9377dbdb1af4ff5b60fc95451046778767826 |