Skip to content

Instantly share code, notes, and snippets.

@alessfg
Created August 24, 2017 23:03
Show Gist options
  • Save alessfg/cf13b560545d6a82562035a355b1a14b to your computer and use it in GitHub Desktop.
Save alessfg/cf13b560545d6a82562035a355b1a14b to your computer and use it in GitHub Desktop.
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