i don't understand the use of the os.popen function, i've used it to read things, for example:
>>> a = os.popen("netstat")
>>> for line in a.readlines():
print line
Active Connections
>>>
i understand that, but there is also a buffersize and a write ability, but i've played about with it and i keep getting error's and stuff, i'm wondering if someone happens to know anything about the writing ability, i was thinking it would be cool if i could open some kind of pipe and write to it.
thanks