Re: [Pythonmac-SIG] Correct way to send info to running program

2005-05-28 Thread Dethe Elza
Bob wrote: > NSDistributedNotificationCenter? > > You didn't really specify what your requirements are... > I'm trying to set up a "simplest thing that could possibly work" for getting events from another application which doesn't really play well with others. I have hacked it enough that i

Re: [Pythonmac-SIG] Correct way to send info to running program

2005-05-28 Thread Bob Ippolito
On May 27, 2005, at 11:04 PM, Dethe Elza wrote: > I want to be able to periodically send data to a running program, > from the command-line. I was looking at the various NSPort classes, > but just discovered that NSSocketPort is not a raw socket, but only > intended to talk to other NSPort insta

[Pythonmac-SIG] Correct way to send info to running program

2005-05-27 Thread Dethe Elza
I want to be able to periodically send data to a running program, from the command-line. I was looking at the various NSPort classes, but just discovered that NSSocketPort is not a raw socket, but only intended to talk to other NSPort instances. Surely I'm not the only one who wants to be