Remove Flask-based backend

This commit is contained in:
2020-05-26 16:07:29 +02:00
parent a8ded945e2
commit 27eb10d222
36 changed files with 0 additions and 1521 deletions

View File

@@ -1,8 +0,0 @@
def dict_from_row(row):
return dict(zip(row.keys(), row))
def dict_from_rows(rows):
outlist=[]
for row in rows:
outlist.append(dict_from_row(row))
return outlist