hs.py = run an exec and pipe back the result as a member of a list

'2+ electriclightheads at gmail.com
Thu Feb 25 11:22:22 EST 2010


did this for hascillator01 that i ghc-ed from hascillator01.hs into ./

import popen2

wave = []
for frame in range(890, 1010):
wave.append(int(popen2.Popen3('./hascillator01 ' +
str(frame)).fromchild.readline()))
print wave

hascillator01 takes int and returns another int
so yes this became a [ints] and that is what i expected
but also yes it is so slow
any cooler way to do it?
now am reading the suprocess's doc .. but a bit hard to get it

-- 
SaRiGaMa's Oil Vending Orchestra
is podcasting:
http://sarigama.namaste.jp/podcast/rss.xml



More information about the Python-list mailing list