Skip to main content

Python Tree data structures and tools.

Project description

Forestry

Python Tree data structures and tools.

Forestry Package Installation

Install forestry with python's pipenv or pip package managers.

$ pipenv install forestry
$ pip install forestry

Getting Started

>>> t = Tree(key='a', value=1)
>>> assert t['a'] == 1
>>> t.append(key='b', value=2)  # Adds a child to the root node by default
>>> assert t['b'] == 2
>>> t.append(key='c', value=3)  # Add another child to the root node
>>> t.parent(key='c') == 1  # Ask for the parent of c
>>> t.children(key='a') == [2, 3]  # Ask for the children of a
>>> t.append(key='d', value=4, parent='b')  # Adds child to b
>>> assert t.ancestors(key='d') == [2, 1]
>>> assert t.path(key='d') == [1, 2, 4]  # Traverse from root to node

Project details


Download files

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

Source Distribution

forestry-0.0.2.tar.gz (12.2 kB view hashes)

Uploaded Source

Built Distribution

forestry-0.0.2-py3-none-any.whl (6.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