skillfed

anytree

Powerful and Lightweight Python Tree Data Structure with various plugins

anytree v2.13.0 10.5M downloads/30d#1,450 on PyPI1,088
License unclear AGING released

What it is and what it does

anytree is a pure-Python tree library that lets you build and work with hierarchical data by creating Node objects and linking them via parent-child relationships. You can construct trees from scratch, modify them by reparenting nodes, and traverse them using built-in iterators. The library also includes rendering tools like RenderTree for ASCII visualization and exporters like UniqueDotExporter for generating graph images, plus a NodeMixin base class that lets you add tree capabilities to any existing Python class.

The package is stable and supports Python 3.9 through 3.13 with no external runtime dependencies, making it straightforward to integrate into projects that need to represent or manipulate tree-shaped data—from organizational hierarchies to file systems to abstract syntax trees.

Use it for:

  • Build and visualize organizational hierarchies or family trees with parent-child relationships
  • Represent file system structures or directory trees for traversal and analysis
  • Create abstract syntax trees or expression trees for parsing and compiler work
  • Export tree structures to graphviz dot format for diagram generation
  • Add tree functionality to existing classes via NodeMixin without rewriting them

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a lightweight Python library for creating, manipulating, and traversing tree data structures with support for rendering and exporting trees in various formats.

Yes, if you need a simple, dependency-free tree library. The package is stable, supports current Python versions, has no known vulnerabilities, and is widely used (top 5000 on PyPI). The main caveat is that the license is undocumented—verify it meets your requirements before use in proprietary code. Maintenance is aging but not abandoned.

Install

anytree on PyPI

pip

pip install anytree

uv

uv add anytree

poetry

poetry add anytree

Installing anytree

Before you install

Low install friction with no runtime dependencies. Maintenance is aging—last release was 493 days ago, though the repository remains active with a recent commit on 2025-04-08 and 1088 stars.

License in practice

License status is unclear; the package metadata does not specify a license. Verify licensing terms before use in proprietary or restricted contexts.

Quickstart

pip install anytree

from anytree import Node, RenderTree

root = Node("root")
child1 = Node("child1", parent=root)
child2 = Node("child2", parent=root)

for pre, fill, node in RenderTree(root):
    print(f"{pre}{node.name}")

Graphviz must be installed separately on your system if you want to use UniqueDotExporter to generate image files.

Verify before relying

  • Whether graphviz must be installed separately for visualization features to work
  • Performance characteristics with large or deeply nested trees
  • Thread safety of tree operations

Package facts

License not declared (unclear)
Python support supports the current Python release (<4.0,>=3.9.2)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance aging — 493 days since the last release
Last repo commit
First released
Downloads 10,482,845/month — #1,450 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: anytree-2.13.0-py3-none-any.whl

Keywords: tree, tree data, treelib, tree walk, tree structure

Development Status :: 5 - Production/StableProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.9Topic :: Software Development :: Libraries :: Python Modules

Tags

tree data structure pythonnode tree librarytree traversal renderinghierarchical data structuretree visualization exportparent child relationshipstree manipulation library
data-structurestree-algorithmsgraph-visualization

More Python Modules packages