Scrapy download handler that integrates aiohttp
Project description
scrapy-aiohttp-downloader
scrapy-aiohttp-downloader
is a Scrapy download handler.
Installation
pip install scrapy-aiohttp-downloader
Activation
Replace the default http
and/or https
Download Handlers through DOWNLOAD_HANDLERS
DOWNLOAD_HANDLERS = {
"http": "scrapy_aiohttp_downloader.AioHTTPDownloadHandler",
"https": "scrapy_aiohttp_downloader.AioHTTPDownloadHandler",
}
Also, be sure to install the asyncio-based Twisted reactor:
TWISTED_REACTOR = "twisted.internet.asyncioreactor.AsyncioSelectorReactor"
Basic usage
Set the aiohttp
Request.meta key to download a request using aiohttp
:
import scrapy
class AioHTTPSpider(scrapy.Spider):
name = "spider"
custom_settings = {
"DOWNLOAD_HANDLERS": {
"http": "scrapy_aiohttp_downloader.AioHTTPDownloadHandler",
"https": "scrapy_aiohttp_downloader.AioHTTPDownloadHandler",
},
"TWISTED_REACTOR": "twisted.internet.asyncioreactor.AsyncioSelectorReactor",
}
def start_requests(self):
yield scrapy.Request(
"https://example.com/",
meta={"aiohttp": True},
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scrapy_aiohttp_downloader-1.0.0b2.tar.gz
.
File metadata
- Download URL: scrapy_aiohttp_downloader-1.0.0b2.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7938f0f3be72ceed694de5a00301c8cbe2d4657989cdaad489c7c929c60a2b6f |
|
MD5 | 9121590fe71224214bb35422cee9f5df |
|
BLAKE2b-256 | 6632ddc0273aa28eb0a385d44e6faadd3521d3df3358b9c173773e3e2d75f290 |
File details
Details for the file scrapy_aiohttp_downloader-1.0.0b2-py3-none-any.whl
.
File metadata
- Download URL: scrapy_aiohttp_downloader-1.0.0b2-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0fb34c1c190943204b0ebd31daa01b6dbbf7b4c5f03f5217c7af20b78645b44 |
|
MD5 | 63f7db125a81ce4a4a55e22face372f7 |
|
BLAKE2b-256 | afcf450ce77ef1ea711ac68077f14c3b9c9c7a345d055242d47d8c49347bf49a |