This repository has been archived on 2022-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
qbbuzzer/app.py
2020-10-10 22:20:51 -04:00

15 lines
238 B
Python

from flask import *
from random import randint as rint
app = Flask(__name__)
@app.route('/')
def home():
version = rint(0, 300000000)
return render_template('index.html', version=str(version))
if __name__ == "__main__":
app.run()