Okay people this is an easy one. I want my python program to sit and listen for another process to tell it what to do.
ProcessA.c starts ->
ProcessA starts python listener program ->
ProcessA asks it for stuff from time to time
I can make my python program sit and wait for input, but after that I'm stuck. Do I need to use sockets?
What can I use to talk to my running python program from another program?