A package to trace recursive function calls and generate a recursion tree
Project description
Recursion Trace
Overview
recursion_trace
is a Python package that provides a decorator to trace recursive function calls. It generates a visual recursion tree using Graphviz, making it easier to understand and debug recursive algorithms.
Features
- Trace single and mutual recursion.
- Generate a Graphviz plot to visualize the recursion tree.
- Capture function arguments, return values, and recursion depth.
Installation
pip install recursion-trace
Usage
from recursion_trace import trace_recursion, show_recursion_tree
@trace_recursion
def factorial(n):
if n == 1:
return 1
return n * factorial(n - 1)
result = factorial(5)
# Show the recursion tree
show_recursion_tree(factorial.logs)
Dependencies
- graphviz
Author
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
recursion_trace-0.1.2.tar.gz
(2.0 kB
view details)
File details
Details for the file recursion_trace-0.1.2.tar.gz
.
File metadata
- Download URL: recursion_trace-0.1.2.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6bac2afbe5fb173197c3b8379109a3146ec97af32338a91c7bb6e8b82d342fe |
|
MD5 | 54dd17c5713ca0a12f49b647802532b2 |
|
BLAKE2b-256 | cfd7feda7f873f5b8472832d26153880c31474273524f5a73dc772a13b50195e |