Carl Karsten wrote: > Uwe Grauer wrote: >> Carl Karsten wrote: >>> The video setup I am doing for PyCon results in a bunch of terminal windows >>> or >>> tabs open, and having to click around to monitor status and debug problems. >>> I >>> am sure this can be done better. not really sure how, kinda depends on >>> what can >>> be done easily. The last thing I need is something else to debug, so the >>> manager code needs to be fairly simple/stable/goodle. >>> >>> I have seen python code that uses process.popen and dose stuff with stdout >>> - I >>> am guessing/hoping it can be displayed in a wx control (the code I saw was >>> console based, so it just sent stuff to stdout, I am guessing with python >>> print >>> statements - didn't look into it too much.) >>> >> What has all this to do with Dabo? > > "displayed in a wx control" > >> For easy management of all this in python, take a look at: >> http://docs.python.org/library/multiprocessing.html >> >> Maybe that's what you are after. > > I see no UI. I don't see how this is any better than what I currently have.
The module allows you to spawn your different child processes from one management app wich the ability to redirect the various outputs of the child processes to your managemant app in order to control these subprocesses from your master app. It makes the handling of interprocess communication to child processes a magnitude easier. Of cause it doesn't have a UI. You have to implement your management UI in your master app. Uwe _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
