Skip to content

Instantly share code, notes, and snippets.

@ScottSturdivant
Created February 4, 2016 02:48
Show Gist options
  • Save ScottSturdivant/fe84dfb750abdd198870 to your computer and use it in GitHub Desktop.
Save ScottSturdivant/fe84dfb750abdd198870 to your computer and use it in GitHub Desktop.
@inlineCallbacks
def lots_of_requests():
urls = yield get_urls()
deferreds = []
for url in urls:
deferreds.append(get(url))
results = yield defer.gatherResults(deferreds)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment