quicktracer

A simple function to do realtime tracing/monitoring/plotting


Keywords
testing, tracing, plot, RLBot, quicktracer, realtime, monitoring
License
MIT
Install
pip install quicktracer==1.4.0

Documentation

# Quicktrace
## Call trace and see what your program is up to.

.. code-block:: python

    # Demo: Trace some dummy data
    import math
    import time
    from quicktracer import trace
    for i in range(2000):
        trace(30 * math.sin(i/30))
        trace(.3 * math.cos(i/20))
        time.sleep(0.002)