Python Forum
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Step through process
#5
You can have a look on module pdb :
https://docs.python.org/3/library/pdb.html
It comes with python and it is extensible, so you can add your own debugging code and create automation if you wish.
Also, Idle comes with python, and is slightly different.
Pudb is also console based, very easy to use, and very efficient. I use it on production or slow computers with no GUI. It's in debian repository. See :
https://pypi.org/project/pudb/
Furthermore, winpdb is with a GUI, works on linux (and windows, but I never tried on it), with an interesting feature : it can be attached by a socket, so you can debug background or distant processes. Useful with web applications and also in debian repository.
On windows, you could try pywin32, efficient for GUI applications.
Reply


Messages In This Thread
Step through process - by tjnichols - Dec-10-2018, 11:16 PM
RE: Step through process - by Larz60+ - Dec-10-2018, 11:28 PM
RE: Step through process - by micseydel - Dec-12-2018, 04:28 AM
RE: Step through process - by buran - Dec-12-2018, 07:17 AM
RE: Step through process - by jeanMichelBain - Dec-12-2018, 08:06 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to sharing object between multiple process from main process using Pipe Subrata 1 3,710 Sep-03-2019, 09:49 PM
Last Post: woooee
  Step -1 Upandon 2 3,087 Feb-27-2018, 06:02 AM
Last Post: Upandon

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020