Skip to main content

A Python package for managing and visualizing interval tree structures

Project description

Tree Interval Logo

Tree Interval

A powerful Python package for managing, analyzing, and visualizing tree structures with rich interval-based node positioning

Try it on Replit

✨ Features

  • 🔮 Future Class: Powerful dynamic attribute handling with context-aware error reporting and smart chain creation
  • 📍 Position-Aware Nodes: Track code positions with line numbers, column offsets and intervals
  • 🌲 AST Analysis: Built-in support for Python AST traversal and node location
  • 🔍 Frame Analysis: Runtime code inspection with frame position tracking
  • 🎨 Rich Visualization: Multiple visualization options including ASCII trees and Rich-based pretty printing
  • 💾 JSON Serialization: Full support for saving and loading tree structures
  • 🔎 Flexible Node Search: Parent, child and sibling search with custom predicates

🚀 Quick Start

Dynamic Attribute Handling with Future

from tree_interval import Future

class Nested:
    def __init__(self):
        self.__dict__ = {}
        
    def __getattr__(self, name):
        return Future(name, frame=1, instance=self)

# Dynamic attribute chain creation
obj = Nested()
obj.a.b.c = 42  # Creates nested structure automatically
print(obj.a.b.c)  # 42

# Smart error reporting
print(obj.x.y.z)  # Raises detailed error with context

Tree Operations

from tree_interval import Tree, Leaf, Position

# Create a basic tree
tree = Tree("Example")
root = Leaf(Position(0, 100), "Root")
child = Leaf(Position(10, 50), "Child")

tree.root = root
tree.add_leaf(child)

# Visualize the tree
tree.visualize()

📦 Installation

pip install tree-interval

🎯 Core Components

Position Types

# Basic Position
pos = Position(0, 100)

# Line-Aware Position
pos = Position(0, 100)
pos.lineno = 1
pos.end_lineno = 5

# Column-Aware Position
pos = Position(0, 100)
pos.col_offset = 4
pos.end_col_offset = 8

Tree Visualization

# Basic ASCII Tree
tree.visualize()

# Rich Pretty Printing
from tree_interval.rich_printer import RichTreePrinter
printer = RichTreePrinter()
printer.print_tree(tree)

📚 Documentation

💡 Use Cases

  1. Code Analysis

    • Track source positions in AST nodes
    • Locate runtime code execution points
    • Analyze code structure and relationships
  2. Tree Visualization

    • Debug tree structures
    • Generate documentation
    • Analyze hierarchical data
  3. Position Tracking

    • Map source locations
    • Track text positions
    • Handle nested intervals

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.


Built with ❤️ by Kairos

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

tree_interval-0.1.31.tar.gz (36.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tree_interval-0.1.31-py3-none-any.whl (29.0 kB view details)

Uploaded Python 3

File details

Details for the file tree_interval-0.1.31.tar.gz.

File metadata

  • Download URL: tree_interval-0.1.31.tar.gz
  • Upload date:
  • Size: 36.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.10

File hashes

Hashes for tree_interval-0.1.31.tar.gz
Algorithm Hash digest
SHA256 a9e52af92122ce6433dd18ab1a9cb9d0217ee012fae14d57b925fe0f17837fe4
MD5 1ea20a24f99906be261dbf6812f14594
BLAKE2b-256 4a81cbb5f9b578187b9e872544d26ffebed2d434d48baf9786481e15aedd4789

See more details on using hashes here.

File details

Details for the file tree_interval-0.1.31-py3-none-any.whl.

File metadata

  • Download URL: tree_interval-0.1.31-py3-none-any.whl
  • Upload date:
  • Size: 29.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.10

File hashes

Hashes for tree_interval-0.1.31-py3-none-any.whl
Algorithm Hash digest
SHA256 03d7e87f8148c80a70f0c57f5c82ca9a5709e3f5f15100674a1008fabc57cd1f
MD5 2df79734a20b2696f555badddeb92279
BLAKE2b-256 dc2e55bafeb57bd1bd36f776c412eace2cbf9b0c02bb23160ab94b962c6f8382

See more details on using hashes here.

Supported by

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