format with ruff

This commit is contained in:
deneb 2025-02-25 18:58:34 +01:00
parent 039ce6aaaf
commit d98c34fe02

20
app.py
View file

@ -8,8 +8,10 @@ if not os.path.exists("music"):
app = Flask(__name__)
def audio_player():
os.system(f'mpv --input-ipc-server=/tmp/mpvsocket --shuffle music --no-video &')
os.system(f"mpv --input-ipc-server=/tmp/mpvsocket --shuffle music --no-video &")
def sizeof_fmt(num, suffix="B"):
for unit in ("", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei", "Zi"):
@ -19,12 +21,13 @@ def sizeof_fmt(num, suffix="B"):
return f"{num:.1f}Yi{suffix}"
@app.route('/', methods=["GET"])
@app.route("/", methods=["GET"])
def route_interface():
global playback
return render_template("player.html", playing=playback)
@app.route('/', methods=["POST"])
@app.route("/", methods=["POST"])
def route_toggle():
global playback
if playback:
@ -37,6 +40,7 @@ def route_toggle():
playback = True
return render_template("player.html", playing=playback)
@app.route("/files/<path:path>", methods=["GET"])
@app.route("/files")
def filemgr(path=""):
@ -57,6 +61,7 @@ def filemgr(path=""):
file[1] = sizeof_fmt(file[1])
return render_template("filemanager.html", files=files, path=path)
@app.route("/api/start", methods=["POST"])
def api_start():
global playback
@ -67,6 +72,7 @@ def api_start():
playback = True
return Response("ok", 200)
@app.route("/api/stop", methods=["POST"])
def api_stop():
global playback
@ -77,6 +83,7 @@ def api_stop():
playback = False
return Response("ok", 200)
@app.route("/api/status", methods=["GET"])
def api_status():
if playback:
@ -85,8 +92,5 @@ def api_status():
return "false"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=1337)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=1337)