Python aiohttp/asyncio - how to process returned data
Im in the process of moving some synchronous code to asyncio using aiohttp. the synchronous code was taking 15 minutes to run, so I'm hoping to improves this. I have some working code which gets data from some urls and returns the body of each. But this is just against 1 lab site, I have 70+ actual sites. So if I got a loop to create a list of all the urls for all sites that would make 700 urls in a list to be processed. Now processing them I don't think is a problem? But doing 'stuff' with the results, I'm not sure how to program? I have code already that will do 'stuff' to each of the