Skip to content

Instantly share code, notes, and snippets.

View anahimana's full-sized avatar

Alex Nahimana anahimana

  • Nashville, TN
View GitHub Profile
@obfusk
obfusk / break.py
Last active December 7, 2024 13:12
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()))