debug
Browse files
app.py
CHANGED
@@ -12,6 +12,7 @@ autov22fileid = json.loads(Path("autov22fileid.json").read_text())
|
|
12 |
filename2fileid = json.loads(Path("filename2fileid.json").read_text())
|
13 |
name2fileid = json.loads(Path("name2fileid.json").read_text())
|
14 |
|
|
|
15 |
def fileids2html(fileids, query):
|
16 |
html = BeautifulSoup("<div></div>", "html.parser")
|
17 |
for fileid in sorted(list(fileids), reverse=True, key=lambda x:int(x)):
|
|
|
12 |
filename2fileid = json.loads(Path("filename2fileid.json").read_text())
|
13 |
name2fileid = json.loads(Path("name2fileid.json").read_text())
|
14 |
|
15 |
+
|
16 |
def fileids2html(fileids, query):
|
17 |
html = BeautifulSoup("<div></div>", "html.parser")
|
18 |
for fileid in sorted(list(fileids), reverse=True, key=lambda x:int(x)):
|