Skip to content

Instantly share code, notes, and snippets.

View ABaldwinHunter's full-sized avatar

Ashley Baldwin-Hunter ABaldwinHunter

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()))