Skip to content

Instantly share code, notes, and snippets.

@NeuronQ
Created February 6, 2019 00:27
Show Gist options
  • Save NeuronQ/86556ad0bca35d07cda5c0bad9422c19 to your computer and use it in GitHub Desktop.
Save NeuronQ/86556ad0bca35d07cda5c0bad9422c19 to your computer and use it in GitHub Desktop.
async def main_concurrent():
t = time.perf_counter()
tasks = [asyncio.create_task(handle_url(url))
for url in urls]
## All of the variants below would wait for everything:
# V1: this will wait as little as possible
# (point of this is to show that tasks start executing when created)
# for task in tasks:
# await task
# V2: ensures all is done by waiting for longest possible time
# await asyncio.sleep(11)
# V3: the kind of code one could actually write in real life
# (but it's a bit redundant: `wait` or `gather` can also receive
# coroutines and can start and run them properly)
await asyncio.wait(tasks)
print("> extracted data:", extracted_data)
print(f"time elapsed: {time.perf_counter() - t:.2f}s")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment