-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
49 lines (39 loc) · 1.07 KB
/
server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from flask import Flask, jsonify, request, send_from_directory
import time
import os
import os.path
app = Flask(__name__)
@app.route("/")
def _serve():
return send_from_directory(".", "index.html")
@app.route("/write")
def _write():
args = request.args
if "e" not in args.keys():
return jsonify({
"ok": False,
"msg": "Missing_Expression"
})
if args["e"] in ["", None]:
return jsonify({
"ok": False,
"msg": "Empty_Expression"
})
value = str(int(time.time()))
file_name = "%s.txt" % value
PATH = './%s' % file_name
if os.path.isfile(PATH) and os.access(PATH, os.R_OK):
return jsonify({
"ok": False,
"msg": "File_Already_Exists"
})
else:
f = open(file_name, "w")
f.write(args["e"])
f.close()
return jsonify({
"ok": True,
"msg": "File Saved"
})
if __name__ == '__main__':
app.run("0.0.0.0", debug=True)