python3/test/micropipenv-test-app/testapp.py
Lumir Balhar b0910418b6 Update from upstream github repo
- pipenv is locked to older stable version
- ENV for micropipenv
- no python-virtualenv package
- updated documentation
2020-06-02 09:21:09 +02:00

7 lines
221 B
Python

import requests
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
assert requests.__version__ == '2.20.0'
return [b"Hello from gunicorn WSGI application!"]