Python:脚本退出之前的CGI更新网页

时间:2011-03-08 00:59:47

标签: python cgi

好的,这是我的情况。我写了一个带有textarea的HTML表单,它向我的python脚本提交了一个POST请求。我使用cgi库来解析textarea并将其拆分为数组。然后我使用循环处理项目并在处理时打印项目。似乎即使我将print语句放在循环中,它也不会打印,直到整个过程完成并且脚本已退出。 html页面也会挂起,直到该过程完成。

我尝试在每个print语句后使用sys.std.flush()刷新缓冲区,但它没有帮助。

看看下面的代码。所有帮助将受到高度赞赏。

提前致谢。

import cgi
import urllib2

form = cgi.FieldStorage()

h = str(form.getvalue('list'))

list = h.split('\r\n');
try:
    print "Content-Type: text/html\n\n"
    print "<head>"
    print "<title>Age</title>"
    print "</head>"
    print "<body>"
    for x in range(0, len(list)):
        print "List: %s" %list[x] + "</br>"
        sck = urllib2.urlopen("http://www.google.com/")
        data = sck.read()
        if len(data) > 0:
            print "Data collected<br />"
        sck.close
    print "</body>"
except Exception:
    pass


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Python Demo</title>
<style type="text/css">
    #form {
        width: 400px;
    }

    #form label {
        display: block;
    }

    #form textarea {
        width: 100%;
    }

    #form input {
        display: block;
        margin-top: 10px;
    }
</style>
</head>

<body>
<div id="form">
<form id="form1" name="form1" method="post" action="demo.py">
    <label for="list">List:</label>
    <textarea name="list" id="list" cols="50" rows="10"></textarea>
    <input type="submit" name="submit" id="submit" value="Submit" />
</form>
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

http://docs.python.org/library/cgi.html#common-problems-and-solutions

它说大多数HTTP服务器缓冲cgi脚本的输出直到完成。