I want to create deamon-like application that will have separated always running in background process and called every time from console process that will somehow pass requests to "deamon" process. The idea is that you can do something like ui.py create something
and this ui.py will send its arguments to running and daemon it will perform requested action. After that ui.py will stop and deamon will continue running.
I was thinking about doing in throw network sockets or even http requests, but I hope to find more elegant solution. Maybe there is some way to establish Pipe or Queue connection every time.
P.S. It should be crossplatform.