-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
32 lines (23 loc) · 683 Bytes
/
app.py
File metadata and controls
32 lines (23 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!bin/python3
from flask import Flask
from redis import Redis, RedisError
import os
import socket
redis = Redis(host='redis', db=0, socket_connect_timeout=2, socket_timeout=2)
app = Flask(__name__)
@app.route('/')
def hello():
try:
visits = redis.incr('counter')
except RedisError:
visits = '<i>cannot connect to Redis, counter disabled</i>'
html = '<h3>Hello {name}!</h3>' \
'<b>Hostname:</b> {hostname}' \
'<b>Visits:</b> {visits}'
return html.format(
name=os.getenv('NAME', 'world'),
hostname=socket.gethostname(),
visits=visits
)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=80)