I have the following flask application:
async def run(): conn = await asyncpg.connect(db_url) values = await conn.fetch('''SELECT ... FROM ... WHERE ...;''') await conn.close() @app.route('/') def test(): loop = asyncio.get_event_loop() res = loop.run_until_complete(run()) return json.dumps([dict(r) for r in res]) if __name__ == '__main__': app.run()
When I run this code, I got TypeError: 'NoneType' object is not iterable . How to return my values converted to JSON?
user6611771
source share