init
This commit is contained in:
commit
7890be2ed2
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.env
|
||||
bozo
|
27
main.py
Normal file
27
main.py
Normal file
@ -0,0 +1,27 @@
|
||||
from flask import Flask, render_template, request, redirect, session
|
||||
import time
|
||||
|
||||
app = Flask(__name__);
|
||||
|
||||
last_value: str
|
||||
|
||||
try:
|
||||
with open("bozo", 'r') as f:
|
||||
last_value: str = f.read()
|
||||
except:
|
||||
with open("bozo", 'w+') as f:
|
||||
last_value = str(time.time() * 1000)
|
||||
f.write(last_value)
|
||||
|
||||
@app.route("/api/update", methods = ['GET'])
|
||||
def get():
|
||||
return str(last_value)
|
||||
|
||||
@app.route("/api/update", methods = ['POST'])
|
||||
def update():
|
||||
last_value = str(time.time() * 1000)
|
||||
f.write(last_value)
|
||||
return
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(host='0.0.0.0', port=5000, debug=1)
|
8
requirements.txt
Normal file
8
requirements.txt
Normal file
@ -0,0 +1,8 @@
|
||||
asarPy==1.0.1
|
||||
blinker==1.8.2
|
||||
click==8.1.7
|
||||
Flask==3.0.3
|
||||
itsdangerous==2.2.0
|
||||
Jinja2==3.1.4
|
||||
MarkupSafe==2.1.5
|
||||
Werkzeug==3.0.4
|
Loading…
Reference in New Issue
Block a user