Created
August 24, 2017 23:03
-
-
Save alessfg/cf13b560545d6a82562035a355b1a14b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import datetime | |
def application(environ, start_response): | |
output = datetime.datetime.now().strftime("%Y-%m-%d %I:%M:%S %p") | |
output += "\n\nENV Variables:\n\n" | |
for param in os.environ.keys(): | |
output += param | |
output += "\t" | |
output += os.environ[param] | |
output += "\n" | |
start_response('200 OK', [('Content-type', 'text/plain')]) | |
return [output] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment