how to parse response immediately with asyncio.gather?

async def main(): uuids = await get_uuids_from_text_file() tasks = [] # create a task for each uuid # and add it to the list of tasks for uuid in uuids: task = asyncio.create_task(make_hypixel_request(uuid)) tasks.append(task) # wait for all the tasks to finish responses = await asyncio.gather(*tasks) # run the functions to process the data for … Read more