convert sqlalchemy query result to a list of dicts

后端 未结 4 1434
慢半拍i
慢半拍i 2021-02-08 03:54

I want to have the result of my query converted to a list of dicts like this :

result_dict = [{\'category\': \'failure\', \'week\': \'1209\', \'stat\': \'tdc_ok         


        
4条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-08 04:32

    This works now

    result_dict = [u._asdict() for u in my_query.all()]
    

    The reason is that u is not actually a tuple but a KeyedTuple.

    The correct answer on this thread also would be helpful

提交回复
热议问题