I'm currently working on a project that includes a software package written by the graduate student who was here before me. In short, the package is a control system for a piece of hardware and has two separate applications that run concurrently- Module1 and Module2. Clunky, but it works just fine for now.
My current issue deals with getting these two Python programs to 'talk' to each other. Module1 is a control panel of sorts, and Module2 is a live-output plot of the data collection taking place. If a certain variable in Module1's class is true, I need Module2 to be able to read this and react accordingly. Module1 has a Tkinter framework, and Module2 is built with PyQt, if it helps.