Re: newbie pipe question

2006-09-06 Thread linuxnooby
Thanks David -- http://mail.python.org/mailman/listinfo/python-list

Re: newbie pipe question

2006-09-05 Thread Michael
[EMAIL PROTECTED] wrote: > Hi > > I want to write a python script that accepts input ( a single line of > text) from another program (squid proxy) and sends back output ( a > single line of text). I am not sure how to go about this With a squid redirector (which is presumably what you mean) the

Re: newbie pipe question

2006-09-05 Thread Tal Einat
[EMAIL PROTECTED] wrote: > Hi > > I want to write a python script that accepts input ( a single line of > text) from another program (squid proxy) and sends back output ( a > single line of text). I am not sure how to go about this > > cheers David If you want the script to recieve this line in s

Re: newbie pipe question

2006-09-05 Thread Steve Holden
[EMAIL PROTECTED] wrote: > Hi > > I want to write a python script that accepts input ( a single line of > text) from another program (squid proxy) and sends back output ( a > single line of text). I am not sure how to go about this > Traditionally one of the popenN() functions would have been the