tags:

views:

1120

answers:

1

I work in a windows environment and would prefer to deploy code to IIS. At the same time I would like to code in python. Having read that IIS can run fastCGI application, I went to the IIS site where it describes in detail how to get PHP up and running but not much about anything else. Does anyone have experience getting a python framework running under IIS using something other that plain old CGI?

If so can you explain to direct me to some instructions on setting this up.

+4  A: 

There shouldn't be any need to use FastCGI. There exists a ISAPI extension for WSGI.

John Millikin