#! /bin/python3
from random import choice
from flask import Flask
app = Flask(__name__,
static_url_path='',
static_folder='static',
template_folder='templates')
@app.route("/")
def hello():
title = 'A oder B'
separator = ' oder '
header = '
'+str(title)+'
'+str(title)+'
'
footer = "
"
ablines = ""
lines = getContent()
for line in lines:
ab = line.split(separator)
ablines = '
'+str(ab[0])+'
'+str(separator)+'
'+str(ab[1])+'
'+ablines
output = header+ablines+footer
return output
def getContent():
lines = [a.strip() for a in open("ab.txt").readlines()]
result = [choice(lines) for a in range(5)]
return result
if __name__ == "__main__":
from waitress import serve
serve(app, host='0.0.0.0', port=5000, ident='a/b game')