Mac App On El Capitan With Python Child Process
I have been building an Mac app and part of its architecture is that it spins off a python child process to index some files in the background (there are simpler libraries to use f
Solution 1:
Perhaps instead of using sockets, you could have your Python process communicate with the parent process by reading from stdin and/or writing to stdout? That would avoid any interactions with the firewall.
Post a Comment for "Mac App On El Capitan With Python Child Process"