i have a python script which currently runs in a shell cli.
i'd like to initiate this script from a web page.
the closest i got was to have the output displayed on the webpage (w/o linefeeds),
but it crashed when requesting input via raw_input().
i simply did 'exec python-script-name' from the cgi.
ok, i now understand why it crashed and why the output is displayed primitively
it's now my understanding that django can help.
where's the best place to start?
tnx
ams