Retrieve old back end

This commit is contained in:
2022-03-15 19:44:14 +01:00
parent 10613d5c67
commit 84badb0e13
40 changed files with 1326 additions and 1776 deletions

View File

@@ -0,0 +1,8 @@
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