-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.py
53 lines (42 loc) · 1.34 KB
/
index.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
50
51
52
53
from flask import Flask, request, jsonify, render_template
import ety
app = Flask(__name__)
def replace_item(obj):
new_obj = {}
for k, v in obj.items():
new_obj["Item"] = {"Name": k}
new_obj["Children"] = []
for value in v["children"]:
if isinstance(value, dict):
new_obj["Children"].append(replace_item(value))
else:
new_obj["Children"].append({"Item": {"Name": value}})
print(new_obj)
return new_obj
# Default route
@app.route("/")
def home():
return render_template("index.html")
# Gets the origin of a word
@app.route("/origin/", methods=["GET"])
@app.route("/origin/<string:word>", methods=["GET"])
def origin(word: str = ""):
try:
recursive = request.args.get("recursive") == "True"
results = ety.origins(word, recursive=recursive)
response = [result.pretty for result in results]
return jsonify(response)
except:
return jsonify([])
# Gets the etymological tree of a word
@app.route("/tree/", methods=["GET"])
@app.route("/tree/<string:word>", methods=["GET"])
def tree(word: str = ""):
try:
response = ety.tree(word).to_dict()
response = [replace_item(response)]
return jsonify(response)
except:
return jsonify({})
if __name__ == "__main__":
app.run(debug=True)