#! /bin/python3 from random import choice from flask import Flask, render_template app = Flask(__name__, static_url_path='', static_folder='static', template_folder='templates') @app.route("/") def hello(): title = 'A oder B' separator = ' oder ' ablines = [] lines = getContent() for line in lines: ab = line.split(separator) ablines.append( {'A': str(ab[0]), 'B': str(ab[1])} ) return render_template('index.html', title=title, separator=separator, content=ablines) 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')