6 lines
233 B
Python
6 lines
233 B
Python
from reddit import get_events
|
|
|
|
import sys, ipdb, traceback; exec("def info(type, value, tb):\n traceback.print_exception(type, value, tb)\n ipdb.pm()"); sys.excepthook = info # type: ignore
|
|
|
|
for e in get_events():
|
|
print(e)
|