Delete sweebot-dashboard.py
This commit is contained in:
parent
2ee01f1b38
commit
63bbff3be8
1 changed files with 0 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
|||
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)
|
Loading…
Reference in a new issue