diff options
author | Andrei Belov <defan@nginx.com> | 2017-10-19 18:23:32 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2017-10-19 18:23:32 +0300 |
commit | 156877f3c99b54c78e3cae111542f5519a97a68a (patch) | |
tree | 2c21edccede53614245118f927f0a2aea8d3e944 /pkg/deb/debian/unit.example-python-app | |
parent | eabe25d98e6805221025daf7bc60d881af1af6b1 (diff) | |
download | unit-156877f3c99b54c78e3cae111542f5519a97a68a.tar.gz unit-156877f3c99b54c78e3cae111542f5519a97a68a.tar.bz2 |
Introduced deb packages building tools.0.2
Diffstat (limited to 'pkg/deb/debian/unit.example-python-app')
-rw-r--r-- | pkg/deb/debian/unit.example-python-app | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/deb/debian/unit.example-python-app b/pkg/deb/debian/unit.example-python-app new file mode 100644 index 00000000..756de77e --- /dev/null +++ b/pkg/deb/debian/unit.example-python-app @@ -0,0 +1,16 @@ +import os +import datetime +import sys + +def application(environ, start_response): + output = datetime.datetime.now().strftime("%Y-%m-%d %I:%M:%S %p") + output += "\n\nPython: " + output += sys.version + 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.encode('utf8') |