wsgi从文件夹导入类

时间:2016-01-08 04:27:57

标签: python wsgi

我有脚本: 的 /home/ubuntu/.wsgi/main.wsgi

import os, sys
sys.path.append('.')
def application(environ, start_response):
    status = '200 OK'
    output = 'See you at terokarvinen.com!\n'
    response_headers = [('Content-type', 'text/plain'),
        ('Content-Length', str(len(output)))]
    start_response(status, response_headers)
    return [output]

我想从目录中导入一个类: 的 /home/ubuntu/.wsgi/modules/myclass.wsgi

我是mod_wsgi的新手。

0 个答案:

没有答案