7 lines
186 B
Python
7 lines
186 B
Python
|
|
with open("app/modules/sag/templates/detail.html") as f:
|
||
|
|
text = f.read()
|
||
|
|
|
||
|
|
s = text.find("async function saveTime()")
|
||
|
|
e = text.find("}", text.find("fetch", s)) + 200
|
||
|
|
print(text[s:e])
|