MeowNex/sweebot-dashboard.py

30 lines
No EOL
798 B
Python

from flask import Flask
from flask import send_file
from flask import request
from flask import redirect
import os
from pathlib import Path
from time import sleep as wait
app = Flask(__name__)
@app.route('/')
def index():
return send_file("sweebot.html", mimetype='text/html')
@app.route('/run.txt')
def run():
wait(2)
return send_file(str(Path.home()) + "/run.txt", mimetype='text/html')
@app.route('/block.txt')
def block():
wait(2)
return send_file(str(Path.home()) + "/block.txt", mimetype='text/html')
@app.route('/script.js')
def script():
return send_file("script.js", mimetype='application/javascript')
if __name__ == '__main__':
# run() method of Flask class runs the application
# on the local development server.
app.run(host='0.0.0.0',port=2001)