# treelib **Repository Path**: iroan/treelib ## Basic Information - **Project Name**: treelib - **Description**: An efficient implementation of tree data structure in python 2/3. - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-05-16 - **Last Updated**: 2024-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README treelib ------- Tree implementation in python: simple to use for you. [![Build Status](https://travis-ci.org/caesar0301/treelib.svg?branch=master)](https://travis-ci.org/caesar0301/treelib) [![Documentation Status](https://readthedocs.org/projects/treelib/badge/?version=latest)](http://treelib.readthedocs.io/en/latest/?badge=latest) [![Latest](https://img.shields.io/pypi/v/treelib.svg)](https://pypi.python.org/pypi/treelib) [![Status](https://img.shields.io/pypi/status/treelib.svg)](https://pypi.python.org/pypi/treelib) [![PyV](https://img.shields.io/pypi/pyversions/treelib.svg)](https://pypi.python.org/pypi/treelib) Quick Start ----------- sudo easy_install -U treelib Documentation ------------- For installation, APIs and examples, see http://treelib.readthedocs.io/en/latest/ Update ------- * 2017-08-10: Abandon supporting Python 3.2 since v1.4.0. * 2012-07-07: First published. Contributors ------------ > Brett Alistair Kromkamp (brettkromkamp@gmail.com): Post basic idea online. > > Xiaming Chen (chenxm35@gmail.com): Finished primary parts and made the library freely public. > > Holger Bast (holgerbast@gmx.de): Replaced list with `dict` for fast node index and optimized the performance. > > Ilya Kuprik (ilya-spy@ynadex.ru): Added ZIGZAG tree-walk algorithm to tree traversal.