将简单的 Perl 脚本转换为向客户端发送响应的 Python?

Translate simple Perl script into Python that sends a response to client?

我是 Python 的新手,我的目标是让 Python 脚本向客户端打印一些内容,然后将其显示在我的网页上。

幸运的是,我偶然发现了一个小代码片段,它完全可以实现我想用 Python 实现的目标 - 不幸的是它是用 Perl 编写的。

我想知道是否有人可以告诉我如何在 Python 中编写 Perl 脚本?

这是包含所有代码的 link:http://www.degraeve.com/reference/simple-ajax-example.php

这是 Perl 脚本:

#!/usr/bin/perl -w
use CGI;

$query = new CGI;

$secretword = $query->param('w');
$remotehost = $query->remote_host();

print $query->header;
print "<p>The secret word is <b>$secretword</b> and your IP is <b>$remotehost</b>.</p>";

我怎么能在 Python 中说同样的话?

这里也是 HTML 页面:

<html>
<head>
<title>Simple Ajax Example</title>
<script language="Javascript">
function xmlhttpPost(strURL) {
    var xmlHttpReq = false;
    var self = this;
    // Mozilla/Safari
    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('POST', strURL, true);
    self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    self.xmlHttpReq.onreadystatechange = function() {
        if (self.xmlHttpReq.readyState == 4) {
            updatepage(self.xmlHttpReq.responseText);
        }
    }
    self.xmlHttpReq.send(getquerystring());
}

function getquerystring() {
    var form     = document.forms['f1'];
    var word = form.word.value;
    qstr = 'w=' + escape(word);  // NOTE: no '?' before querystring
    return qstr;
}

function updatepage(str){
    document.getElementById("result").innerHTML = str;
}
</script>
</head>
<body>
<form name="f1">
  <p>word: <input name="word" type="text">  
  <input value="Go" type="button" onclick='JavaScript:xmlhttpPost("/cgi-bin/ajaxTest.pl")'></p>
  <div id="result"></div>
</form>
</body>
</html>

像这样的东西应该有用。

#!/usr/bin/env python 

import cgi
import os
import cgitb; cgitb.enable()  # for troubleshooting

form = cgi.FieldStorage()
secretword = form.getfirst("w", "")
remotehost = cgi.escape(os.environ["REMOTE_HOST"] if "REMOTE_HOST" in os.environ else os.environ["REMOTE_ADDR"])

print "Content-Type: text/html"     
print # blank line, end of headers
print "<p>The secret word is <b>" + secretword + "</b> and your IP is <b>" + remotehost + "</b>.</p>"

编辑 1:如何列出所有环境变量。

for k in os.environ.keys():
    print "<b>%20s</b>: %s<\br>" % (k, os.environ[k])