15 lines
413 B
Python
15 lines
413 B
Python
import os
|
|
import sys
|
|
|
|
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
|
|
|
|
|
def application(environ, start_response):
|
|
start_response('200 OK', [('Content-Type', 'text/plain')])
|
|
message = 'It works!\n'
|
|
version = 'Python %s\n' % sys.version.split()[0]
|
|
response = '\n'.join([message, version])
|
|
return [response.encode()]
|
|
|
|
from app2 import app as application # Import the Flask application from app.py |