python3/test/micropipenv-requirements-test-app/wsgi.py
phracek 3300dd8839 auto-sync: master commit 897c8e39fe1df6c7bb6418d2892ccbd118d723f8
\n\nUpstreamCommitID: 546dfadbf110928dd357a55674ae7beabff8bcee\nUpstreamCommitLink: 546dfadbf1\nUpstreamRepository: https://github.com/sclorg/s2i-python-container
2020-05-20 09:17:29 +00:00

9 lines
207 B
Python

from flask import Flask
application = Flask(__name__)
@application.route('/')
def hello():
return b'Hello World from mod_wsgi hosted WSGI application!'
if __name__ == '__main__':
application.run()