我有脚本: 的 /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的新手。