5

How do I debug remote python/twisted code from within Emacs?

The closest I got with an internet search was Geben, if I understand correctly, but it has not been maintained for a few years now.

Dan
  • 32,584
  • 6
  • 98
  • 168
Shai Efrati
  • 151
  • 4

2 Answers2

3

You can try qdb

https://github.com/quantopian/qdb

An emacs interface (qbd.el) is included: https://github.com/quantopian/qdb/tree/master/client/emacs

djangoliv
  • 3,169
  • 16
  • 31
0

I do not write python code in Emacs, but I would try pdb (Emacs built-in python debugger) on a remote python file.

Michael Albinus
  • 6,647
  • 14
  • 20