Metadata-Version: 2.4
Name: pycodeit-tracer
Version: 1.0.0
Summary: A Python code execution trace helper for interview preparation
License: MIT
Project-URL: Homepage, https://www.pycodeit.com
Project-URL: Practice Platform, https://www.pycodeit.com
Project-URL: Source Code, https://github.com/RichieDatalyst/python-code-tracing-resources
Project-URL: Bug Tracker, https://github.com/RichieDatalyst/python-code-tracing-resources/issues
Keywords: python,code-tracing,dry-run,interview-prep,output-prediction,debugging
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pycodeit-tracer

A lightweight Python code execution trace decorator for developers
practicing dry-run output prediction and interview preparation.

## Install
pip install pycodeit-tracer

## Usage
from pycodeit_tracer import trace_steps

@trace_steps
def add(a, b):
    return a + b

add(3, 4)
# [trace] Calling add with args=(3, 4)
# [trace] add returned: 7

## Practice More
Practice unlimited interactive tracing challenges at
**[PyCodeIt](https://www.pycodeit.com)** It is free, no install required.
