码迷,mamicode.com
首页 > 编程语言 > 详细

iis部署python运行环境

时间:2017-12-12 16:02:15      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:mil   main   ted   storage   erro   启用   first   网站   type   

IIS部署

1.启用或者关闭windows功能,选择安装CGI,我这里已经安装过了。

技术分享图片

 

 2.安装后重新打开IIS看到CGI

技术分享图片

 

 

3.配置ISAPI和CGI限制

技术分享图片

 

 4.右上角添加,路径是python安装路径,注意要加上两个 %s %s

技术分享图片

点确定

技术分享图片

 

5.处理映射关系

技术分享图片

 

6.右上角  添加模块,模块选择:CgiModule 

技术分享图片

出现弹出框,点“是”

技术分享图片

添加完成

 

 技术分享图片

 

7.接下来测试一下,创建一个网站

 

 技术分享图片

 

 

服务器端测试代码:

 1 #!/usr/bin/python
 2 import cgi
 3 import json
 4 #!/usr/bin/python
 5 # print ("Content-Type: text/html")
 6 # print ("")
 7 # print ("<html>")
 8 # print ("<h2>CGI Script Output</h2>")
 9 # print ("<p>This page was generated by a Python CGI script.</p>")
10 # print ("</html>")
11 def main(): 
12     print ("Content-type: text/html\n")
13     form = cgi.FieldStorage()
14     print(form.keys())
15     print(type(form))
16     if form.keys() and form["ServiceCode"].value != "":
17         print ("<h1> Hello",form["ServiceCode"].value,"</h1>" )
18 
19     else:   
20         print ("<h1> Error! Please enter first name.</h1>")
21 main()

技术分享图片

 

 

 测试OK!

iis部署python运行环境

标签:mil   main   ted   storage   erro   启用   first   网站   type   

原文地址:http://www.cnblogs.com/shenh/p/8028081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!