Skip to main content

Tree library

Project description

LittleTree is a library that provides a tree data structure to python, which is both fast and flexible. It can be used to represent file systems, taxonomies and much more.

Features

  • Dict-like usage for basic creation and modification of trees.
  • Performant implementation of common tree operations and traversals.
  • Can be subclassed. It's possible to make subclasses use a different dict backend (indexed.Dict, SortedDict).
  • Can handle big trees that are 10,000 layers deep.
  • Can be imported / exported to many different formats (nested dict, rows, relations, graphviz, mermaid, newick, networkx).
  • Purely written in Python.

Limitations

  • Each node has at most one parent. (It's a tree not a graph)
  • Different children of the same parent must have different names. (It's not a multidict)

Installing

  • Use pip to install littletree:
$ pip install --upgrade littletree

Usage

A tree can be used in a similar way as a dict:

from littletree import Node

tree = Node(identifier="World")
tree["Asia"] = Node()
tree["Africa"] = Node()
tree["America"] = Node()
tree["Europe"] = Node()

# Print tree to console
tree.show()

# Show tree as an image
tree.to_image().show()

The resulting tree is printed like this:

World
├─ Asia
├─ Africa
├─ America
└─ Europe

And it creates the following image:

world

See tutorial for more information.

See further: Pypi | Github | Issues

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

littletree-0.5.1-py3-none-any.whl (32.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page