在Mac上的服务器上运行Python [英] Running Python On Server With Mac

查看:131
本文介绍了在Mac上的服务器上运行Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在以下地址运行python文件: http://usersignup.drawyourpets.com/.如您所见,它显示的是文件夹中的文件,但实际上并未运行它们( EDIT :现在只返回500错误).当我使用Google App Engine在本地运行文件时,看起来像这样:

I'm trying to run my python files at this address: http://usersignup.drawyourpets.com/. As you can see, it's displaying the files in the folder but not actually running them (EDIT: now it just returns a 500 error). When I run the files locally using Google App Engine, it looks like this:

这是正确的.这就是我的文件在FTP(Filezilla)中的样子:

This is correct. And this is what my files look like in FTP (Filezilla):

所以我知道它们在正确的文件夹中.

So I know they're in the right folder.

这始终与HTML文件一起使用,为了使python在浏览器中运行,我需要做什么?是否需要将某些代码添加到main.py文件中?我注意到了这篇文章:

This has always worked with HTML files, what do I need to do in order to get python running in the browser? Is there a certain line of code that I need to add to my main.py file? I noticed this article:

Mac Web Server上的Python

但是它并没有真正指定在何处添加以下代码行:AddHandler cgi-script .cgi .py(如果这就是我需要做的).

But it doesn't really specify where to add this line of code: AddHandler cgi-script .cgi .py (if that's even what I need to do).

另外,我托管在HostGator上,它确实支持python,所以我知道这不是问题.

Also, I'm hosting with HostGator, which does support python so I know that's not the problem.

感谢您的帮助!

编辑:这是我要运行的python文件main.py:

EDIT: Here's the python file I'm trying to run, main.py:

#!/usr/bin/env python
#
# Copyright 2007 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.

# See the License for the specific language governing permissions and
# limitations under the License.
#

import webapp2
import cgi

def Build_Page(textarea_content):

form = """
<table>
    <tr>
    <td>
    <label>{0}</label>
    </td>
    <td>
    <label>Username: <input type="text" name="username"/></label>
    </td></tr>

    <tr>
    <td>
    <label>{1}</label>
    </td>
    <td>
    <label>Password: <input type="text" name="password"/></label>
    </td></tr>

    <tr>
    <td> 
    <label>{2}</label>
    </td>
    <td>
    <label>Verify Password: <input type="text" name="verify_password"/>
    </label>
    </td></tr>

    <tr>
    <td>
    <label>{3}</label>
    </td>
    <td>
    <label>Email (optional): <input type="text" name="email"/></label>
    </td></tr>

    </table>
    """
submit = "<input type = 'submit'/>"
form2 = ("<form method='post'>" + form + submit + "
</form>").format("Please enter a username",
"Please enter a password", "Passwords must match","Please enter a valid
email")

header = "<h1>User Signup</h1>" 

return header + form2

class MainHandler(webapp2.RequestHandler):
    def get(self):
        content = Build_Page("")
        self.response.write(content)

    def post(self):
    # look inside the request to figure out what the user typed
        username = self.request.get("username")
        password = self.request.get("password")
        verify_password = self.request.get("verify_password")
        email = self.request.get("email")
    # if the user typed nothing at all, redirect
        if (not username) or (username.strip() == ""):
            error = "Please enter a username."
            self.response.write(error)
            self.redirect("/?error=" + cgi.escape(error, quote=True))

        if (not password) or (username.strip() == ""):
            error = "Please enter a username."
            self.response.write(error)
            self.redirect("/?error=" + cgi.escape(error, quote=True))

        """if (not username) or (username.strip() == ""):
            error = "Please enter a username."
            self.response.write(error)
            self.redirect("/?error=" + cgi.escape(error, quote=True))

        if (not username) or (username.strip() == ""):
            error = "Please enter a username."
            self.response.write(error)
            self.redirect("/?error=" + cgi.escape(error,
            quote=True))"""

        #self.write.form2    
        #message = self.request.get("message") # hello</textarea>hello
        #rotation = int(self.request.get("rotation")) # 0 
        #encrypted_message = caesar.encrypt(message, rotation) 
        #hello</textarea>hello
        #escaped_message = cgi.escape(encrypted_message) 
        # hello&lt;/textarea&gt;hello
        #content = build_page(escaped_message)
        #self.response.write(content)

        #original_form = form.format("","","","","","")
        #page footer

        #class TestHandler(webapp2.RequestHandler):
        #    """ Handles requests coming in to '/add'
        #        e.g. www.user-signup.com/add
        #    """
        #    def get(self):

app = webapp2.WSGIApplication([
    ('/', MainHandler),
    #('/', TestHandler)
], debug=True)

推荐答案

显然,根据hostgator,您必须将以下代码行添加到.htaccess文件的顶部:

Apparently, according to hostgator, you have to add these lines of code to the top of your .htaccess file:

Addhandler cgi-script .py .pl .cgi
DirectoryIndex main.py 

但是,这不足以使该python文件在HostGator网站上运行,因为HostGator不支持webapp2,该文件在该文件中已多次使用.现在我想弄清楚我可以代替webapp2(

But that isn't enough to get this python file to run on a HostGator website, because HostGator doesn't support webapp2, which is used several times throughout this file. Now I'm trying to figure out what I can use in place of webapp2 (See New Question).

这篇关于在Mac上的服务器上运行Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆