Python Forum
Background Execution Process - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html)
+--- Forum: Bar (https://python-forum.io/forum-27.html)
+--- Thread: Background Execution Process (/thread-17052.html)



Background Execution Process - sunnyarora - Mar-26-2019

Hi Could you please explain how can we see live execution process of codes in PyCharm?


RE: Background Execution Process - Larz60+ - Mar-26-2019

Moved to bar, as this question has a better chance of being answered in a PyCharm forum, and the question is more OS oriented than python oriented.


RE: Background Execution Process - Skaperen - Mar-28-2019

this is probably not what you meant since PyCharm is not involved. i do background commands via the screen command. i have python scripts to make it easier to do, including injecting input (bgi) and snooping on the output (bgo). the scripts can make new sessions (bgn) and list what sessions exist (bgl). there are also scripts to test if running in a background (bgr) and test if a named session exists (bgt). i use this for many things several times a day. for example, my backups (sent to the cloud) run in a background session.


RE: Background Execution Process - DeaD_EyE - Mar-28-2019

The process is started with a debugger. PyCharm communicates with this debugger.
You can try pudb.