Update docs/topics/asyncio.rst

Co-authored-by: Adrián Chaves <adrian@chaves.io>
This commit is contained in:
Bulat Khabibullin 2023-05-10 18:32:36 +05:00 committed by GitHub
parent 57f3140daa
commit 26374e21f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -119,8 +119,9 @@ within a spider callback:
'price': additional_response.css('#price').get(),
}
You can also send multiple requests in parallel:
The spider gathering batch requests::
.. code-block:: python
class BatchRequestsSpider(scrapy.Spider):
name = "batch"