mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-18 18:41:48 +02:00
8 lines
186 B
Python
8 lines
186 B
Python
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 |