changed table name

This commit is contained in:
ishak jmilou.ishak
2024-12-09 15:01:29 +01:00
parent 3bb40d5929
commit 93167e67f6

View File

@@ -62,7 +62,7 @@ def phpmyadmin_passthrough(path):
@app.route("/database")
def database():
cur = mysql.connection.cursor()
cur.execute("SELECT * FROM kobuki")
cur.execute("SELECT * FROM kobuki_data")
if __name__ == '__main__':
app.run(debug=True, port=5000)