简体   繁体   English

SQLAlchemy 将 SELECT 查询结果转换为字典列表

[英]SQLAlchemy convert SELECT query result to a list of dicts

When I was using session.query, I was able to convert the result to a list of dicts :当我使用 session.query 时,我能够将结果转换为 dicts 列表:

my_query = session.query(table1,table2).filter(all_filters)
result_dict = [u.__dict__ for u in my_query.all()]

But now that I have to work with the SELECT() operation, how can I convert the results to a dict that looks like, for every row result :但是现在我必须使用SELECT()操作,我如何将结果转换为一个看起来像的字典,对于每一行结果:

[{'Row1column1Name' : 'Row1olumn1Value', 'Row1column2Name' :'Row1Column2Value'},{'Row2column1Name' : 'Row2olumn1Value', 'Row2column2Name' : 'Row2Column2Value'},etc....] . [{'Row1column1Name' : 'Row1olumn1Value', 'Row1column2Name' :'Row1Column2Value'},{'Row2column1Name' : 'Row2olumn1Value', 'Row2column2Name' : 'Row2Column2Value'},etc....] .

This is my SELECT() code :这是我的 SELECT() 代码:

select = select([table1,table2]).where(all_filters)
res = conn.execute(select)
row = res.fetchone() #I have to use fetchone() because the query returns lots of rows
resultset=[]
while row is not None:
    row = res.fetchone()
    resultset.append(row)

print resultset

The result is :结果是:

[('value1', 'value2', 'value3', 'value4'),(.....),etc for each row]

I'm new to Python, any help would be appreciated.我是 Python 新手,任何帮助将不胜感激。

This seems to be a RowProxy object.这似乎是一个 RowProxy 对象。 Try:尝试:

row = dict(zip(row.keys(), row))

You can typecast each row from a select result as either a dict or a tuple.您可以将选择结果中的每一行类型转换为字典或元组。 What you've been seeing is the default behaviour, which is to represent the each row as a tuple.您所看到的是默认行为,即将每一行表示为一个元组。 To typecast to a dict, modify your code like this:要将类型转换为 dict,请像这样修改您的代码:

select = select([table1, table2]).where(all_filters)
res = conn.execute(select)
resultset = []
for row in res:
    resultset.append(dict(row))
print resultset

This works nicely if you need to process the result one row at a time.如果您需要一次处理一行结果,这很有效。

If you're happy to put all rows into a list in one go, list comprehension is a bit neater:如果您很乐意一次性将所有行放入一个列表中,那么列表理解会更简洁一些:

select = select([table1, table2]).where(all_filters)
res = conn.execute(select)
resultset = [dict(row) for row in res]
print resultset

For the first query its better to use this approach for sqlalchemy KeyedTuple:对于第一个查询,最好将这种方法用于 sqlalchemy KeyedTuple:

# Convert an instance of `sqlalchemy.util._collections.KeyedTuple`
# to a dictionary
my_query = session.query(table1,table2).filter(all_filters)
result_dict = map(lambda q: q._asdict(), my_query)

OR

result_dict = map(lambda obj: dict(zip(obj.keys(), obj)), my_query)

For ResultProxy as earlier mentioned:对于前面提到的 ResultProxy:

result_dict = dict(zip(row.keys(), row))

Building off of Fanti's answer, if you use a List Comprehension, you can produce the list of dicts all in one row.根据 Fanti 的答案,如果您使用 List Comprehension,则可以在一行中生成所有 dicts 列表。 Here results is the result of my query.这里的results是我查询的结果。

records = [dict(zip(row.keys(), row)) for row in results]

Make a function -做一个功能——

def resultToDict(result):
    ds = []
    for rows in result:
        d = {}
        for row in rows:
            for col in row.__table__.columns:
                d[col.name] = str(getattr(row, col.name))
        ds.append(d)
    return ds

Execute like this -像这样执行 -

resultToDict(my_query.all())

Result -结果——

[
{'Row1column1Name' : 'Row1column1Value', 'Row1column2Name' : 'Row1Column2Value'},
{'Row2column1Name' : 'Row2column1Value', 'Row2column2Name' : 'Row2Column2Value'},
{'Row3column1Name' : 'Row3column1Value', 'Row3column2Name' : 'Row3Column2Value'},
etc....
]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM