将简单的Perl脚本翻译成Python,向客户端发送响应

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

本文关键字:客户端 响应 Python 简单 Perl 脚本 翻译      更新时间:2024-05-18

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

幸运的是,我偶然发现了一个小代码片段,它正是我想要用Python实现的——不幸的是,它是用Perl编写的。

我想知道是否有人能向我展示如何用Python编写Perl脚本?

以下是包含所有代码的链接: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])