Metadata-Version: 2.1
Name: crimson-tracer-beta-example
Version: 0.1.2
Summary: Your package description.
Author-email: Sisung Kim <sisung.kim1@gmail.com>
Project-URL: Homepage, https://github.com/crimson206/tracer
Project-URL: Bug Tracker, https://github.com/crimson206/tracer/issues
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown

## Install

``` sh
pip instal crimson-tracer-beta
```

## Example

### Tracer

`TraceManager` collects all the called functions with useful information. <br/>
The information includes the inputs to the called functions.

[tracer.ipynb](./example/tracer.ipynb)

### Node

Convert the traced result into a tree if you want a nested structure.

[node.ipynb](./example/node.ipynb)

