I am developing a Python application that needs to spawn a child process (written in C) from time to time, to feed it some binary data and to get a reply. The child process will only be spawned when needed and will only serve one request. What are my options here? Is it safe to use stdin/stdout?I am developing a Python application that needs