#!/usr/bin/python3 from flask import Flask, render_template, send_from_directory, redirect, url_for from random import randint from os import listdir from random import choice import config app = Flask(__name__) @app.route("/") def random(): return render_template("random.html", refresh=config.refresh) @app.route("/random_image/") def random_image(): filename = choice(listdir(config.imgdir)) return redirect(url_for("image", filename=filename)) @app.route("/img/") def image(filename): return send_from_directory(config.imgdir, filename) if __name__ == "__main__": app.run()