私はこのブログhttp://geographika.co.uk/setting-up-python-on-iis7からすべてを行いました。Python 2.6(Djangoではなく)のみを使用していて、Pythonスクリプトでクエリ文字列パラメーターを取得したいと考えています。
たとえば、http://localhost/MyApp/program.py?par=test
スクリプトprogram.pyで値テストを取得する方法:
from Http import *
def Request():
Header("Content-type: text/html")
Write(get_param("par"))
ありがとう。