Skip to content

Instantly share code, notes, and snippets.

View jeffersonchoi's full-sized avatar

Jefferson Choi jeffersonchoi

View GitHub Profile
@obfusk
obfusk / break.py
Last active September 2, 2024 16:23
python "breakpoint" (more or less equivalent to ruby's binding.pry); for a proper debugger, use https://docs.python.org/3/library/pdb.html
import code; code.interact(local=dict(globals(), **locals()))