, "file2", "file3"])
# Open file3, do stuff to the data, save results to file4
subprocess.call(["command2", "file4", "file5"])
# Open file5, convert data to a large string containing XML.
return xmlString
- Read
work. Any explanation would be welcome.
Thanks, Read Roberts
On 10/17/09 1:53 AM, "Nick Joyce" wrote:
On 17 Oct 2009, at 05:15, Read Roberts wrote:
> I have a Python server using twisted which responds to pyAMF calls
> from
> Flex/Air applications (following Bruce Eck
d Python 2.6 and later, a twisted bug is fixed such
that I could use subprocess.Popen, and that the next release of AIR will
allow direct execv calls. However, for performance issues I still want to
call one Python process running a server, and I have to work within a Python
2.5 environment.
T