Python has a built-in API for tracing: <a href="https://docs.python.org/3/library/sys.html#sys.settrace" rel="nofollow">https://docs.python.org/3/library/sys.html#sys.settrace</a><p>Here's an example of how to use it (obviously a minimal case, you can customise your handler do do whatever you need):<p><pre><code> def mytrace(frame, event, arg):
if event == "call":
print("call", frame.f_code.co_name, frame.f_locals)
elif event == "return":
print("return", frame.f_code.co_name, arg)
return mytrace
import sys
sys.settrace(mytrace)
</code></pre>
For example, given the following code:<p><pre><code> def three(z):
return 3
def two(y):
return three("BBB") - 1
def one():
return two("AAA") - 1
one()
</code></pre>
It will output:<p><pre><code> call one {}
call two {'y': 'AAA'}
call three {'z': 'BBB'}
return three 3
return two 2
return one 1</code></pre>
There are many different tools, but when I want to quickly understand what the code was doing I have been reaching for pysnooper:
<a href="https://pypi.org/project/PySnooper/" rel="nofollow">https://pypi.org/project/PySnooper/</a><p>Has a pretty nice and importantly colored output by default, which I find much easier to follow. In many cases snooping one specific function has done the job. It has an easy to use decorator to decorate any function without having to otherwise intercept the main python invocation or set something up at the start. Good for libraries etc.<p>pysnooper has mostly been enough for me but the "snoop" mentioned in the article seems to be a superset and more. Will have to give it a go next time.<p>Outside of this if I want to understand performance or more roughly what code paths are executing (and not a per-statement trace) then austin and py-spy are both amazing.. convert to flamescope and drop into flamescope.app.
A more traditional debugger for Python.<p><a href="https://github.com/inducer/pudb">https://github.com/inducer/pudb</a>
I'll throw in my own too: <a href="https://github.com/kunalb/panopticon">https://github.com/kunalb/panopticon</a>
Fantastic article and something I've been looking for better tools for. None of them seem to have my ideal workflow though -- providing an external manifest of what and how to trace that can be used against an existing program without changing the code. Something like Otel's auto instrumentation.
Fyi, the table of contents gets cut off (its box is smaller than its contents) at zoom levels of 90% or larger for me. Here's a screenshot at 100% zoom <a href="https://imgur.com/a/0t9cKs5" rel="nofollow">https://imgur.com/a/0t9cKs5</a><p>Great article!
What's the modern practical use case for tracing in python? Environments without an IDE/remote debugger?<p>I can't recall the last time I needed to enable tracing, in the last couple of decades, besides bash scripts.