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.3.tar.gz
(2.1 kB
view details)
File details
Details for the file recursion_trace-0.1.3.tar.gz
.
File metadata
- Download URL: recursion_trace-0.1.3.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b49cab9241bdf51f81fa093a8ad3e3a8bffc0e8010f7f8d1ba26a7377c4648c |
|
MD5 | 3e04ec145abd10aa0e9b35023d8ab131 |
|
BLAKE2b-256 | 417ddc962914e2be69155bb4d717f8d9e6bd3cc3171ba3dffa290a9ab081ff44 |