You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
337 B
13 lines
337 B
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 v' + sys.version.split()[0] + '\n' |
|
response = '\n'.join([message, version]) |
|
return [response.encode()]
|
|
|