Skip to content

Instantly share code, notes, and snippets.

@ziplus4
Created October 22, 2015 06:24
Show Gist options
  • Save ziplus4/57f074eec5c54106a124 to your computer and use it in GitHub Desktop.
Save ziplus4/57f074eec5c54106a124 to your computer and use it in GitHub Desktop.
uwsgi 테스트 코드
# test.py
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
#return [b"Hello World"] # python3
return ["Hello World"] # python2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment