Skip to content

Instantly share code, notes, and snippets.

@Galina-Blokh
Last active January 10, 2021 20:19
Show Gist options
  • Save Galina-Blokh/d0528413523e333a261e02ac415987ce to your computer and use it in GitHub Desktop.
Save Galina-Blokh/d0528413523e333a261e02ac415987ce to your computer and use it in GitHub Desktop.
How to use grequest
import grequests
batches = 20
url_to_get = 'https://www.loveandlemons.com/recipes/'
page = grequests.get(url_to_get)
response = grequests.map([page], size=batches)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment