[I was rendering dynamic data from the database. For that, I used sqlalchemy in Flask. After retrieving it from the database, I ended up with a row cursor element. Now, I want to convert the cursor row element to a dictionary, so that things become a little bit easier for me](https://i.stack.imgur.com/aS4jn.png)
I tried different methods to convert the list, which I obtained from the result.all() into the dictionary. Now when I am retrieving it in the main route as a function. All proper information is not being obtained here. Thanks.