Daniel Paczuski Bak
Daniel Paczuski Bak

Reputation: 4088

PDB - pop up console

I have some python code which is being run by a web service when a button is clicked. This means that I don't have a console associated with the python process.

Is it possible to "pop up" a PDB debugger, and if so, how would I accomplish this?

Upvotes: 1

Views: 65

Answers (1)

Jim Todd
Jim Todd

Reputation: 1588

You can use web pdb module of python. It is very useful when you do web oriented testing where you might not be running in a console.

web pdb

Upvotes: 2

Related Questions