Release notes
Scrapy 2.18.0 (2026-08-20)
Highlights:
HttpxDownloadHandlernow uses httpx2The Twisted-based HTTP/2 download handler is no longer experimental
brotliand Zstandard support are now always available, and optional extras cover the rest of the optional featuresLate
Crawlerattributes, such asstats, now raiseRuntimeErrorinstead of beingNonebefore the crawl startsItem exporters now export fields in declaration order
New optimization page and built-in stats reference
Modified requirements
brotli(brotlicffion PyPy) and Zstandard support (the standard librarycompression.zstdmodule on Python 3.14 and higher, thebackports.zstdpackage on earlier versions) are now required, sobrandzstdare always included in theAccept-Encodingheader of requests, and Brotli- and Zstandard-compressed responses are always decoded. Websites may now serve such responses to crawls that previously did not advertise support for them.The minimum required versions are
brotli1.2.0,brotlicffi1.2.0.0 andbackports.zstd1.3.0.Increased the minimum versions of the following dependencies:
cryptography: 37.0.0 → 41.0.5
pyOpenSSL: 22.0.0 → 24.3.0
queuelib: 1.4.2 → 1.6.1
service_identity: 23.1.0 → 24.2.0
w3lib: 1.17.0 → 2.1.1
The IPython shell requires IPython 8.15.0 or higher. Install the ipython extra to get a compatible version. (#5447, #7596, #7816)
Backward-incompatible changes
The following runtime usage of zope.interface interfaces is removed:
SpiderLoaderandDummySpiderLoaderare no longer marked as implementing theISpiderLoaderinterface.get_spider_loader()no longer checks that the configured spider loader implements theISpiderLoaderinterface.BlockingFeedStorage,FileFeedStorageandStdoutFeedStorageare no longer marked as implementing theIFeedStorageinterface.H2DownloadHandlerno longer checks that theDOWNLOADER_CLIENTCONTEXTFACTORYclass implements theIPolicyForHTTPSinterface.
The
engine,extensions,logformatter,request_fingerprinterandstatsattributes ofCrawlerraiseRuntimeErrorwhen read before the crawl starts, instead of beingNoneuntil then.Code that reads them from the
spider_openedsignal handler onwards is unaffected, and no longer needs to narrow their type. Code that checked whether they were set, e.g.if crawler.stats:, must be updated, since reading them now raises instead of returningNone.Item exporters now export the fields of an item in declaration order, i.e. the order in which they are defined in the item class, instead of the order in which they were populated, as
CsvItemExporteralready did.dictitems, which have no declared fields, keep using the key order of each item. (#6662, #6854, #7824)scrapy.utils.serialize.ScrapyJSONEncoder, used by JSON feed exports, the telnet console and thePeriodicLogextension, now serializesdatetime,dateandtimeobjects in ISO 8601 format, e.g.2023-08-03T23:24:57.148903+00:00instead of2023-08-03 23:24:57, keeping microseconds and time zone information.Its
DATE_FORMATandTIME_FORMATattributes are removed.scrapy.utils.trackref.live_refsis now aWeakKeyDictionaryinstead of acollections.defaultdict, so that classes defined at run time are released once they are no longer used. Reading the entry of a class with no tracked instances now raisesKeyErrorinstead of creating and returning an empty mapping. (#5995, #7922)The
MEMDEBUG_NOTIFYsetting is removed. It had no effect, but code reading it now getsNoneinstead of its default value, which was an empty list. (#7737)scrapy.utils.log.logformatter_adapter()no longer passes the wholedictreturned by a log formatter method as logging arguments when thatdicthas noargskey, or itsargsare empty, and itsmsghas no%(name)splaceholders. Such messages are now logged verbatim, so a literal%in them no longer breaks logging.An
argstupleis now expanded into one logging argument per item, so that%-style placeholders work with it as they do with adict.FEEDSkeys andFEED_URIvalues that arepathlib.Pathobjects are now used as paths, instead of being converted intofile://URIs. This makes them keep working when they contain URI parameters or characters that URI conversion would percent-encode. (#5794, #6425, #6611, #7674)SelectorandTextResponse.selectorno longer force thehtmlselector type for responses that are neitherHtmlResponsenorXmlResponseobjects. AJsonResponsegets thejsontype, and for any other responseparseldetermines the type from the body.The response class, and hence the selector type, comes from the content type that the website reports. When a website reports the wrong content type, recast the response, e.g.
response.replace(cls=HtmlResponse).AutoThrottle no longer sets the
download_delayattribute of the running spider to define the starting delay of download slots. The starting delay is still applied, but code that reads that attribute at run time no longer sees it. (#7167, #7175, #7833)The
checkcommand now ignoresITEM_PIPELINESandFEEDS, since contracts check the output of callbacks instead of sending it to item processing, so a check run no longer triggers their side effects, e.g. writing an empty output file. Use the-scommand-line option to set them back for a check run. (#3385, #7957)XMLFeedSpiderandCSVFeedSpiderno longer raiseNotConfiguredwhenparse_node()orparse_row()is not defined; the resultingAttributeErroris reported instead. (#7768)
Deprecation removals
scrapy.utils.misc.md5sum(), deprecated since Scrapy 2.12.0, is removed. (#6264, #8023)scrapy.utils.iterators.xmliter(), deprecated since Scrapy 2.11.1 because it is vulnerable to ReDoS attacks, is removed. Usexmliter_lxml()instead. (#7765)scrapy.utils.datatypes.CaselessDict, deprecated since Scrapy 2.10.0, is removed. UseCaseInsensitiveDictinstead. (#5146, #8023)
Deprecations
The
download_delayspider attribute is deprecated. Use theDOWNLOAD_DELAYsetting, orDOWNLOAD_SLOTSto set a delay for specific domains, instead.The
max_concurrent_requestsspider attribute, deprecated since Scrapy 2.13.0, now sets theCONCURRENT_REQUESTS_PER_DOMAINsetting, which is what it always mapped to, and warns accordingly.Both attributes are ignored, with a different warning, when the corresponding setting is already set at the
spiderpriority or higher.The
Spider.log()method is deprecated. Use the methods ofSpider.loggerinstead. (#7739)The
scrapy.interfacesmodule and itsISpiderLoaderinterface are deprecated. Custom spider loaders only need to followSpiderLoaderProtocol. (#6585, #7731)scrapy.extensions.feedexport.IFeedStorageis deprecated. Custom feed storages only need to followscrapy.extensions.feedexport.FeedStorageProtocol. (#6585, #7731)scrapy.utils.python.re_rsearch()is deprecated. (#7765)Importing
FileExceptionfromscrapy.pipelines.filesis deprecated. Import it fromscrapy.pipelines.mediainstead. (#7544, #7673, #7973)Setting
request.meta["is_secure"]toFalseto send ans3://request over plaintext HTTP is deprecated. The flag will be ignored in a future Scrapy version. (#7738)The unused
multiplierattribute ofPeriodicLogis deprecated. (#7809, #7982)Returning, from a log formatter method, a
msgwith%(name)splaceholders and noargsis deprecated. Those placeholders are still interpolated with the returneddict, but in a future Scrapy version the message will be logged verbatim. Return those values underargsinstead. (#5570, #7971)
New features
Added optional extras for every optional dependency of Scrapy:
bpython,gcs,httpx,images,ipython,ptpython,robotparser,s3,twisted-http2anduvloop. For example,pip install scrapy[s3,images]. (#7596)HttpxDownloadHandlernow uses httpx2, the successor ofhttpx, which the new httpx extra installs together with its HTTP/2 and SOCKS proxy support.httpxis still used whenhttpx2is not installed, but it is no longer tested. (#7762)Added a
robots_parsedsignal, sent byRobotsTxtMiddlewareafter it parses arobots.txtfile. It supports asynchronous handlers.Added a
crawl_delay()method toRobotParser, implemented by all built-in robots.txt parsers.(#7830)
Added a
Request.to_curl()method, the inverse offrom_curl(). (#7743, #7746, #7802)Added a
depth_resetrequest meta key that gives a request depth 0 instead of the depth of its source response plus 1. (#891, #7913)Added
MetaCopyDetectionMiddleware, enabled by default, which warns once per crawl when a spider yields a request carrying internalmetakeys that were likely copied fromresponse.meta, and aMETA_COPY_WARN_SKIP_KEYSsetting to exclude keys from that check. (#7588)Added an
AWS_MAX_POOL_CONNECTIONSsetting, which defines the connection pool size of the AWS clients of the S3 feed storage backend and the S3 media pipeline storage backend, and defaults toREACTOR_THREADPOOL_MAXSIZE. It is also exposed as amax_pool_connectionsparameter ofS3FeedStorageand as anAWS_MAX_POOL_CONNECTIONSattribute ofS3FilesStore. (#4985, #7794)Added a
scrapy.utils.asyncio.sleep()function, which works both with and without a Twisted reactor. (#7843)CONCURRENT_REQUESTScan now be set to0for no limit. (#7840)H2DownloadHandleris no longer experimental, and it now sends thebytes_receivedandheaders_receivedsignals and supportsStopDownload. (#5046, #5047, #5055, #7896, #7986)An exception raised by
Spider.start()is now reported through thespider_errorsignal and thespider_exceptions/countandspider_exceptions/{exception}stats, and closes the spider with the newstart_errorfinish_reasoninstead offinished. See Handling start errors.CloseSpiderraised fromSpider.start()now closes the spider with the given reason, instead of being reported as a start error.CloseSpidercan now also be raised while the spider is starting, e.g. from aspider_openedsignal handler or from theopen_spider()method of an item pipeline, to close the spider before it starts crawling. Every component still gets started, and stopped, before the spider is closed with the given reason. (#3435, #7905)Added an FTPS feed storage backend, i.e. support for the
ftpsURI scheme inFEEDS, which uploads the feed over a TLS connection, verifying the certificate of the server. (#4180, #7953)Changes to
Spider.allowed_domainsduring a crawl are now taken into account byOffsiteMiddleware, whoseshould_follow()method is now documented as the way to implement a different offsite policy. (#3257, #3412, #7903, #7912)BaseSettingsmethods that take settings, such asupdate()and thesettingsparameter of crawler classes, now also accept an iterable of(name, value)tuples. (#7759, #7763)The
cookiesparameter ofRequestnow also acceptsbool,floatandintvalues, and theformdataparameter ofFormRequestnow accepts any mapping or iterable of key-value pairs. (#7858, #7864)Added a
scrapy.utils.reactorless.uninstall_reactor_import_hook()function, whichAsyncCrawlerProcess.start()now uses to uninstall thetwisted.internet.reactorimport hook when it exits. (#7747)Added the
depth/request_ignored_countandhttpcache/retrieve_errorstats. (#1308, #2222, #7805, #7916)The
get_serialized_fields()method of item exporters, previously named_get_serialized_fields(), is now public and documented, for custom item exporters to use. (#5706, #7931)Scrapy now writes the session keys of its HTTPS connections to the file that the
SSLKEYLOGFILEenvironment variable points to, so that traffic analysis tools such as Wireshark can decrypt them. See Decrypting TLS traffic. (#4368, #7948)Added an
HTTP2_MAX_FRAME_SIZEsetting, which allows raising the maximum HTTP/2 frame size that servers may send, previously fixed at 16384, above which connections failed. (#5050, #7988)The
crawl,parseandrunspidercommands now warn whenFEEDSis set, e.g. through-oor-O, but theFeedExporterextension is disabled, so that no item is exported. (#5970, #6082, #6373, #7902)Log formatters (
LOG_FORMATTER), item processors (ITEM_PROCESSOR) and robots.txt parsers (ROBOTSTXT_PARSER) are now built as components, so they no longer need afrom_crawler()method. (#7808)
Bug fixes
HttpCacheMiddlewarenow logs a warning and handles the request as a cache miss when reading a cache entry raises an exception, e.g. because the entry is corrupted, instead of letting the exception propagate. It also counts those entries in the newhttpcache/retrieve_errorstat. (#2222, #7805)Feed URIs now only expand
%(...)sparameters, keeping any other percent character as is, so that percent-encoded URIs, e.g. one with%20in a path or with percent-encoded FTP credentials, are no longer misinterpreted as printf-style formatting directives. (#5794, #6425, #7674)Feed exports now start storing a
FEED_EXPORT_BATCH_ITEM_COUNTbatch as soon as it is complete, instead of waiting until the spider closes. (#7730, #7733)CsvItemExporternow warns when the fields that it took from the first item do not cover the fields of a later item, i.e. when it silently drops data. (#4002, #4053, #7613, #7651)GCSFeedStorageno longer requires thestorage.buckets.getpermission. (#5475, #7945)Media pipelines now log media requests that were filtered out, e.g. as offsite requests, at the
DEBUGlevel and without a traceback, instead of reporting them as download errors. (#7544, #7673)OffsiteMiddlewarenow raisesIgnoreRequestwith a message, e.g.Filtered offsite request to 'offsite.example', which errbacks and log messages that report that exception now include. (#7544, #7673)HTTP11DownloadHandlernow skips response header lines that have no colon, logging them at theDEBUGlevel, as web browsers do, instead of being unable to download such a response at all. (#210, #7806)CookiesMiddlewarenow sends domain cookies to hosts without a dot in their name and to hosts given as an IP address. (#6410, #7900)TextResponse.json()now decodes bodies that are not valid UTF-8, UTF-16 or UTF-32 usingTextResponse.encoding, instead of raisingUnicodeDecodeError. (#6456, #7897)scrapy.resolver.CachingHostnameResolvernow caches addresses without a port, and sets the requested port on cache hits, so that a cached address no longer carries the port of the request that populated the cache. (#6442, #7772)DownloaderAwarePriorityQueuenow removes the directory of a download slot from theJOBDIRdirectory once that slot is drained. (#5275, #7955)TelnetConsoleno longer raises an exception on shutdown when it could not listen on any of theTELNETCONSOLE_PORTports. (#2702, #7910)The
DOWNLOAD_WARNSIZEwarning is no longer logged twice for a response whoseContent-Lengthheader already exceeded the limit. (#2476, #7963)HttpCompressionMiddlewarenow logs a warning when it drops a response for exceedingDOWNLOAD_MAXSIZEduring decompression. (#6616, #7742)DepthMiddlewarenow logs only the first request ignored for exceedingDEPTH_LIMIT, and counts them all in the newdepth/request_ignored_countstat. (#1308, #7916)parsenow sets the callback it uses on the request of the response it passes to that callback. (#3095, #3124, #7803)The IPython shell now works when an asyncio event loop is already running in the same thread, e.g. when calling
scrapy.shell.inspect_response()from a callback while using the asyncio reactor. (#5447, #7816)Request.from_curl()now merges repeated-d,--dataand--data-rawoptions into a single body joined with&, as curl does, instead of keeping only the last one. (#7728)The
copy()method and the|=operator ofscrapy.utils.datatypes.CaseInsensitiveDictno longer leave the internal mapping of original key spellings shared or out of date. (#7783)ExecutionEngine.download_async()no longer recurses once per returned request, e.g. once per redirect. (#7544, #7673)LinkExtractornow canonicalizes each extracted URL once instead of twice whencanonicalizeisTrue. (#7961)Items yielded from
Spider.start()now keep the spider busy until the item pipelines are done with them, so that a spider that only yields items fromstart()no longer closes before processing them. (#7029, #7891)open_in_browser()now also adds itsbasetag to HTML responses that have noheadelement, and it now overrides abasetag already present in the response, so that relative URLs resolve against the response URL in every case. (#6550, #7879)Spider.start()implementations that are not asynchronous generators now raiseTypeErrorwith a message that says so, instead of failing in a way that does not point at the cause. (#5426, #7946)The
check,fetchandparsecommands now return the exit code 1 when a component fails to initialize, ascrawlandrunspideralready did. (#4292, #7920)HttpCompressionMiddlewareno longer hangs on adeflateresponse body followed by extra bytes. (#7841)scrapy.utils.python.get_func_args()now reports the parameters that afunctools.partialobject binds by position, instead of an empty list. (#7841)Fixed
NameErrorexceptions on Python 3.14, where PEP 649 made annotation evaluation lazy, when inspecting the signature of a callable with annotations imported only for type checking. (#7796, #7818)scrapy.utils.decorators.deprecatedcan now be used both as@deprecatedand as@deprecated(...)without confusing type checkers. (#7797)The default download handlers can now download from domains with emoji characters or underscores, which were previously rejected. (#3321, #4330, #7846)
Callbacks and media pipeline results no longer wait 100 ms before proceeding. (#8019)
Shutting down a crawl no longer risks raising an unhandled
RuntimeErrorif the code interrupted by the shutdown signal was itself writing to the log. (#8022)Nested selectors, e.g. the result of calling
jmespath()on a selector, now letparseldetermine their type instead of forcing thehtmltype, so that they no longer return the wrong type or value. (#8038, #8040)
Documentation
Added a built-in stats reference, covering every stat that Scrapy sets. (#6351, #7814)
Replaced the broad crawls page with a new optimization page, about finding the bottleneck of a crawl before changing any setting, which covers broad crawls as one of its sections. (#4737, #7938)
Added a concepts page, a quick map of Scrapy’s main building blocks, what problem each one solves, and when to reach for it. (#1569, #8025)
Added a cookies page, which gathers what used to be spread across the request and downloader middleware pages. (#7947)
Added callbacks and errbacks sections to the request and response page, covering callback assignment, how to write a callback and supported callback output. (#5054, #6437, #7821, #7898)
Documented the
ITEM_PROCESSORsetting and theItemProcessorProtocolprotocol that its value must implement. (#7983)Documented how to write an item exporter, how to test an item pipeline, how to download a request from a downloader middleware, how to name media files after the response, how to add objects to the shell and how to run spiders inside an existing application or in a Jupyter notebook. (#915, #1199, #2594, #5706, #6554, #6594, #7751, #7872, #7876, #7889, #7909, #7931)
Added an inspecting live traffic section to the debugging page, covering Wireshark and mitmproxy. (#5222, #8007)
Documented how
TextResponseresolves the response encoding, and how to resolve it differently, e.g. to give the encoding declared in the response body precedence over theContent-Typeheader. (#4933, #7977)Documented the memory use of response parsing and the parser limits that Scrapy lifts, in the security page. (#5700, #7930)
Documented that signal handlers run in an undefined order, that
scheduler_emptymust only be awaited fromstart(), that concurrency and politeness settings apply per crawler when running multiple spiders in the same process, and that aJOBDIRdirectory cannot be shared across Scrapy versions. (#3191, #5330, #5522, #7861, #7883, #7907, #7941)Documented that the
htmliterator ofXMLFeedSpidercan silently mangle tags that HTML treats as void elements, e.g.<link>, dropping their content and closing tag. (#4675, #8045)Documented that the
keep_fragmentsparameter offingerprint()is not a substitute for rendering JavaScript to reach content that a headless browser loads based on the URL fragment. (#4789, #8033)Documented how to derive the job directory from the spider name. (#4748, #8035)
Documented that the project name from
scrapy.cfgalso appears elsewhere by default, and which of those uses actually require it to match. (#2484, #8044)Many other corrections and improvements. (#4589, #4796, #5532, #5548, #6053, #6184, #6627, #6787, #6943, #6989, #7710, #7725, #7737, #7767, #7769, #7771, #7774, #7775, #7777, #7779, #7780, #7817, #7832, #7835, #7862, #7871, #7875, #7880, #7890, #7903, #7913, #7917, #7939, #7940, #7962, #7965)
Quality assurance
Improved and fixed type hints. (#7712, #7785, #7858, #7864, #7865, #7867)
Added CPU benchmarks, tracked on CodSpeed, so that performance regressions are caught before they are merged and performance work can be measured. (#7831, #7839, #7870, #7887, #7914, #7954)
Added a nightly job that runs the test suite against the development branches of dependencies, so that incompatibilities are found before those dependencies are released. (#5291, #6025, #7924, #7960)
CI and test improvements and fixes. (#5049, #5620, #5837, #6478, #6794, #7262, #7437, #7702, #7720, #7724, #7727, #7736, #7741, #7749, #7753, #7755, #7768, #7778, #7782, #7792, #7793, #7795, #7797, #7798, #7809, #7829, #7834, #7836, #7838, #7841, #7844, #7848, #7853, #7854, #7857, #7859, #7863, #7895, #7906, #7928, #7935, #7966, #7968, #7974, #7979, #7985, #7990, #7993, #7995, #8000, #8001, #8002)
Scrapy 2.17.0 (2026-07-07)
Highlights:
Security bug fixes
HTTP/2 and SOCKS proxy support for
HttpxDownloadHandlerImproved settings for changing allowed TLS versions
Security bug fixes
s3://requests now use HTTPS by default, instead of plaintext HTTP.Previously,
S3DownloadHandlersent signed S3 requests over plaintext HTTP unlessrequest.meta["is_secure"]was set to a true value, exposing the request path, the AWSAuthorizationheader, theX-Amz-Security-Tokenheader (when using temporary credentials), and the response contents to network attackers, who could also tamper with responses. See the 76g3-c3x4-crvx security advisory for details.To restore the previous behavior for a given request, set
request.meta["is_secure"]toFalse.
Deprecations
The
DOWNLOADER_CLIENT_TLS_METHODsetting is deprecated. You should use theDOWNLOAD_TLS_MIN_VERSIONand/orDOWNLOAD_TLS_MAX_VERSIONsettings instead if you want to change the TLS method selection. (#3288, #6546)The following spider attributes are deprecated in favor of settings:
http_user(useHTTPAUTH_USER)http_pass(useHTTPAUTH_PASS)http_auth_domain(useHTTPAUTH_DOMAIN)
(#7590)
The
scrapy.commands.ScrapyCommand.help()method is deprecated. It was never called by Scrapy. (#7626, #7633)The following TLS-related functions and constants, intended for internal use, are deprecated:
scrapy.core.downloader.tls.METHOD_TLSscrapy.core.downloader.tls.METHOD_TLSv10scrapy.core.downloader.tls.METHOD_TLSv11scrapy.core.downloader.tls.METHOD_TLSv12scrapy.core.downloader.tls.openssl_methodsscrapy.core.downloader.tls.DEFAULT_CIPHERSscrapy.utils.ssl.ffi_buf_to_string()scrapy.utils.ssl.get_temp_key_info()scrapy.utils.ssl.x509name_to_string()
The
CRAWLSPIDER_FOLLOW_LINKSsetting is deprecated. You can setfollow=Falsein your rules to achieve the same effect. (#7592)Instantiating
HttpCompressionMiddlewarewithout acrawlerargument is deprecated. (#7655)Instantiating
RefererMiddlewarewithout asettingsargument is deprecated. (#7664)
New features
Added support for HTTP/2 requests to
HttpxDownloadHandler. It requires setting the newHTTPX_HTTP2_ENABLEDsetting toTrue. (#7575)Added support for SOCKS proxies to
HttpxDownloadHandler. (#747, #7575)Added
DOWNLOAD_TLS_MIN_VERSIONandDOWNLOAD_TLS_MAX_VERSIONsettings as replacements for theDOWNLOADER_CLIENT_TLS_METHODsetting (which is now deprecated). Compared to the old setting, they support specifying a range of allowed versions and support newer TLS versions. (#4821, #6546)Added
HTTPAUTH_USER,HTTPAUTH_PASSandHTTPAUTH_DOMAINsettings andhttp_user,http_passandhttp_auth_domainmeta keys as more flexible ways to set HTTP authentication data. (#7590)Added a
verbatim_urlmeta key that can be set toTrueto skip request URL canonicalization. (#7473)Added
deny_tagsanddeny_attrsarguments toLinkExtractor. (#6321, #7679)scrapy.Item.fieldsnow returns the fields in the definition order instead of the alphabetical one. (#7015, #7694)Added a
RETRY_GIVE_UP_LOG_LEVELsetting, agive_up_log_levelmeta key and agive_up_log_levelargument of theget_retry_request()function that allow changing the log level of the message logged when the retry limit has been reached. (#4622, #5297, #7567)It’s now possible to set
DOWNLOADER_CLIENT_TLS_CIPHERStoNoneto use the default ciphers of the underlying TLS implementation. (#7499, #7665)
Improvements
FormRequestis no longer deprecated, only itsfrom_response()method is still deprecated. (#7561, #7671)Switched the item definition in the default project template from a
scrapy.item.Itemto a dataclass. (#7493, #7513)Fixed deprecation warnings with pyOpenSSL 26.3.0. (#7619)
Removed the runtime warnings for
Spider.allowed_domainscontaining URLs or domains with ports instead of just domains and for spider classes having astart_urlattribute instead ofstart_urls. Please use scrapy-lint to find mistakes in your spider code instead. (#4421, #7627)scrapy.utils.test.get_crawler()now disablesTELNETCONSOLE_ENABLEDby default. (#7644)Other code refactoring and improvements. (#7409, #7593, #7594, #7611, #7649)
Bug fixes
HttpxDownloadHandlerno longer ignores proxy credentials for redirected or retried requests. (#7601, #7630)GCSFeedStoragenow closes the temporary file after the upload. (#7546)Fixed
scrapy shell <URL>running a full spider crawl when there is a spider for the requested URL. This bug was introduced in Scrapy 2.13.0. (#7552, #7557)The
IMAGES_STORE_S3_ACLandIMAGES_STORE_GCS_ACLsettings are no longer ignored. This bug was introduced in Scrapy 2.12.0. (#7597, #7614)FTPDownloadHandlernow closes the connection after making the request. (#7602, #7667)Removed the deprecated
spiderargument from the pipeline defined in the default project template. (#7676)When a
Crawlerinstance is passed toAsyncCrawlerRunner.create_crawler()orCrawlerRunner.create_crawler(), settings from both classes are now merged, previously only the settings from theCrawlerinstance were used. (#1280, #7647)Fixed several issues with cookie handling in
scrapy.utils.request.request_to_curl(). (#7603, #7675, #7684)Fixed
scrapy.resolver.CachingThreadedResolvernot disabling the cache whenDNSCACHE_ENABLEDis set toFalse. (#7663)Fixed
scrapy.utils.response.open_in_browser()not removing comments when looking for the<base>tag. (#7506)Fixed checking for deprecated methods in custom
ITEM_PROCESSORimplementations. (#7589)Fixed
scrapy.utils.url.strip_url()corrupting some URLs with credentials. (#7604, #7605)scrapy.utils.misc.rel_has_nofollow()now ignores the case when looking for “nofollow” strings. (#7632)Fixed an exception in
scrapy.utils.sitemap.Sitemapwhen parsing some malformed sitemaps. (#7686, #7687)
Documentation
Added the docs about security considerations. (#7389, #7678)
Improved the item pipeline docs. (#2350, #7676)
Switched documentation examples from using
scrapy.item.Itemto using dataclasses. (#7493, #7513)Added feature comparison tables to the download handler docs. (#7575)
Improved the docs for logging settings. (#6909, #7668)
Documented a way to improve startup time and memory usage by using
SPIDER_MODULES. (#7576, #7600)Clarified handling of the
typeargument ofSelector. (#7704)Other documentation improvements and fixes. (#4954, #6120, #7286, #7564, #7573, #7598, #7599, #7698)
Quality assurance
Fixed deprecation warnings with pytest 9.1.0. (#7621)
CI and test improvements and fixes. (#5954, #7002, #7017, #7247, #7508, #7545, #7566, #7574, #7585, #7595, #7608, #7610, #7612, #7616, #7625, #7637, #7639, #7640, #7641, #7642, #7643, #7644, #7645, #7646, #7654, #7655, #7664, #7672, #7677, #7680, #7682, #7692)
Scrapy 2.16.0 (2026-05-19)
Highlights:
Official support for Python 3.14
Support for Twisted 26.4.0+
Modified requirements
Backward-incompatible changes
The following classes and functions, intended for internal use by
HTTP11DownloadHandlerandH2DownloadHandler, have been made private:scrapy.core.downloader.handlers.http11.ScrapyAgentscrapy.core.downloader.handlers.http11.ScrapyProxyAgentscrapy.core.downloader.handlers.http11.TunnelingAgentscrapy.core.downloader.handlers.http11.TunnelingTCP4ClientEndpointscrapy.core.downloader.handlers.http11.tunnel_request_data()scrapy.core.downloader.handlers.http2.ScrapyH2Agent
Deprecations
scrapy.FormRequestis deprecated. You can use the form2request library instead, see Creating requests that submit HTML forms. (#6438)scrapy.utils.python.MutableChainis deprecated. (#7504)
Deprecation removals
The
start_requests()method ofSpider, deprecated in 2.13.0, is removed and no longer called. Usestart()instead, or both to maintain support for lower Scrapy versions. (#7490)Support for
process_start_requests()methods of spider middlewares, deprecated in 2.13.0, is removed. Useprocess_start()instead, or both to maintain support for lower Scrapy versions. (#7490)Support for synchronous
process_spider_output()methods of spider middlewares, deprecated in Scrapy 2.13.0, is removed. You should upgrade the affected middlewares to have asynchronousprocess_spider_output()methods. (#7504)The
spiderarguments of the following methods ofScraper, deprecated in Scrapy 2.13.0, are removed:close_spider()enqueue_scrape()handle_spider_error()handle_spider_output()
(#7487)
HTTP/1.0 support code, deprecated in Scrapy 2.13.0, is removed. This includes:
scrapy.core.downloader.handlers.http10.HTTP10DownloadHandlerThe
scrapy.core.downloader.webclientmodule.The
DOWNLOADER_HTTPCLIENTFACTORYsetting.
(#7486)
The following functions, deprecated in Scrapy 2.13.0, are removed, you should import them from
w3lib.urldirectly instead:scrapy.utils.url.add_or_replace_parameter()scrapy.utils.url.add_or_replace_parameters()scrapy.utils.url.any_to_uri()scrapy.utils.url.canonicalize_url()scrapy.utils.url.file_uri_to_path()scrapy.utils.url.is_url()scrapy.utils.url.parse_data_uri()scrapy.utils.url.parse_url()scrapy.utils.url.path_to_file_uri()scrapy.utils.url.safe_download_url()scrapy.utils.url.safe_url_string()scrapy.utils.url.url_query_cleaner()scrapy.utils.url.url_query_parameter()
(#7487)
The following test-related code, deprecated in Scrapy 2.13.0, is removed:
the
scrapy.utils.testprocmodulethe
scrapy.utils.testsitemodulescrapy.utils.test.assert_gcs_environ()scrapy.utils.test.get_ftp_content_and_delete()scrapy.utils.test.get_gcs_content_and_delete()scrapy.utils.test.mock_google_cloud_storage()scrapy.utils.test.skip_if_no_boto()scrapy.utils.test.TestSpider
(#7487)
scrapy.utils.versions.scrapy_components_versions(), deprecated in Scrapy 2.13.0, is removed, you can usescrapy.utils.versions.get_versions()instead. (#7487)scrapy.downloadermiddlewares.ajaxcrawl.AjaxCrawlMiddlewareandscrapy.utils.url.escape_ajax(), deprecated in Scrapy 2.13.0, are removed. (#7487)The
__init__()method of priority queue classes (seeSCHEDULER_PRIORITY_QUEUE) now needs to support a keyword-onlystart_queue_clsparameter, not supporting it was deprecated in Scrapy 2.13.0. (#7487)scrapy.spiders.init.InitSpider, deprecated in Scrapy 2.13.0, is removed. (#7487)
New features
New features and improvements for
HttpxDownloadHandler:Support for proxies.
Support for the
download_latencymeta key.Support for
Response.certificate.Default headers set by the
httpxlibrary are no longer added to requests.
HTTP11DownloadHandlernow skips HTTPS proxy certificate verification when theDOWNLOAD_VERIFY_CERTIFICATESsetting is set toFalse. (#7496)
Improvements
time.monotonic()is used instead oftime.time()to calculate elapsed time in various places. (#7377)Improved extraction of the file extension from the URL in
FilesPipeline. (#4225, #7414)Other code refactoring and improvements. (#7401)
Bug fixes
HTTP11DownloadHandlernow raises an exception when a request has anhttps://destination and anhttps://proxy, which is not supported by this handler. Previously it tried to connect to the proxy via HTTP in this case. (#7496)H2DownloadHandlernow raises an exception for requests withhttp://URLs instead of trying to connect, which is not supported by this handler. (#7496)H2DownloadHandlerno longer adds the:statuspseudo-header toResponse.headers. (#7441)Fixed
scrapy.utils.response.open_in_browser()removing the<head>tag when adding the<base>tag. (#7459)
Documentation
Documented that
HTTP11DownloadHandlerdoesn’t support HTTPS proxies for HTTPS destinations and thatH2DownloadHandlerdoesn’t support proxies at all. (#7496)Added an example of using
logging.handlers.TimedRotatingFileHandlerto rotate Scrapy logs. (#3628, #7501)Mentioned
DOWNLOADER_CLIENT_TLS_METHODin Avoiding getting banned. (#5232, #7518)Other documentation improvements and fixes. (#7417, #7463, #7472, #7480, #7489, #7503, #7507)
Quality assurance
Added tests that connect to https://books.toscrape.com/ to test the behavior with a real website. These tests are marked with the
requires_internetpytest mark and can be skipped with e.g.-m 'not requires_internet'if you cannot or don’t want to run them. (#7520)CI and test improvements and fixes. (#7441, #7466, #7491, #7496)
Scrapy 2.15.2 (2026-04-28)
Bug fixes
Fixed links in https://docs.scrapy.org/llms.txt (#7467)
Scrapy 2.15.1 (2026-04-23)
Bug fixes
Sharing of the SSL context between multiple connections, introduced in Scrapy 2.15.0, is reverted as it caused problems and wasn’t actually needed. (#7445, #7450)
Fixed
scrapy.settings.BaseSettings.getwithbase()failing on keys with dots that aren’t import names. It now works the way it worked before Scrapy 2.15.0, without trying to match class objects and import path. A separate method,get_component_priority_dict_with_base(), was added that does that, and it is now used for component priority dictionaries. (#7426, #7449)
Scrapy 2.15.0 (2026-04-09)
Highlights:
Experimental support for running without a Twisted reactor
Experimental
httpx-based download handler
Backward-incompatible changes
The built-in HTTP download handlers now raise Scrapy-specific exceptions instead of implementation-specific ones, see Exceptions raised by download handlers. This can affect user code that handles downloader exceptions, such as
process_exception()methods of custom downloader middlewares. (#7208)In order to fix a long-standing bug with handling of asynchronous storages, the following changes were made to media pipeline classes, which can impact some of the user code that subclasses them or calls their methods directly:
overrides of
scrapy.pipelines.media.MediaPipeline.media_downloaded()andfile_downloaded()can now return coroutinesmedia_downloaded(),file_downloaded()andimage_downloaded()now return coroutines
RequestandResponseobjects:__slots__and setter changes:scrapy.http.Requestandscrapy.http.Responsenow define__slots__. Assigning arbitrary attributes to instances (for example,response.foo = 1) will raiseAttributeError. Store per-request/response data in the request/responsemetamapping instead of attaching new attributes to the objects.If you maintain custom
RequestorResponsesubclasses that relied on dynamic instance attributes, either add'__dict__'to your subclass__slots__to allow dynamic attributes, or migrate per-instance state tometaor explicit documented attributes.The setters for
headers,flagsandcookiesno longer coerce falsy values intoNone. For example,request.headers = {}now stores an emptyscrapy.http.headers.Headersinstance (notNone), andrequest.flags = []remains an empty list instead of being set toNone. Update code that relied onis Nonechecks or the previous coercion behaviour.
Deprecation removals
The context factory class set as the value of the
DOWNLOADER_CLIENTCONTEXTFACTORYsetting is now required to support themethodargument of__init__(), recommended since Scrapy 1.2.0. (#7353)
Deprecations
scrapy.mail.MailSenderis deprecated. Please usesmtplib,twisted.mail.smtpor other 3rd party email libraries. (#7249, #7263)The
scrapy.extensions.statsmailer.StatsMailerextension is deprecated. You can instead implement your own notifications by handling thespider_closedsignal. (#7249, #7263)The
MEMUSAGE_NOTIFY_MAILsetting is deprecated. You can instead implement your own notifications by handling thememusage_warning_reachedandspider_closedsignals. (#7249, #7263)The
DNS_RESOLVERsetting was renamed toTWISTED_DNS_RESOLVERand the old name is deprecated. (#7350, #7361)The
DOWNLOADER_CLIENTCONTEXTFACTORYsetting is deprecated. If you were using it to switch toscrapy.core.downloader.contextfactory.BrowserLikeContextFactory, please use the newDOWNLOAD_VERIFY_CERTIFICATESsetting instead. If you cannot use the default context factory for some other reason, please subclass the download handler instead. (#7352, #7379)scrapy.core.downloader.contextfactory.BrowserLikeContextFactoryis deprecated. You can set the newDOWNLOAD_VERIFY_CERTIFICATESsetting toTrueinstead. (#7379)The following implementation details of the context factory handling code are deprecated:
scrapy.core.downloader.contextfactory.AcceptableProtocolsContextFactoryscrapy.core.downloader.contextfactory.load_context_factory_from_settings()scrapy.core.downloader.contextfactory.ScrapyClientContextFactoryscrapy.core.downloader.tls.ScrapyClientTLSOptions
Passing
strinstead ofbytestoscrapy.utils.sitemap.Sitemapandscrapy.utils.sitemap.sitemap_urls_from_robots()is deprecated. (#7007)scrapy.utils.misc.walk_modules()is deprecated. You can usescrapy.utils.misc.walk_modules_iter()instead. (#7388)scrapy.shell.Shell.inthreadis deprecated. You can usescrapy.shell.Shell.fetch_availableinstead to check iffetch()can be used. (#7395)scrapy.commands.ScrapyCommand.set_crawler()is deprecated. (#7276)
New features
Added an experimental mode for running Scrapy without installing a Twisted reactor: set
TWISTED_REACTOR_ENABLEDtoFalseto enable it. This mode has limitations, refer to its documentation for details. As long as it’s experimental, its behavior and related features and APIs may change in future Scrapy releases in a breaking way. (#6219, #7185, #7186, #7187, #7188, #7190, #7197, #7199, #7209, #7228, #7355, #7366, #7385, #7395)Added the
scrapy.utils.reactorless.is_reactorless()function that checks if there is a running asyncio event loop but no Twisted reactor. (#7185, #7199)Changed
scrapy.utils.asyncio.is_asyncio_available()to returnTrueif there is a running asyncio loop, even if no Twisted reactor is installed. (#7185, #7199)Added an experimental download handler that uses the httpx library and doesn’t require a Twisted reactor:
HttpxDownloadHandler. As long as it’s experimental, its behavior may change in future Scrapy releases in a breaking way. (#6805, #7239, #7368, #7384)Added the
DOWNLOAD_BIND_ADDRESSsetting as a global counterpart to the per-requestbindaddressmeta key. (#7266, #7283)Added the
DOWNLOAD_VERIFY_CERTIFICATESsetting that can be set toTrueto make Scrapy abort HTTPS requests when the server certificate is invalid or doesn’t match the domain. (#7379)The built-in HTTP download handlers now raise Scrapy-specific exceptions instead of implementation-specific ones, to allow unified handling of similar problems caused by different implementations. The default value of the
RETRY_EXCEPTIONSsetting was updated replacing Twisted-specific exceptions with these new ones. The exceptions:(#7208)
Added the
memusage_warning_reachedsignal emitted by theMemoryUsageextension when the memory usage reachesMEMUSAGE_WARNING_MB. (#7249, #7263)Added
Headers.to_tuple_list()that returns headers as a list of(key, value)tuples. (#7239)S3DownloadHandlernow uses the download handler configured for the"https"scheme to make requests instead of always usingHTTP11DownloadHandler. (#7369, #7370)Added
scrapy.utils.misc.walk_modules_iter()as a replacement forscrapy.utils.misc.walk_modules()that returns an iterable instead of a list. (#7388)
Improvements
asyncio.to_thread()is now used instead oftwisted.internet.threads.deferToThread()in the built-in feed storages, media pipeline storages and thescrapy.utils.decorators.inthread()decorator when available. (#7183, #7184, #7349)Improved memory footprint of
RequestandResponseobjects by adding__slots__and omitting empty lists and dicts in some internal attributes. (#7036, #7367, #7374)_ScrapyClientContextFactoryno longer mutates the SSL context, to avoid the behavior that was deprecated in pyOpenSSL 25.1.0. (#6859, #7353)Improved memory usage of
SitemapSpiderandscrapy.utils.sitemap.Sitemap. (#3529, #7007)Improved the scheduling behavior of
DownloaderAwarePriorityQueuewhen crawling multiple domains. (#7293, #7351)HTTP11DownloadHandlerandH2DownloadHandlernow handle TLS verbose logging (seeDOWNLOADER_CLIENT_TLS_VERBOSE_LOGGING) directly instead of relying on_ScrapyClientContextFactory. (#7387)The server certificate verification code now correctly handles certificates with IP addresses in
subjectAltName. (#7353)Improved reliability of
scrapy.utils.trackref.get_oldest(). (#1758, #7375)Other code refactoring and improvements. (#7210, #7238, #7376, #7386, #7395, #7405, #7410)
Bug fixes
Media pipelines should now wait for uploads to asynchronous storages (e.g.
S3FilesStore) to complete. (#2183, #6369, #7182)Fixed merging
*_BASEsettings (e.g. mergingDOWNLOADER_MIDDLEWARESwithDOWNLOADER_MIDDLEWARES_BASE) when a component is referred to by a class object in one setting and by a string import path in the other one. (#6912, #6993)scrapy runspiderandscrapy crawlnow set the exit code to 1 if an exception happened early (this was broken since Scrapy 2.13.0). (#6820, #7255)Fixed repeated warnings about data loss (see
DOWNLOAD_FAIL_ON_DATALOSS) not being suppressed inHTTP11DownloadHandler. (#7222)Improved FTP connection management in
scrapy.pipelines.files.FTPFilesStore. (#7256)Fixed the
spidervariable in the shell, which wasn’t available since Scrapy 2.13.0. (#7395)
Documentation
The
llms.txtandllms-full.txtfiles and Markdown versions of pages are now generated when the HTML documentation is built. (#7380)Added a “Copy as Markdown” button to the HTML documentation. (#7380)
Added docs for using Pydantic models as items. (#6955, #6966)
Documented job directory contents. (#4842, #5260)
Improved docs for
dont_filter. (#6398, #7245)Clarified that settings related to
TWISTED_DNS_RESOLVERare only taken into account if the selected resolver supports them. (#7385)Other documentation improvements and fixes. (#7248, #7274, #7406, #7408)
Quality assurance
Added the
no-reactortest environment that doesn’t install a Twisted reactor and usespytest-asyncioinstead ofpytest-twistedto run asynchronous test functions. (#6952, #7189, #7233, #7234, #7254, #7259)CI and test improvements and fixes. (#7060, #7223, #7232, #7241, #7250, #7256, #7276, #7277, #7279, #7329, #7363, #7381, #7402)
Scrapy 2.14.2 (2026-03-12)
Security bug fixes
Values from the
Referrer-Policyheader of HTTP responses are no longer executed as Python callables. See the cwxj-rr6w-m6w7 security advisory for details.In line with the standard, 301 redirects of
POSTrequests are converted intoGETrequests.Converting to a
GETrequest implies not only a method change, but also omitting the body andContent-*headers in the redirect request. On cross-origin redirects (for example, cross-domain redirects), this is effectively a security bug fix for scenarios where the body contains secrets.
Deprecations
Passing a response URL string as the first positional argument to
scrapy.spidermiddlewares.referer.RefererMiddleware.policy()is deprecated. Pass aResponseinstead.The parameter has also been renamed to
responseto reflect this change. The old parameter name (resp_or_url) is deprecated.
New features
Added a new setting,
REFERRER_POLICIES, to allow customizing supported referrer policies.
Bug fixes
Made additional redirect scenarios convert to
GETin line with the standard:Only
POST302 redirects are converted intoGETrequests; other methods are preserved.HEAD303 redirects are not converted intoGETrequests.GET303 redirects do not have their body or standardContent-*headers removed.
Redirects where the original request body is dropped now also have their
Content-Encoding,Content-LanguageandContent-Locationheaders removed, in addition to theContent-TypeandContent-Lengthheaders that were already being removed.Redirects now preserve the source URL fragment if the redirect URL does not include one. This is useful when using browser-based download handlers, such as scrapy-playwright or scrapy-zyte-api, while letting Scrapy handle redirects.
The
Refererheader is now removed on redirect ifRefererMiddlewareis disabled.The handling of the
Refererheader on redirects now takes into account theReferer-Policyheader of the response that triggers the redirect.
Scrapy 2.14.1 (2026-01-12)
Deprecations
scrapy.utils.defer.maybeDeferred_coro()is deprecated. (#7212)
Bug fixes
Fixed custom stats collectors that require a
spiderargument in theiropen_spider()andclose_spider()methods not receiving the argument when called by the engine.Note, however, that the
spiderargument is now deprecated and will stop being passed in a future version of Scrapy.(#7213)
Quality assurance
Scrapy 2.14.0 (2026-01-05)
Highlights:
More coroutine-based replacements for Deferred-based APIs
The default priority queue is now
DownloaderAwarePriorityQueueDropped support for Python 3.9 and PyPy 3.10
Improved and documented the API for custom download handlers
Modified requirements
Backward-incompatible changes
If you set the
TWISTED_REACTORsetting to a non-asyncio value at the spider level, you may now need to set theFORCE_CRAWLER_PROCESSsetting toTruewhen running Scrapy via its command-line tool to avoid a reactor mismatch exception. (#6845)The
log_count/*stats no longer count some of the early messages that they counted before. While the earliest log messages, emitted before the counter is initialized, were never counted, the counter initialization now happens later than in previous Scrapy versions. You may need to adjust expected values if you retrieve and compare values of these stats in your code. (#7046)The classes listed below are now abstract base classes. They cannot be instantiated directly and their subclasses need to override the abstract methods listed below to be able to be instantiated. If you previously instantiated these classes directly, you will now need to subclass them and provide trivial (e.g. empty) implementations for the abstract methods.
scrapy.commands.ScrapyCommandrun()short_desc()
scrapy.exporters.BaseItemExporterscrapy.extensions.feedexport.BlockingFeedStorage_store_in_thread()
scrapy.middleware.MiddlewareManager_get_mwlist_from_settings()
scrapy.spidermiddlewares.referer.ReferrerPolicyreferrer()
(#6930)
Scrapy no longer passes a
spiderargument to any methods of thestats collector. It wasn’t passed in many of the calls even in older Scrapy versions, so we don’t expect existing custom stats collector implementations to require aspiderargument. If your implementation needs aSpiderinstance, you can get it from theCrawlerinstance passed to the constructor. (#7011)scrapy.middleware.MiddlewareManagerno longer includes code for handlingopen_spider()andclose_spider()component methods. As this code was only used for pipelines it was moved intoscrapy.pipelines.ItemPipelineManager. This change should only affect custom subclasses ofMiddlewareManager. The following code was moved:scrapy.middleware.MiddlewareManager.open_spider()scrapy.middleware.MiddlewareManager.close_spider()Code in
scrapy.middleware.MiddlewareManager._add_middleware()that processesopen_spider()andclose_spider()component methods.
(#7006)
scrapy.downloadermiddlewares.robotstxt.RobotsTxtMiddleware.process_request()now returns a coroutine, previously it returned aDeferredobject orNone. Therobot_parser()method was also changed to return a coroutine. This change only impacts code that subclassesRobotsTxtMiddlewareor calls its methods directly. (#6802)The built-in download handlers have been refactored, changing the signatures of their methods. This change should only affect user code that subclasses any of these handlers or calls their methods directly. (#6778, #7164)
scrapy.pipelines.media.MediaPipeline.process_item()now returns a coroutine, previously it returned aDeferredobject. This change only impacts code that calls this method directly. (#7177)
Deprecation removals
The
from_settings()method of the following components, deprecated in Scrapy 2.12.0, is removed. You should usefrom_crawler()instead.scrapy.mail.MailSenderscrapy.middleware.MiddlewareManagerscrapy.core.downloader.contextfactory.ScrapyClientContextFactory
(#7126)
Scrapy no longer calls
from_settings()methods of 3rd-party components, deprecated in Scrapy 2.12.0. You should define afrom_crawler()method instead. (#7126)The initialization flow of
scrapy.pipelines.media.MediaPipelineand its subclasses was simplified, it now mandatesfrom_crawler()methods andcrawlerarguments of__init__()methods. Not using these was deprecated in Scrapy 2.12.0. (#7126)The
REQUEST_FINGERPRINTER_IMPLEMENTATIONsetting, deprecated in Scrapy 2.12.0, is removed. (#7126)The
scrapy.utils.misc.create_instance()function, deprecated in Scrapy 2.12.0, is removed. Usescrapy.utils.misc.build_from_crawler()instead. (#7126)The
scrapy.core.downloader.Downloader._get_slot_key()function, deprecated in Scrapy 2.12.0, is removed. Usescrapy.core.downloader.Downloader.get_slot_key()instead. (#7126)The
scrapy.twisted_versionattribute, deprecated in Scrapy 2.12.0, is removed. You should instead use thetwisted.versionattribute directly. (#7126)The following utility functions, deprecated in Scrapy 2.12.0, are removed:
scrapy.utils.defer.process_chain_both()scrapy.utils.python.equal_attributes()scrapy.utils.python.flatten()scrapy.utils.python.iflatten()scrapy.utils.request.request_authenticate()scrapy.utils.test.assert_samelines()
(#7126)
scrapy.utils.serialize.ScrapyJSONDecoder, deprecated in Scrapy 2.12.0, is removed. (#7126)The
scrapy.extensions.feedexport.build_storage()function, deprecated in Scrapy 2.12.0, is removed, you can instead call the builder callable directly. (#7126)scrapy.spidermiddlewares.offsite.OffsiteMiddleware, deprecated in Scrapy 2.11.2, is removed.scrapy.downloadermiddlewares.offsite.OffsiteMiddlewareshould be used instead. (#6926)
Deprecations
The following methods that return a
Deferredare deprecated in favor of their coroutine-based replacements:scrapy.core.downloader.handlers.DownloadHandlersdownload_request()(usedownload_request_async())
scrapy.core.downloader.middleware.DownloaderMiddlewareManagerdownload()(usedownload_async())
scrapy.core.engine.ExecutionEnginestart()(usestart_async())stop()(usestop_async())close()(useclose_async())open_spider()(useopen_spider_async())close_spider()(useclose_spider_async())download()(usedownload_async())
scrapy.core.scraper.Scraperopen_spider()(useopen_spider_async())call_spider()(usecall_spider_async())close_spider()(useclose_spider_async())handle_spider_output()(usehandle_spider_output_async())start_itemproc()(usestart_itemproc_async())
scrapy.core.spidermw.SpiderMiddlewareManagerscrape_response()(usescrape_response_async())
-
stop()(usestop_async())
scrapy.pipelines.ItemPipelineManagerprocess_item()(useprocess_item_async())open_spider()(useopen_spider_async())close_spider()(useclose_spider_async())
scrapy.signalmanager.SignalManagersend_catch_log_deferred()(usesend_catch_log_async())
scrapy.utils.signal.send_catch_log_deferred()(usescrapy.utils.signal.send_catch_log_async())
(#6791, #6842, #6979, #6997, #6999, #7005, #7043, #7069, #7161, #7164)
The following spider attributes are deprecated in favor of settings:
download_maxsize(useDOWNLOAD_MAXSIZE)download_timeout(useDOWNLOAD_TIMEOUT)download_warnsize(useDOWNLOAD_WARNSIZE)max_concurrent_requests(useCONCURRENT_REQUESTS_PER_DOMAIN)user_agent(useUSER_AGENT)
Returning a
Deferredfrom the following user-defined functions is deprecated in favor of defining them as coroutine functions:spider callbacks and errbacks (which was never officially supported and may work incorrectly)
the
process_request(),process_response()andprocess_exception()methods of custom downloader middlewaresthe
process_item(),open_spider()andclose_spider()methods of custom pipelinessignal handlers
the
download_request()andclose()methods of custom download handlers
(#6718, #6778, #7069, #7147, #7148, #7149, #7150, #7151, #7161, #7164, #7179)
Passing a
spiderargument to the following methods is deprecated:scrapy.core.spidermw.SpiderMiddlewareManager.process_start()scrapy.core.downloader.Downloader.fetch()scrapy.core.downloader.Downloader._get_slot()scrapy.core.downloader.handlers.DownloadHandlers.download_request()all public methods of
scrapy.statscollectors.StatsCollectorscrapy.spidermiddlewares.base.BaseSpiderMiddleware.process_spider_output()scrapy.spidermiddlewares.base.BaseSpiderMiddleware.process_spider_output_async()all
process_*()methods of built-in downloader middlewaresall
process_*()methods of built-in spider middlewaresscrapy.pipelines.media.MediaPipeline.open_spider()scrapy.pipelines.media.MediaPipeline.process_item()
(#6750, #6927, #6984, #7006, #7011, #7033, #7037, #7045, #7178)
Instantiating subclasses of
scrapy.middleware.MiddlewareManagerwithout aCrawlerinstance is deprecated. (#6984)For the following user-defined functions and methods requiring a
spiderargument is deprecated, if you need aSpiderinstance inside them you should get it from theCrawlerinstance (you may need to refactor your code to save that instance in e.g. thefrom_crawler()method):the
process_request(),process_response()andprocess_exception()methods of custom downloader middlewaresthe
process_spider_input(),process_spider_output(),process_spider_output_async()andprocess_spider_exception()methods of custom spider middlewaresthe
process_item()method of custom pipelinesthe
fetch()method of a customDOWNLOADER
The following things in custom download handlers are deprecated:
not having a
lazyattribute (you should define it asTrueif you want to keep the current behavior)returning a
Deferredfrom thedownload_request()method (you should refactor it to return a coroutine; you also need to remove thespiderargument when doing this)not having a
close()method, having a synchronous one or one that returns aDeferred(you should refactor it to return a coroutine or add an empty one if you don’t have it)
Custom implementations of
ITEM_PROCESSORshould now defineprocess_item_async(),open_spider_async()andclose_spider_async()methods instead of, or in addition to,process_item(),open_spider()andclose_spider(). (#7005, #7043)The
CONCURRENT_REQUESTS_PER_IPsetting is deprecated, useCONCURRENT_REQUESTS_PER_DOMAINinstead. (#6917, #6921)The
scrapy.core.downloader.handlers.httpmodule is deprecated. You should importscrapy.core.downloader.handlers.http11.HTTP11DownloadHandlerdirectly instead of importing thescrapy.core.downloader.handlers.http.HTTPDownloadHandleralias. (#7079)The
scrapy.utils.decorators.defers()decorator is deprecated, you can usetwisted.internet.defer.maybeDeferred()directly or reimplement this decorator in your code. (#7164)scrapy.spiders.CrawlSpider._parse_response()is deprecated, usescrapy.spiders.CrawlSpider.parse_with_rules()instead. (#4463, #6804)The functions that add a delay to a Deferred are deprecated, their underlying Twisted functions can be used instead, either directly if a delay isn’t needed, or with some explicit way to add a delay if it’s needed:
scrapy.utils.defer.mustbe_deferred()(you can usetwisted.internet.defer.maybeDeferred())scrapy.utils.defer.defer_succeed()(you can usetwisted.internet.defer.succeed())scrapy.utils.defer.defer_fail()(you can usetwisted.internet.defer.fail())scrapy.utils.defer.defer_result()(you can usetwisted.internet.defer.succeed()andtwisted.internet.defer.fail())
(#6937)
New features
Added
scrapy.crawler.AsyncCrawlerProcessandscrapy.crawler.AsyncCrawlerRunneras counterparts toCrawlerProcessandCrawlerRunnerthat offer coroutine-based APIs. (#6789, #6790, #6796, #6817, #6845, #7034)Added coroutine counterparts to some of the Deferred-based APIs:
scrapy.core.downloader.handlers.DownloadHandlersdownload_request_async()(todownload_request())
scrapy.core.downloader.middleware.DownloaderMiddlewareManagerdownload_async()(todownload())
scrapy.core.engine.ExecutionEnginestart_async()(tostart())stop_async()(tostop())close_async()(toclose())open_spider_async()(toopen_spider())close_spider_async()(toclose_spider())download_async()(todownload())
scrapy.core.scraper.Scraperopen_spider_async()(toopen_spider())close_spider_async()(toclose_spider())start_itemproc_async()(tostart_itemproc())
-
crawl_async()(tocrawl())stop_async()(tostop())
scrapy.pipelines.ItemPipelineManagerprocess_item_async()(toprocess_item())open_spider_async()(toopen_spider())close_spider_async()(toclose_spider())
scrapy.signalmanager.SignalManagersend_catch_log_async()(tosend_catch_log_deferred())
(#6781, #6791, #6792, #6795, #6801, #6817, #6842, #6997, #7005, #7043, #7069,:gh:7164, #7202)
The default value of the
SCHEDULER_PRIORITY_QUEUEsetting is now'scrapy.pqueues.DownloaderAwarePriorityQueue'. (#6924, #6940)Added
scrapy.extensions.logcount.LogCount, an enabled-by-default extension that is responsible for thelog_count/*stats. Previously, this code was inscrapy.crawler.Crawlerand couldn’t be disabled. (#7046)Added
scrapy.spiders.CrawlSpider.parse_with_rules()as a public replacement for_parse_response(). (#4463, #6804)Added
scrapy.utils.asyncio.is_asyncio_available()as an alternative toscrapy.utils.reactor.is_asyncio_reactor_installed()with a future-proof name and semantics. (#6827)The API for download handlers, previously undocumented, has been modernized and documented. An optional base class,
scrapy.core.downloader.handlers.base.BaseDownloadHandler, has been added to simplify writing custom download handlers that conform to the current API. (#4944, #6778, #7164)Added
scrapy.utils.defer.ensure_awaitable(), which can be helpful to call user-defined functions that can return coroutines, Deferreds or values directly. (#7005)The
requests.seenfile, written byRFPDupeFilterwhen job persistence is enabled, now uses line buffering to reduce data loss in spider crashes. (#6019, #7094)Images downloaded by
ImagesPipelineare now automatically transposed based on EXIF data. (#6525, #6975)
Improvements
Bug fixes
Setting
FILES_STOREorIMAGES_STOREtoNonenow correctly disables the respective pipeline. (#6964, #6969)MetaRefreshMiddlewarenow uses the URL set in the<base>tag as the base URL when redirecting to a relative URL. (#7042, #7047)Passing
Noneas a value of thedownload_slotrequest meta key is now handled in the same way as not setting this meta key at all. (#7172)Fixed parsing of the first line of
robots.txtfiles that have a BOM. (#6195, #7095)
Documentation
Added documentation about download handlers, their API and built-in handlers. (#4944, #7164)
Added a section about the scrapy-spider-metadata library to the spider argument docs. (#6676, #6957, #7116)
Improved the docs about coroutine-based and Deferred-based APIs. (#6800, #7146)
Other documentation improvements and fixes. (#7058, #7076, #7109, #7195, #7198)
Quality assurance
Switched from
twisted.trialtopytest-twistedand replaced remainingunittestandtwisted.trialfeatures withpytestones. (#6658, #6873, #6884, #6938)Enabled fancy
pytestasserts. (#6888)Added Sphinx Lint to the
pre-commitconfiguration. (#6920)CI and test improvements and fixes. (#6649, #6769, #6821, #6835, #6836, #6846, #6883, #6885, #6889, #6905, #6928, #6933, #6941, #6942, #6945, #6947, #6960, #6968, #6972, #6974, #6996, #7003, #7012, #7013, #7050, #7059, #7070, #7073, #7118, #7127, #7141, #7143, #7145, #7173)
Code cleanups. (#6803, #6838, #6849, #6875, #6876, #6892, #6930, #6949, #6970, #6977, #6986, #7008, #7177)
Scrapy 2.13.4 (2025-11-17)
Security bug fixes
Improved protection against decompression bombs in
HttpCompressionMiddlewarefor responses compressed using thebranddeflatemethods: if a single compressed chunk would be larger than the response size limit (seeDOWNLOAD_MAXSIZE) when decompressed, decompression is no longer carried out. This is especially important for thebr(Brotli) method that can provide a very high compression ratio. Please, see the CVE-2025-6176 and GHSA-2qfp-q593-8484 security advisories for more information. (#7134)
Modified requirements
Other changes
Restricted the maximum supported Twisted version to
25.5.0, as Scrapy currently uses some private APIs changed in later Twisted versions. (#7142)Stopped setting the
COVERAGE_COREenvironment variable in tests, it didn’t have an effect but caused thecoveragemodule to produce a warning or an error. (#7137)Removed the documentation build dependency on the deprecated
sphinx-hoverxrefmodule. (#6786, #6922)
Scrapy 2.13.3 (2025-07-02)
Changed the values for
DOWNLOAD_DELAY(from0to1) andCONCURRENT_REQUESTS_PER_DOMAIN(from8to1) in the default project template. (#6597, #6918, #6923)Improved
scrapy.core.engine.ExecutionEnginelogic related to initialization and exception handling, fixing several cases where the spider would crash, hang or log an unhandled exception. (#6783, #6784, #6900, #6908, #6910, #6911)Fixed a Windows issue with feed exports using
scrapy.extensions.feedexport.FileFeedStoragethat caused the file to be created on the wrong drive. (#6894, #6897)Allowed running tests with Twisted 25.5.0+ again. Pytest 8.4.1+ is now required for running tests in non-pinned envs as support for the new Twisted version was added in that version. (#6893)
Fixed running tests with lxml 6.0.0+. (#6919)
Added a deprecation notice for
scrapy.spidermiddlewares.offsite.OffsiteMiddlewareto the Scrapy 2.11.2 release notes. (#6926)Updated contribution docs to refer to ruff instead of black. (#6903)
Scrapy 2.13.2 (2025-06-09)
Fixed a bug introduced in Scrapy 2.13.0 that caused results of request errbacks to be ignored when the errback was called because of a downloader error. (#6861, #6863)
Added a note about the behavior change of
scrapy.utils.reactor.is_asyncio_reactor_installed()to its docs and to the “Backward-incompatible changes” section of the Scrapy 2.13.0 release notes. (#6866)Improved the message in the exception raised by
scrapy.utils.test.get_reactor_settings()when there is no reactor installed. (#6866)Updated the
scrapy.crawler.CrawlerRunnerexamples in Common Practices to install the reactor explicitly, to fix reactor-related errors with Scrapy 2.13.0 and later. (#6865)Fixed
scrapy fetchnot working with scrapy-poet. (#6872)Fixed an exception produced by
scrapy.core.engine.ExecutionEnginewhen it’s closed before being fully initialized. (#6857, #6867)Improved the README, updated the Scrapy logo in it. (#6831, #6833, #6839)
Restricted the Twisted version used in tests to below 25.5.0, as some tests fail with 25.5.0. (#6878, #6882)
Updated type hints for Twisted 25.5.0 changes. (#6882)
Removed the old artwork. (#6874)
Scrapy 2.13.1 (2025-05-28)
Give callback requests precedence over start requests when priority values are the same.
This makes changes from 2.13.0 to start request handling more intuitive and backward compatible. For scenarios where all requests have the same priorities, in 2.13.0 all start requests were sent before the first callback request. In 2.13.1, same as in 2.12 and lower, start requests are only sent when there are not enough pending callback requests to reach concurrency limits.
(#6828)
Fixed a typo in the code example of Delaying start request iteration. (#6812, #6815)
Fixed a typo in the Supported callables section of the documentation. (#6822)
Made this page more prominently listed in PyPI project links. (#6826)
Scrapy 2.13.0 (2025-05-08)
Highlights:
The asyncio reactor is now enabled by default
Replaced
start_requests()(sync) withstart()(async) and changed how it is iteratedAdded the
allow_offsiterequest meta keySpider middlewares that don’t support asynchronous spider output are deprecated
Added a base class for universal spider middlewares
Modified requirements
Backward-incompatible changes
The default value of the
TWISTED_REACTORsetting was changed fromNoneto"twisted.internet.asyncioreactor.AsyncioSelectorReactor". This value was used in newly generated projects since Scrapy 2.7.0 but now existing projects that don’t explicitly set this setting will also use the asyncio reactor. You can change this setting in your project to use a different reactor. (#6659, #6713)The iteration of start requests and items no longer stops once there are requests in the scheduler, and instead runs continuously until all start requests have been scheduled.
To reproduce the previous behavior, see Delaying start request iteration. (#6729)
An unhandled exception from the
open_spider()method of a spider middleware no longer stops the crawl. (#6729)In
scrapy.core.engine.ExecutionEngine:The second parameter of
open_spider(),start_requests, has been removed. The start requests are determined by thespiderparameter instead (seestart()).The
slotattribute has been renamed to_slotand should not be used.
(#6729)
In
scrapy.core.engine, theSlotclass has been renamed to_Slotand should not be used. (#6729)The
slottelnet variable has been removed. (#6729)In
scrapy.core.spidermw.SpiderMiddlewareManager,process_start_requests()has been replaced byprocess_start(). (#6729)The
scrape_funccallable passed toscrapy.core.spidermw.SpiderMiddlewareManager.scrape_response()is now called with 2 parameters,responseandrequest, instead of 3, and must return aDeferredinstead of an iterable. (#6787)The now-deprecated
start_requests()method, when it returns an iterable instead of being defined as a generator, is now executed after the scheduler instance has been created. (#6729)When using
JOBDIR, start requests are now serialized into their own,s-suffixed priority folders. You can setSCHEDULER_START_DISK_QUEUEtoNoneor""to change that, but the side effects may be undesirable. SeeSCHEDULER_START_DISK_QUEUEfor details. (#6729)The URL length limit, set by the
URLLENGTH_LIMITsetting, is now also enforced for start requests. (#6777)Calling
scrapy.utils.reactor.is_asyncio_reactor_installed()without an installed reactor now raises an exception instead of installing a reactor. This shouldn’t affect normal Scrapy use cases, but it may affect 3rd-party test suites that use Scrapy internals such asCrawlerand don’t install a reactor explicitly. If you are affected by this change, you most likely need to install the reactor before running Scrapy code that expects it to be installed. (#6732, #6735)The
from_settings()method ofUrlLengthMiddleware, deprecated in Scrapy 2.12.0, is removed earlier than the usual deprecation period (this was needed because after the introduction of theBaseSpiderMiddlewarebase class and switching built-in spider middlewares to it those middlewares need theCrawlerinstance at run time). Please usefrom_crawler()instead. (#6693)scrapy.utils.url.escape_ajax()is no longer called when aRequestinstance is created. It was only useful for websites supporting the_escaped_fragment_feature which most modern websites don’t support. If you still need this you can modify the URLs before passing them toRequest. (#6523, #6651)
Deprecation removals
Deprecations
The
start_requests()method ofSpideris deprecated, usestart()instead, or both to maintain support for lower Scrapy versions. (#456, #3477, #4467, #5627, #6729)The
process_start_requests()method of spider middlewares is deprecated, useprocess_start()instead, or both to maintain support for lower Scrapy versions. (#456, #3477, #4467, #5627, #6729)The
__init__method of priority queue classes (seeSCHEDULER_PRIORITY_QUEUE) should now support a keyword-onlystart_queue_clsparameter. (#6752)Spider middlewares that don’t support asynchronous spider output are deprecated. The async iterable downgrading feature, needed for using such middlewares with asynchronous callbacks and with other spider middlewares that produce asynchronous iterables, is also deprecated. Please update all such middlewares to support asynchronous spider output. (#6664)
Functions that were imported from
w3lib.urland re-exported inscrapy.utils.urlare now deprecated, you should import them fromw3lib.urldirectly. They are:scrapy.utils.url.add_or_replace_parameter()scrapy.utils.url.add_or_replace_parameters()scrapy.utils.url.any_to_uri()scrapy.utils.url.canonicalize_url()scrapy.utils.url.file_uri_to_path()scrapy.utils.url.is_url()scrapy.utils.url.parse_data_uri()scrapy.utils.url.parse_url()scrapy.utils.url.path_to_file_uri()scrapy.utils.url.safe_download_url()scrapy.utils.url.safe_url_string()scrapy.utils.url.url_query_cleaner()scrapy.utils.url.url_query_parameter()
HTTP/1.0 support code is deprecated. It was disabled by default and couldn’t be used together with HTTP/1.1. If you still need it, you should write your own download handler or copy the code from Scrapy. The deprecations include:
scrapy.core.downloader.handlers.http10.HTTP10DownloadHandlerscrapy.core.downloader.webclient.ScrapyHTTPClientFactoryscrapy.core.downloader.webclient.ScrapyHTTPPageGetterOverriding
scrapy.core.downloader.contextfactory.ScrapyClientContextFactory.getContext()
(#6634)
The following modules and functions used only in tests are deprecated:
the
scrapy.utils.testprocmodulethe
scrapy.utils.testsitemodulescrapy.utils.test.assert_gcs_environ()scrapy.utils.test.get_ftp_content_and_delete()scrapy.utils.test.get_gcs_content_and_delete()scrapy.utils.test.mock_google_cloud_storage()scrapy.utils.test.skip_if_no_boto()
If you need to use them in your tests or code, you can copy the code from Scrapy. (#6696)
scrapy.utils.test.TestSpideris deprecated. If you need an empty spider class you can usescrapy.utils.spider.DefaultSpideror create your own subclass ofscrapy.Spider. (#6678)scrapy.downloadermiddlewares.ajaxcrawl.AjaxCrawlMiddlewareis deprecated. It was disabled by default and isn’t useful for most of the existing websites. (#6523, #6651, #6656)scrapy.utils.url.escape_ajax()is deprecated. (#6523, #6651)scrapy.spiders.init.InitSpideris deprecated. If you find it useful, you can copy its code from Scrapy. (#6708, #6714)scrapy.utils.versions.scrapy_components_versions()is deprecated, usescrapy.utils.versions.get_versions()instead. (#6582)BaseDupeFilter.log()is deprecated. It does nothing and shouldn’t be called. (#4151)Passing the
spiderargument to the following methods ofScraperis deprecated:close_spider()enqueue_scrape()handle_spider_error()handle_spider_output()
(#6764)
New features
You can now yield the start requests and items of a spider from the
start()spider method and from theprocess_start()spider middleware method, both asynchronous generators.This makes it possible to use asynchronous code to generate those start requests and items, e.g. reading them from a queue service or database using an asynchronous client, without workarounds. (#456, #3477, #4467, #5627, #6729)
Start requests are now scheduled as soon as possible.
As a result, their
priorityis now taken into account as soon asCONCURRENT_REQUESTSis reached. (#456, #3477, #4467, #5627, #6729)Crawler.signalshas a newwait_for()method. (#6729)Added a new
scheduler_emptysignal. (#6729)Added new settings:
SCHEDULER_START_DISK_QUEUEandSCHEDULER_START_MEMORY_QUEUE. (#6729)Added
StartSpiderMiddleware, which setsis_start_requesttoTrueon start requests. (#6729)Exposed a new method of
Crawler.engine:needs_backout(). (#6729)Added the
allow_offsiterequest meta key that can be used instead of the more generaldont_filterrequest attribute to skip processing of the request byOffsiteMiddleware(but not by other code that checksdont_filter). (#3690, #6151, #6366)Added an optional base class for spider middlewares,
BaseSpiderMiddleware, which can be helpful for writing universal spider middlewares without boilerplate and code duplication. The built-in spider middlewares now inherit from this class. (#6693, #6777)Scrapy add-ons can now define a class method called
update_pre_crawler_settings()to update pre-crawler settings. (#6544, #6568)Added helpers for modifying component priority dictionary settings. (#6614)
Responses that use an unknown/unsupported encoding now produce a warning. If Scrapy knows that installing an additional package (such as brotli) will allow decoding the response, that will be mentioned in the warning. (#4697, #6618)
Added the
spider_exceptions/countstat which tracks the total count of exceptions (tracked also by per-typespider_exceptions/*stats). (#6739, #6740)Added the
DEFAULT_DROPITEM_LOG_LEVELsetting and thescrapy.exceptions.DropItem.log_levelattribute that allow customizing the log level of the message that is logged when an item is dropped. (#6603, #6608)Added support for the
-b, --cookiecurl argument toscrapy.Request.from_curl(). (#6684)Added the
LOG_VERSIONSsetting that allows customizing the list of software whose versions are logged when the spider starts. (#6582)Added the
WARN_ON_GENERATOR_RETURN_VALUEsetting that allows disabling run time analysis of callback code used to warn about incorrectreturnstatements in generator-based callbacks. You may need to disable this setting if this analysis breaks on your callback code. (#6731, #6738)
Improvements
Removed or postponed some calls of
itemadapter.is_item()to increase performance. (#6719)Improved the error message when running a
scrapycommand that requires a project (such asscrapy crawl) outside of a project directory. (#2349, #3426)Added an empty
ADDONSsetting to thesettings.pytemplate for new projects. (#6587)
Bug fixes
Yielding an item from
Spider.startor fromSpiderMiddleware.process_startno longer delays the next iteration of starting requests and items by up to 5 seconds. (#6729)Fixed calculation of
items_per_minuteandresponses_per_minutestats. (#6599)Fixed an error initializing
scrapy.extensions.feedexport.GCSFeedStorage. (#6617, #6628)Fixed duplicated log messages about the reactor and the event loop. (#6636, #6657)
Fixed resolving type annotations of
SitemapSpider._parse_sitemap()at run time, required by tools such as scrapy-poet. (#6665, #6671)Calling
scrapy.utils.reactor.is_asyncio_reactor_installed()without an installed reactor now raises an exception instead of installing a reactor. (#6732, #6735)Restored support for the
x-gzipcontent encoding. (#6618)
Documentation
Documented the setting values set in the default project template. (#6762, #6775)
Improved the docs about asynchronous iterable support in spider middlewares. (#6688)
Improved the docs about using
Deferred-based APIs in coroutine-based code and included a list of such APIs. (#6677, #6734, #6776)Improved the contribution docs. (#6561, #6575)
Removed the
Splashrecommendation from the headless browser suggestion. We no longer recommend usingSplashand recommend using other headless browser solutions instead. (#6642, #6701)Added the dark mode to the HTML documentation. (#6653)
Other documentation improvements and fixes. (#4151, #6526, #6620, #6621, #6622, #6623, #6624, #6721, #6723, #6780)
Packaging
Switched the build backend from setuptools to hatchling. (#6771)
Quality assurance
Replaced most linters with ruff. (#6565, #6576, #6577, #6581, #6584, #6595, #6601, #6631)
Improved accuracy and performance of collecting test coverage. (#6255, #6610)
Fixed an error that prevented running tests from directories other than the top level source directory. (#6567)
Reduced the amount of
mockservercalls in tests to improve the overall test run time. (#6637, #6648)Fixed tests that were running the same test code more than once. (#6646, #6647, #6650)
Refactored tests to use more
pytestfeatures instead ofunittestones where possible. (#6678, #6680, #6695, #6699, #6700, #6702, #6709, #6710, #6711, #6712, #6725)Type hints improvements and fixes. (#6578, #6579, #6593, #6605, #6694)
CI and test improvements and fixes. (#5360, #6271, #6547, #6560, #6602, #6607, #6609, #6613, #6619, #6626, #6679, #6703, #6704, #6716, #6720, #6722, #6724, #6741, #6743, #6766, #6770, #6772, #6773)
Scrapy 2.12.0 (2024-11-18)
Highlights:
Dropped support for Python 3.8, added support for Python 3.13
scrapy.Spider.start_requests()can now yield itemsAdded
JsonResponse
Modified requirements
Backward-incompatible changes
User-defined cookies for HTTPS requests will have the
secureflag set toTrueunless it’s set toFalseexplicitly. This is important when these cookies are reused in HTTP requests, e.g. after a redirect to an HTTP URL. (#6357)The Reppy-based
robots.txtparser,scrapy.robotstxt.ReppyRobotParser, was removed, as it doesn’t support Python 3.9+. (#5230, #6099, #6499)The initialization API of
scrapy.pipelines.media.MediaPipelineand its subclasses was improved and it’s possible that some previously working usage scenarios will no longer work. It can only affect you if you define custom subclasses ofMediaPipelineor create instances of these pipelines viafrom_settings()or__init__()calls instead offrom_crawler()calls.Previously,
MediaPipeline.from_crawler()called thefrom_settings()method if it existed or the__init__()method otherwise, and then did some additional initialization using thecrawlerinstance. If thefrom_settings()method existed (like inFilesPipeline) it called__init__()to create the instance. It wasn’t possible to overridefrom_crawler()without callingMediaPipeline.from_crawler()from it which, in turn, couldn’t be called in some cases (including subclasses ofFilesPipeline).Now, in line with the general usage of
from_crawler()andfrom_settings()and the deprecation of the latter the recommended initialization order is the following one:All
__init__()methods should take acrawlerargument. If they also take asettingsargument they should ignore it, usingcrawler.settingsinstead. When they call__init__()of the base class they should pass thecrawlerargument to it too.A
from_settings()method shouldn’t be defined. Class-specific initialization code should go into either an overriddenfrom_crawler()method or into__init__().It’s now possible to override
from_crawler()and it’s not necessary to callMediaPipeline.from_crawler()in it if other recommendations were followed.If pipeline instances were created with
from_settings()or__init__()calls (which wasn’t supported even before, as it missed important initialization code), they should now be created withfrom_crawler()calls.
(#6540)
The
response_bodyargument ofImagesPipeline.convert_imageis now positional-only, as it was changed from optional to required. (#6500)The
convertargument ofscrapy.utils.conf.build_component_list()is now positional-only, as the preceding argument (custom) was removed. (#6500)The
overwrite_outputargument ofscrapy.utils.conf.feed_process_params_from_cli()is now positional-only, as the preceding argument (output_format) was removed. (#6500)
Deprecation removals
Removed the
scrapy.utils.request.request_fingerprint()function, deprecated in Scrapy 2.7.0. (#6212, #6213)Removed support for value
"2.6"of settingREQUEST_FINGERPRINTER_IMPLEMENTATION, deprecated in Scrapy 2.7.0. (#6212, #6213)RFPDupeFiltersubclasses now require supporting thefingerprinterparameter in their__init__method, introduced in Scrapy 2.7.0. (#6102, #6113)Removed the
scrapy.downloadermiddlewares.decompressionmodule, deprecated in Scrapy 2.7.0. (#6100, #6113)Removed the
scrapy.utils.response.response_httprepr()function, deprecated in Scrapy 2.6.0. (#6111, #6116)Spiders with spider-level HTTP authentication, i.e. with the
http_userorhttp_passattributes, must now definehttp_auth_domainas well, which was introduced in Scrapy 2.5.1. (#6103, #6113)Media pipelines methods
file_path(),file_downloaded(),get_images(),image_downloaded(),media_downloaded(),media_to_download(), andthumb_path()must now support anitemparameter, added in Scrapy 2.4.0. (#6107, #6113)The
__init__()andfrom_crawler()methods of feed storage backend classes must now support the keyword-onlyfeed_optionsparameter, introduced in Scrapy 2.4.0. (#6105, #6113)Removed the
scrapy.loader.commonandscrapy.loader.processorsmodules, deprecated in Scrapy 2.3.0. (#6106, #6113)Removed the
scrapy.utils.misc.extract_regex()function, deprecated in Scrapy 2.3.0. (#6106, #6113)Removed the
scrapy.http.JSONRequestclass, replaced withJsonRequestin Scrapy 1.8.0. (#6110, #6113)scrapy.utils.log.logformatter_adapterno longer supports missingargs,level, ormsgparameters, and no longer supports aformatparameter, all scenarios that were deprecated in Scrapy 1.0.0. (#6109, #6116)A custom class assigned to the
SPIDER_LOADER_CLASSsetting that does not implement theISpiderLoaderinterface will now raise azope.interface.verify.DoesNotImplementexception at run time. Non-compliant classes have been triggering a deprecation warning since Scrapy 1.0.0. (#6101, #6113)Removed the
--output-format/-tcommand line option, deprecated in Scrapy 2.1.0.-O <URI>:<FORMAT>should be used instead. (#6500)Running
crawl()more than once on the sameCrawlerinstance, deprecated in Scrapy 2.11.0, now raises an exception. (#6500)Subclassing
HttpCompressionMiddlewarewithout support for thecrawlerargument in__init__()and without a customfrom_crawler()method, deprecated in Scrapy 2.5.0, is no longer allowed. (#6500)Removed the
EXCEPTIONS_TO_RETRYattribute ofRetryMiddleware, deprecated in Scrapy 2.10.0. (#6500)Removed support for S3 feed exports without the boto3 package installed, deprecated in Scrapy 2.10.0. (#6500)
Removed the
scrapy.extensions.feedexport._FeedSlotclass, deprecated in Scrapy 2.10.0. (#6500)Removed the
scrapy.pipelines.images.NoimagesDropexception, deprecated in Scrapy 2.8.0. (#6500)The
response_bodyargument ofImagesPipeline.convert_imageis now required, not passing it was deprecated in Scrapy 2.8.0. (#6500)Removed the
customargument ofscrapy.utils.conf.build_component_list(), deprecated in Scrapy 2.10.0. (#6500)Removed the
scrapy.utils.reactor.get_asyncio_event_loop_policy()function, deprecated in Scrapy 2.9.0. Useasyncio.get_event_loop()and related standard library functions instead. (#6500)
Deprecations
The
from_settings()methods of the Scrapy components that have them are now deprecated.from_crawler()should now be used instead. Affected components:scrapy.mail.MailSenderscrapy.middleware.MiddlewareManagerscrapy.core.downloader.contextfactory.ScrapyClientContextFactory
(#6540)
It’s now deprecated to have a
from_settings()method but nofrom_crawler()method in 3rd-party Scrapy components. You can define a simplefrom_crawler()method that callscls.from_settings(crawler.settings)to fix this if you don’t want to refactor the code. Note that if you have afrom_crawler()method Scrapy will not call thefrom_settings()method so the latter can be removed. (#6540)The initialization API of
scrapy.pipelines.media.MediaPipelineand its subclasses was improved and some old usage scenarios are now deprecated (see also the “Backward-incompatible changes” section). Specifically:It’s deprecated to define an
__init__()method that doesn’t take acrawlerargument.It’s deprecated to call an
__init__()method without passing acrawlerargument. If it’s passed, it’s also deprecated to pass asettingsargument, which will be ignored anyway.Calling
from_settings()is deprecated, usefrom_crawler()instead.Overriding
from_settings()is deprecated, overridefrom_crawler()instead.
(#6540)
The
REQUEST_FINGERPRINTER_IMPLEMENTATIONsetting is now deprecated. (#6212, #6213)The
scrapy.utils.misc.create_instance()function is now deprecated, usescrapy.utils.misc.build_from_crawler()instead. (#5523, #5884, #6162, #6169, #6540)scrapy.core.downloader.Downloader._get_slot_key()is deprecated, usescrapy.core.downloader.Downloader.get_slot_key()instead. (#6340, #6352)scrapy.utils.defer.process_chain_both()is now deprecated. (#6397)scrapy.twisted_versionis now deprecated, you should instead usetwisted.versiondirectly (but note that it’s anincremental.Versionobject, not a tuple). (#6509, #6512)scrapy.utils.python.flatten()andscrapy.utils.python.iflatten()are now deprecated. (#6517, #6519)scrapy.utils.python.equal_attributes()is now deprecated. (#6517, #6519)scrapy.utils.request.request_authenticate()is now deprecated, you should instead just set theAuthorizationheader directly. (#6517, #6519)scrapy.utils.serialize.ScrapyJSONDecoderis now deprecated, it didn’t contain any code since Scrapy 1.0.0. (#6517, #6519)scrapy.utils.test.assert_samelines()is now deprecated. (#6517, #6519)scrapy.extensions.feedexport.build_storage()is now deprecated. You can instead call the builder callable directly. (#6540)scrapy.utils.misc.md5sum()is now deprecated. (#6264)
New features
scrapy.Spider.start_requests()can now yield items. (#5289, #6417)Note
Some spider middlewares may need to be updated for Scrapy 2.12 support before you can use them in combination with the ability to yield items from
start_requests().Added a new
Responsesubclass,JsonResponse, for responses with a JSON MIME type. (#6069, #6171, #6174)The
LogStatsextension now addsitems_per_minuteandresponses_per_minuteto the stats when the spider closes. (#4110, #4111)Added
CLOSESPIDER_PAGECOUNT_NO_ITEMwhich allows closing the spider if no items were scraped in a set amount of time. (#6434)User-defined cookies can now include the
securefield. (#6357)Added component getters to
Crawler:get_addon(),get_downloader_middleware(),get_extension(),get_item_pipeline(),get_spider_middleware(). (#6181)Slot delay updates by the AutoThrottle extension based on response latencies can now be disabled for specific requests via the
autothrottle_dont_adjust_delaymeta key. (#6246, #6527)If
SPIDER_LOADER_WARN_ONLYis set toTrue,SpiderLoaderdoes not raiseSyntaxErrorbut emits a warning instead. (#6483, #6484)Added support for multiple-compressed responses (ones with several encodings in the
Content-Encodingheader). (#5143, #5964, #6063)Added support for multiple standard values in
REFERRER_POLICY. (#6381)Added support for brotlicffi (previously named brotlipy). brotli is still recommended but only brotlicffi works on PyPy. (#6263, #6269)
Added
MetadataContractthat sets the request meta. (#6468, #6469)
Improvements
Extended the list of file extensions that
LinkExtractorignores by default. (#6074, #6125)scrapy.utils.httpobj.urlparse_cached()is now used in more places instead ofurllib.parse.urlparse(). (#6228, #6229)
Bug fixes
MediaPipelineis now an abstract class and its methods that were expected to be overridden in subclasses are now abstract methods. (#6365, #6368)Fixed handling of invalid
@-prefixed lines in contract extraction. (#6383, #6388)Importing
scrapy.extensions.telnetno longer installs the default reactor. (#6432)Reduced log verbosity for dropped requests that was increased in 2.11.2. (#6433, #6475)
Documentation
Added
SECURITY.mdthat documents the security policy. (#5364, #6051)Example code for running Scrapy from a script no longer imports
twisted.internet.reactorat the top level, which caused problems with non-default reactors when this code was used unmodified. (#6361, #6374)Documented the
SpiderStateextension. (#6278, #6522)Other documentation improvements and fixes. (#5920, #6094, #6177, #6200, #6207, #6216, #6223, #6317, #6328, #6389, #6394, #6402, #6411, #6427, #6429, #6440, #6448, #6449, #6462, #6497, #6506, #6507, #6524)
Quality assurance
Fully covered the code with type hints (except for the most complicated parts, mostly related to
twisted.web.httpand other Twisted parts without type hints). (#5989, #6097, #6127, #6129, #6130, #6133, #6143, #6191, #6268, #6274, #6275, #6276, #6279, #6325, #6326, #6333, #6335, #6336, #6337, #6341, #6353, #6356, #6370, #6371, #6384, #6385, #6387, #6391, #6395, #6414, #6422, #6460, #6466, #6472, #6494, #6498, #6516)Added
flake8-bugbear,flake8-comprehensions,flake8-debugger,flake8-docstrings,flake8-string-formatandflake8-type-checkingto thepre-commitconfiguration. (#6406, #6413)CI and test improvements and fixes. (#5285, #5454, #5997, #6078, #6084, #6087, #6132, #6153, #6154, #6201, #6231, #6232, #6235, #6236, #6242, #6245, #6253, #6258, #6259, #6270, #6272, #6286, #6290, #6296 #6367, #6372, #6403, #6416, #6435, #6489, #6501, #6504, #6511, #6543, #6545)
Code cleanups. (#6196, #6197, #6198, #6199, #6254, #6257, #6285, #6305, #6343, #6349, #6386, #6415, #6463, #6470, #6499, #6505, #6510, #6531, #6542)
Other
Issue tracker improvements. (#6066)
Scrapy 2.11.2 (2024-05-14)
Security bug fixes
Redirects to non-HTTP protocols are no longer followed. Please, see the 23j4-mw76-5v7h security advisory for more information. (#457)
The
Authorizationheader is now dropped on redirects to a different scheme (http://orhttps://) or port, even if the domain is the same. Please, see the 4qqq-9vqf-3h3f security advisory for more information.When using system proxy settings that are different for
http://andhttps://, redirects to a different URL scheme will now also trigger the corresponding change in proxy settings for the redirected request. Please, see the jm3v-qxmh-hxwv security advisory for more information. (#767)Spider.allowed_domainsis now enforced for all requests, and not only requests from spider callbacks. (#1042, #2241, #6358)xmliter_lxml()no longer resolves XML entities. (#6265)defusedxml is now used to make
scrapy.http.request.rpc.XmlRpcRequestmore secure. (#6250, #6251)
Deprecations
scrapy.spidermiddlewares.offsite.OffsiteMiddleware(a spider middleware) is now deprecated and not enabled by default. The new downloader middleware with the same functionality,scrapy.downloadermiddlewares.offsite.OffsiteMiddleware, is enabled instead. (#2241, #6358)
Bug fixes
Restored support for brotlipy, which had been dropped in Scrapy 2.11.1 in favor of brotli. (#6261)
Note
brotlipy is deprecated, both in Scrapy and upstream. Use brotli instead if you can.
Make
METAREFRESH_IGNORE_TAGS["noscript"]by default. This preventsMetaRefreshMiddlewarefrom following redirects that would not be followed by web browsers with JavaScript enabled. (#6342, #6347)During feed export, do not close the underlying file from built-in post-processing plugins. (#5932, #6178, #6239)
LinkExtractornow properly applies theuniqueandcanonicalizeparameters. (#3273, #6221)Do not initialize the scheduler disk queue if
JOBDIRis an empty string. (#6121, #6124)Fix
Spider.loggernot logging custom extra information. (#6323, #6324)robots.txtfiles with a non-UTF-8 encoding no longer prevent parsing the UTF-8-compatible (e.g. ASCII) parts of the document. (#6292, #6298)scrapy.http.cookies.WrappedRequest.get_header()no longer raises an exception ifdefaultisNone. (#6308, #6310)Selectornow usesscrapy.utils.response.get_base_url()to determine the base URL of a givenResponse. (#6265)The
media_to_download()method of media pipelines now logs exceptions before stripping them. (#5067, #5068)When passing a callback to the
parsecommand, build the callback callable with the right signature. (#6182)
Documentation
Add a FAQ entry about creating blank requests. (#6203, #6208)
Document that
scrapy.Selector.typecan be"json". (#6328, #6334)
Quality assurance
Scrapy 2.11.1 (2024-02-14)
Highlights:
Security bug fixes.
Support for Twisted >= 23.8.0.
Documentation improvements.
Security bug fixes
Addressed ReDoS vulnerabilities:
scrapy.utils.iterators.xmliteris now deprecated in favor ofxmliter_lxml(), whichXMLFeedSpidernow uses.To minimize the impact of this change on existing code,
xmliter_lxml()now supports indicating the node namespace with a prefix in the node name, and big files with highly nested trees when using libxml2 2.7+.Fixed regular expressions in the implementation of the
open_in_browser()function.
Please, see the cc65-xxvf-f7r9 security advisory for more information.
DOWNLOAD_MAXSIZEandDOWNLOAD_WARNSIZEnow also apply to the decompressed response body. Please, see the 7j7m-v7m3-jqm7 security advisory for more information.Also in relation with the 7j7m-v7m3-jqm7 security advisory, the deprecated
scrapy.downloadermiddlewares.decompressionmodule has been removed.The
Authorizationheader is now dropped on redirects to a different domain. Please, see the cw9j-q3vf-hrrv security advisory for more information.
Modified requirements
Bug fixes
Documentation
Improved documentation for
Crawlerinitialization changes made in the 2.11.0 release. (#6057, #6147)Extended documentation for
Request.meta. (#5565)Fixed the
dont_merge_cookiesdocumentation. (#5936, #6077)Added a link to Zyte’s export guides to the feed exports documentation. (#6183)
Added a missing note about backward-incompatible changes in
PythonItemExporterto the 2.11.0 release notes. (#6060, #6081)Added a missing note about removing the deprecated
scrapy.utils.boto.is_botocore()function to the 2.8.0 release notes. (#6056, #6061)Other documentation improvements. (#6128, #6144, #6163, #6190, #6192)
Quality assurance
Scrapy 2.11.0 (2023-09-18)
Highlights:
Spiders can now modify settings in their
from_crawler()methods, e.g. based on spider arguments.Periodic logging of stats.
Backward-incompatible changes
Most of the initialization of
scrapy.crawler.Crawlerinstances is now done incrawl(), so the state of instances before that method is called is now different compared to older Scrapy versions. We do not recommend using theCrawlerinstances beforecrawl()is called. (#6038)scrapy.Spider.from_crawler()is now called before the initialization of various components previously initialized inscrapy.crawler.Crawler.__init__()and before the settings are finalized and frozen. This change was needed to allow changing the settings inscrapy.Spider.from_crawler(). If you want to access the final setting values and the initializedCrawlerattributes in the spider code as early as possible you can do this inscrapy.Spider.start_requests()or in a handler of theengine_startedsignal. (#6038)The
TextResponse.jsonmethod now requires the response to be in a valid JSON encoding (UTF-8, UTF-16, or UTF-32). If you need to deal with JSON documents in an invalid encoding, usejson.loads(response.text)instead. (#6016)PythonItemExporterused the binary output by default but it no longer does. (#6006, #6007)
Deprecation removals
Removed the binary export mode of
PythonItemExporter, deprecated in Scrapy 1.1.0. (#6006, #6007)Note
If you are using this Scrapy version on Scrapy Cloud with a stack that includes an older Scrapy version and get a “TypeError: Unexpected options: binary” error, you may need to add
scrapinghub-entrypoint-scrapy >= 0.14.1to your project requirements or switch to a stack that includes Scrapy 2.11.Removed the
CrawlerRunner.spidersattribute, deprecated in Scrapy 1.0.0, useCrawlerRunner.spider_loaderinstead. (#6010)The
scrapy.utils.response.response_httprepr()function, deprecated in Scrapy 2.6.0, has now been removed. (#6111)
Deprecations
Running
crawl()more than once on the samescrapy.crawler.Crawlerinstance is now deprecated. (#1587, #6040)
New features
Spiders can now modify settings in their
from_crawler()method, e.g. based on spider arguments. (#1305, #1580, #2392, #3663, #6038)Added the
PeriodicLogextension which can be enabled to log stats and/or their differences periodically. (#5926)Optimized the memory usage in
TextResponse.jsonby removing unnecessary body decoding. (#5968, #6016)Links to
.webpfiles are now ignored by link extractors. (#6021)
Bug fixes
Fixed logging enabled add-ons. (#6036)
Fixed
MailSenderproducing invalid message bodies when thecharsetargument is passed tosend(). (#5096, #5118)Fixed an exception when accessing
self.EXCEPTIONS_TO_RETRYfrom a subclass ofRetryMiddleware. (#6049, #6050)scrapy.settings.BaseSettings.getdictorlist(), used to parseFEED_EXPORT_FIELDS, now handles tuple values. (#6011, #6013)Calls to
datetime.utcnow(), no longer recommended to be used, have been replaced with calls todatetime.now()with a timezone. (#6014)
Documentation
Quality assurance
Scrapy 2.10.1 (2023-08-30)
Scrapy 2.10.0 (2023-08-04)
Highlights:
Added Python 3.12 support, dropped Python 3.7 support.
The new add-ons framework simplifies configuring 3rd-party components that support it.
Exceptions to retry can now be configured.
Many fixes and improvements for feed exports.
Modified requirements
Backward-incompatible changes
The value of the
FEED_STORE_EMPTYsetting is nowTrueinstead ofFalse. In earlier Scrapy versions empty files were created even when this setting wasFalse(which was a bug that is now fixed), so the new default should keep the old behavior. (#872, #5847)
Deprecation removals
When a function is assigned to the
FEED_URI_PARAMSsetting, returningNoneor modifying theparamsinput parameter, deprecated in Scrapy 2.6, is no longer supported. (#5994, #5996)The
scrapy.utils.reqsermodule, deprecated in Scrapy 2.6, is removed. (#5994, #5996)The
scrapy.squeuesclassesPickleFifoDiskQueueNonRequest,PickleLifoDiskQueueNonRequest,MarshalFifoDiskQueueNonRequest, andMarshalLifoDiskQueueNonRequest, deprecated in Scrapy 2.6, are removed. (#5994, #5996)The property
open_spidersand the methodshas_capacityandscheduleofscrapy.core.engine.ExecutionEngine, deprecated in Scrapy 2.6, are removed. (#5994, #5998)Passing a
spiderargument to thespider_is_idle(),crawl()anddownload()methods ofscrapy.core.engine.ExecutionEngine, deprecated in Scrapy 2.6, is no longer supported. (#5994, #5998)
Deprecations
scrapy.utils.datatypes.CaselessDictis deprecated, usescrapy.utils.datatypes.CaseInsensitiveDictinstead. (#5146)Passing the
customargument toscrapy.utils.conf.build_component_list()is deprecated, it was used in the past to mergeFOOandFOO_BASEsetting values but now Scrapy usesscrapy.settings.BaseSettings.getwithbase()to do the same. Code that uses this argument and cannot be switched togetwithbase()can be switched to merging the values explicitly. (#5726, #5923)
New features
Added support for Scrapy add-ons. (#5950)
Added the
RETRY_EXCEPTIONSsetting that configures which exceptions will be retried byRetryMiddleware. (#2701, #5929)Added the possiiblity to close the spider if no items were produced in the specified time, configured by
CLOSESPIDER_TIMEOUT_NO_ITEM. (#5979)Added support for the
AWS_REGION_NAMEsetting to feed exports. (#5980)Added support for using
pathlib.Pathobjects that refer to absolute Windows paths in theFEEDSsetting. (#5939)
Bug fixes
Fixed creating empty feeds even with
FEED_STORE_EMPTY=False. (#872, #5847)Fixed using absolute Windows paths when specifying output files. (#5969, #5971)
Fixed problems with uploading large files to S3 by switching to multipart uploads (requires boto3). (#960, #5735, #5833)
Fixed the JSON exporter writing extra commas when some exceptions occur. (#3090, #5952)
Fixed the “read of closed file” error in the CSV exporter. (#5043, #5705)
Fixed an error when a component added by the class object throws
NotConfiguredwith a message. (#5950, #5992)Added the missing
scrapy.settings.BaseSettings.pop()method. (#5959, #5960, #5963)Added
CaseInsensitiveDictas a replacement forCaselessDictthat fixes some API inconsistencies. (#5146)
Documentation
Documented
scrapy.Spider.update_settings(). (#5745, #5846)Documented possible problems with early Twisted reactor installation and their solutions. (#5981, #6000)
Added examples of making additional requests in callbacks. (#5927)
Clarified the docs about request objects on redirection. (#5707, #5937)
Quality assurance
Added support for running tests against the installed Scrapy version. (#4914, #5949)
Fixed the
test_utils_asyncio.AsyncioTest.test_set_asyncio_event_looptest. (#5951)Fixed the
test_feedexport.BatchDeliveriesTest.test_batch_path_differtest on Windows. (#5847)Enabled CI runs for Python 3.11 on Windows. (#5999)
Simplified skipping tests that depend on
uvloop. (#5984)Fixed the
extra-deps-pinnedtox env. (#5948)
Scrapy 2.9.0 (2023-05-08)
Highlights:
Per-domain download settings.
Compatibility with new cryptography and new parsel.
JMESPath selectors from the new parsel.
Bug fixes.
Deprecations
scrapy.extensions.feedexport._FeedSlotis renamed toscrapy.extensions.feedexport.FeedSlotand the old name is deprecated. (#5876)
New features
Settings corresponding to
DOWNLOAD_DELAY,CONCURRENT_REQUESTS_PER_DOMAINandRANDOMIZE_DOWNLOAD_DELAYcan now be set on a per-domain basis via the newDOWNLOAD_SLOTSsetting. (#5328)Added
TextResponse.jmespath(), a shortcut for JMESPath selectors available since parsel 1.8.1. (#5894, #5915)Added
feed_slot_closedandfeed_exporter_closedsignals. (#5876)Added
scrapy.utils.request.request_to_curl(), a function to produce a curl command from aRequestobject. (#5892)Values of
FILES_STOREandIMAGES_STOREcan now bepathlib.Pathinstances. (#5801)
Bug fixes
Fixed an error when using feed postprocessing with S3 storage. (#5500, #5581)
Added the missing
scrapy.settings.BaseSettings.setdefault()method. (#5811, #5821)Fixed an error when using cryptography 40.0.0+ and
DOWNLOADER_CLIENT_TLS_VERBOSE_LOGGINGis enabled. (#5857, #5858)The checksums returned by
FilesPipelinefor files on Google Cloud Storage are no longer Base64-encoded. (#5874, #5891)scrapy.utils.request.request_from_curl()now supports $-prefixed string values for the curl--data-rawargument, which are produced by browsers for data that includes certain symbols. (#5899, #5901)The
parsecommand now also works with async generator callbacks. (#5819, #5824)The
genspidercommand now properly works with HTTPS URLs. (#3553, #5808)LinkExtractornow skips certain malformed URLs instead of raising an exception. (#5881)scrapy.utils.python.get_func_args()now supports more types of callables. (#5872, #5885)Fixed an error when processing non-UTF8 values of
Content-Typeheaders. (#5914, #5917)Fixed an error breaking user handling of send failures in
scrapy.mail.MailSender.send(). (#1611, #5880)
Documentation
Quality assurance
Tests for most of the examples in the docs are now run as a part of CI, found problems were fixed. (#5816, #5826, #5919)
Removed usage of deprecated Python classes. (#5849)
Silenced
include-ignoredwarnings from coverage. (#5820)Fixed a random failure of the
test_feedexport.test_batch_path_differtest. (#5855, #5898)Updated docstrings to match output produced by parsel 1.8.1 so that they don’t cause test failures. (#5902, #5919)
Scrapy 2.8.0 (2023-02-02)
This is a maintenance release, with minor features, bug fixes, and cleanups.
Deprecation removals
The
scrapy.utils.gz.read1function, deprecated in Scrapy 2.0, has now been removed. Use theread1()method ofGzipFileinstead. (#5719)The
scrapy.utils.python.to_native_strfunction, deprecated in Scrapy 2.0, has now been removed. Usescrapy.utils.python.to_unicode()instead. (#5719)The
scrapy.utils.python.MutableChain.nextmethod, deprecated in Scrapy 2.0, has now been removed. Use__next__()instead. (#5719)The
scrapy.linkextractors.FilteringLinkExtractorclass, deprecated in Scrapy 2.0, has now been removed. UseLinkExtractorinstead. (#5720)Support for using environment variables prefixed with
SCRAPY_to override settings, deprecated in Scrapy 2.0, has now been removed. (#5724)Support for the
noconnectquery string argument in proxy URLs, deprecated in Scrapy 2.0, has now been removed. We expect proxies that used to need it to work fine without it. (#5731)The
scrapy.utils.python.retry_on_eintrfunction, deprecated in Scrapy 2.3, has now been removed. (#5719)The
scrapy.utils.python.WeakKeyCacheclass, deprecated in Scrapy 2.4, has now been removed. (#5719)The
scrapy.utils.boto.is_botocore()function, deprecated in Scrapy 2.4, has now been removed. (#5719)
Deprecations
New features
Applied black coding style to files generated with the
genspiderandstartprojectcommands. (#5809, #5814)FEED_EXPORT_ENCODINGis now set to"utf-8"in thesettings.pyfile that thestartprojectcommand generates. With this value, JSON exports won’t force the use of escape sequences for non-ASCII characters. (#5797, #5800)The
MemoryUsageextension now logs the peak memory usage during checks, and the binary unit MiB is now used to avoid confusion. (#5717, #5722, #5727)The
callbackparameter ofRequestcan now be set toscrapy.http.request.NO_CALLBACK(), to distinguish it fromNone, as the latter indicates that the default spider callback (parse()) is to be used. (#5798)
Bug fixes
Enabled unsafe legacy SSL renegotiation to fix access to some outdated websites. (#5491, #5790)
Fixed STARTTLS-based email delivery not working with Twisted 21.2.0 and better. (#5386, #5406)
Fixed the
finish_exporting()method of item exporters not being called for empty files. (#5537, #5758)Fixed HTTP/2 responses getting only the last value for a header when multiple headers with the same name are received. (#5777)
Fixed an exception raised by the
shellcommand on some cases when using asyncio. (#5740, #5742, #5748, #5759, #5760, #5771)When using
CrawlSpider, callback keyword arguments (cb_kwargs) added to a request in theprocess_requestcallback of aRulewill no longer be ignored. (#5699)The images pipeline no longer re-encodes JPEG files. (#3055, #3689, #4753)
Fixed the handling of transparent WebP images by the images pipeline. (#3072, #5766, #5767)
scrapy.shell.inspect_response()no longer inhibitsSIGINT(Ctrl+C). (#2918)LinkExtractorwithunique=Falseno longer filters out links that have identical URL and text. (#3798, #3799, #4695, #5458)RobotsTxtMiddlewarenow ignores URL protocols that do not supportrobots.txt(data://,file://). (#5807)Silenced the
filelockdebug log messages introduced in Scrapy 2.6. (#5753, #5754)Fixed the output of
scrapy -hshowing an unintended**commands**line. (#5709, #5711, #5712)Made the active project indication in the output of commands more clear. (#5715)
Documentation
Documented how to debug spiders from Visual Studio Code. (#5721)
Documented how
DOWNLOAD_DELAYaffects per-domain concurrency. (#5083, #5540)Improved consistency. (#5761)
Quality assurance
Applied black coding style, sorted import statements, and introduced pre-commit. (#4654, #4658, #5734, #5737, #5806, #5810)
Addressed many issues reported by Pylint. (#5677)
Improved code readability. (#5736)
Improved package metadata. (#5768)
Removed unnecessary
OrderedDictusages. (#5795)Removed unnecessary
__str__definitions. (#5150)Removed obsolete code and comments. (#5725, #5729, #5730, #5732)
Fixed test and CI issues. (#5749, #5750, #5756, #5762, #5765, #5780, #5781, #5782, #5783, #5785, #5786)
Scrapy 2.7.1 (2022-11-02)
New features
Relaxed the restriction introduced in 2.6.2 so that the
Proxy-Authorizationheader can again be set explicitly, as long as the proxy URL in theproxymetadata has no other credentials, and for as long as that proxy URL remains the same; this restores compatibility with scrapy-zyte-smartproxy 2.1.0 and older (#5626).
Bug fixes
Using
-O/--overwrite-outputand-t/--output-formatoptions together now produces an error instead of ignoring the former option (#5516, #5605).Replaced deprecated
asyncioAPIs that implicitly use the current event loop with code that explicitly requests a loop from the event loop policy (#5685, #5689).Fixed uses of deprecated Scrapy APIs in Scrapy itself (#5588, #5589).
Improved code that checks if generators return values, so that it no longer fails on decorated methods and partial methods (#5323, #5592, #5599, #5691).
Documentation
Quality assurance
Scrapy 2.7.0 (2022-10-17)
Highlights:
Added Python 3.11 support, dropped Python 3.6 support
Improved support for asynchronous callbacks
Asyncio support is enabled by default on new projects
Output names of item fields can now be arbitrary strings
Centralized request fingerprinting configuration is now possible
Modified requirements
Python 3.7 or greater is now required; support for Python 3.6 has been dropped. Support for the upcoming Python 3.11 has been added.
The minimum required version of some dependencies has changed as well:
lxml: 3.5.0 → 4.3.0
Pillow (images pipeline): 4.0.0 → 7.1.0
zope.interface: 5.0.0 → 5.1.0
Deprecations
ImagesPipeline.thumb_pathmust now accept anitemparameter (#5504, #5508).The
scrapy.downloadermiddlewares.decompressionmodule is now deprecated (#5546, #5547).
New features
The
process_spider_output()method of spider middlewares can now be defined as an asynchronous generator (#4978).The output of
Requestcallbacks defined as coroutines is now processed asynchronously (#4978).CrawlSpidernow supports asynchronous callbacks (#5657).New projects created with the
startprojectcommand have asyncio support enabled by default (#5590, #5679).The
FEED_EXPORT_FIELDSsetting can now be defined as a dictionary to customize the output name of item fields, lifting the restriction that required output names to be valid Python identifiers, e.g. preventing them to have whitespace (#1008, #3266, #3696).You can now customize request fingerprinting through the new
REQUEST_FINGERPRINTER_CLASSsetting, instead of having to change it on every Scrapy component that relies on request fingerprinting (#900, #3420, #4113, #4762, #4524).jsonlis now supported and encouraged as a file extension for JSON Lines files (#4848).ImagesPipeline.thumb_pathnow receives the source item (#5504, #5508).
Bug fixes
When using Google Cloud Storage with a media pipeline,
FILES_EXPIRESnow also works whenFILES_STOREdoes not point at the root of your Google Cloud Storage bucket (#5317, #5318).The
parsecommand now supports asynchronous callbacks (#5424, #5577).When using the
parsecommand with a URL for which there is no available spider, an exception is no longer raised (#3264, #3265, #5375, #5376, #5497).TextResponsenow gives higher priority to the byte order mark when determining the text encoding of the response body, following the HTML living standard (#5601, #5611).MIME sniffing takes the response body into account in FTP and HTTP/1.0 requests, as well as in cached requests (#4873).
MIME sniffing now detects valid HTML 5 documents even if the
htmltag is missing (#4873).An exception is now raised if
ASYNCIO_EVENT_LOOPhas a value that does not match the asyncio event loop actually installed (#5529).Fixed
Headers.getlist()returning only the last header (#5515, #5526).Fixed
LinkExtractornot ignoring thetar.gzfile extension by default (#1837, #2067, #4066)
Documentation
Clarified the return type of
Spider.parse(#5602, #5608).To enable
HttpCompressionMiddlewareto do brotli compression, installing brotli is now recommended instead of installing brotlipy, as the former provides a more recent version of brotli.Signal documentation now mentions coroutine support and uses it in code examples (#4852, #5358).
Avoiding getting banned now recommends Common Crawl instead of Google cache (#3582, #5432).
The new Components topic covers enforcing requirements on Scrapy components, like downloader middlewares, extensions, item pipelines, spider middlewares, and more; Enforcing asyncio as a requirement has also been added (#4978).
Settings now indicates that setting values must be picklable (#5607, #5629).
Removed outdated documentation (#5446, #5373, #5369, #5370, #5554).
Fixed typos (#5442, #5455, #5457, #5461, #5538, #5553, #5558, #5624, #5631).
Fixed other issues (#5283, #5284, #5559, #5567, #5648, #5659, #5665).
Quality assurance
Scrapy 2.6.3 (2022-09-27)
Added support for pyOpenSSL 22.1.0, removing support for SSLv3 (#5634, #5635, #5636).
Upgraded the minimum versions of the following dependencies:
cryptography: 2.0 → 3.3
pyOpenSSL: 16.2.0 → 21.0.0
service_identity: 16.0.0 → 18.1.0
Twisted: 17.9.0 → 18.9.0
zope.interface: 4.1.3 → 5.0.0
Scrapy 2.6.2 (2022-07-25)
Security bug fix:
When
HttpProxyMiddlewareprocesses a request withproxymetadata, and thatproxymetadata includes proxy credentials,HttpProxyMiddlewaresets theProxy-Authorizationheader, but only if that header is not already set.There are third-party proxy-rotation downloader middlewares that set different
proxymetadata every time they process a request.Because of request retries and redirects, the same request can be processed by downloader middlewares more than once, including both
HttpProxyMiddlewareand any third-party proxy-rotation downloader middleware.These third-party proxy-rotation downloader middlewares could change the
proxymetadata of a request to a new value, but fail to remove theProxy-Authorizationheader from the previous value of theproxymetadata, causing the credentials of one proxy to be sent to a different proxy.To prevent the unintended leaking of proxy credentials, the behavior of
HttpProxyMiddlewareis now as follows when processing a request:If the request being processed defines
proxymetadata that includes credentials, theProxy-Authorizationheader is always updated to feature those credentials.If the request being processed defines
proxymetadata without credentials, theProxy-Authorizationheader is removed unless it was originally defined for the same proxy URL.To remove proxy credentials while keeping the same proxy URL, remove the
Proxy-Authorizationheader.If the request has no
proxymetadata, or that metadata is a falsy value (e.g.None), theProxy-Authorizationheader is removed.It is no longer possible to set a proxy URL through the
proxymetadata but set the credentials through theProxy-Authorizationheader. Set proxy credentials through theproxymetadata instead.
Also fixes the following regressions introduced in 2.6.0:
CrawlerProcesssupports again crawling multiple spiders (#5435, #5436)Installing a Twisted reactor before Scrapy does (e.g. importing
twisted.internet.reactorsomewhere at the module level) no longer prevents Scrapy from starting, as long as a different reactor is not specified inTWISTED_REACTOR(#5525, #5528)Fixed an exception that was being logged after the spider finished under certain conditions (#5437, #5440)
The
--output/-ocommand-line parameter supports again a value starting with a hyphen (#5444, #5445)The
scrapy parse -hcommand no longer throws an error (#5481, #5482)
Scrapy 2.6.1 (2022-03-01)
Fixes a regression introduced in 2.6.0 that would unset the request method when following redirects.
Scrapy 2.6.0 (2022-03-01)
Highlights:
Python 3.10 support
asyncio support is no longer considered experimental, and works out-of-the-box on Windows regardless of your Python version
Feed exports now support
pathlib.Pathoutput paths and per-feed item filtering and post-processing
Security bug fixes
When a
Requestobject with cookies defined gets a redirect response causing a newRequestobject to be scheduled, the cookies defined in the originalRequestobject are no longer copied into the newRequestobject.If you manually set the
Cookieheader on aRequestobject and the domain name of the redirect URL is not an exact match for the domain of the URL of the originalRequestobject, yourCookieheader is now dropped from the newRequestobject.The old behavior could be exploited by an attacker to gain access to your cookies. Please, see the cjvr-mfj7-j4j8 security advisory for more information.
Note
It is still possible to enable the sharing of cookies between different domains with a shared domain suffix (e.g.
example.comand any subdomain) by defining the shared domain suffix (e.g.example.com) as the cookie domain when defining your cookies. See the documentation of theRequestclass for more information.When the domain of a cookie, either received in the
Set-Cookieheader of a response or defined in aRequestobject, is set to a public suffix, the cookie is now ignored unless the cookie domain is the same as the request domain.The old behavior could be exploited by an attacker to inject cookies from a controlled domain into your cookiejar that could be sent to other domains not controlled by the attacker. Please, see the mfjm-vh54-3f96 security advisory for more information.
Modified requirements
The h2 dependency is now optional, only needed to enable HTTP/2 support. (#5113)
Backward-incompatible changes
The
formdataparameter ofFormRequest, if specified for a non-POST request, now overrides the URL query string, instead of being appended to it. (#2919, #3579)When a function is assigned to the
FEED_URI_PARAMSsetting, now the return value of that function, and not theparamsinput parameter, will determine the feed URI parameters, unless that return value isNone. (#4962, #4966)In
scrapy.core.engine.ExecutionEngine, methodscrawl(),download(),schedule(), andspider_is_idle()now raiseRuntimeErrorif called beforeopen_spider(). (#5090)These methods used to assume that
ExecutionEngine.slothad been defined by a prior call toopen_spider(), so they were raisingAttributeErrorinstead.If the API of the configured scheduler does not meet expectations,
TypeErroris now raised at startup time. Before, other exceptions would be raised at run time. (#3559)The
_encodingfield of serializedRequestobjects is now namedencoding, in line with all other fields (#5130)
Deprecation removals
scrapy.http.TextResponse.body_as_unicode, deprecated in Scrapy 2.2, has now been removed. (#5393)scrapy.item.BaseItem, deprecated in Scrapy 2.2, has now been removed. (#5398)scrapy.item.DictItem, deprecated in Scrapy 1.8, has now been removed. (#5398)scrapy.Spider.make_requests_from_url, deprecated in Scrapy 1.4, has now been removed. (#4178, #4356)
Deprecations
When a function is assigned to the
FEED_URI_PARAMSsetting, returningNoneor modifying theparamsinput parameter is now deprecated. Return a new dictionary instead. (#4962, #4966)scrapy.utils.reqseris deprecated. (#5130)Instead of
request_to_dict(), use the newRequest.to_dict()method.Instead of
request_from_dict(), use the newscrapy.utils.request.request_from_dict()function.
In
scrapy.squeues, the following queue classes are deprecated:PickleFifoDiskQueueNonRequest,PickleLifoDiskQueueNonRequest,MarshalFifoDiskQueueNonRequest, andMarshalLifoDiskQueueNonRequest. You should instead use:PickleFifoDiskQueue,PickleLifoDiskQueue,MarshalFifoDiskQueue, andMarshalLifoDiskQueue. (#5117)Many aspects of
scrapy.core.engine.ExecutionEnginethat come from a time when this class could handle multipleSpiderobjects at a time have been deprecated. (#5090)The
has_capacity()method is deprecated.The
schedule()method is deprecated, usecrawl()ordownload()instead.The
open_spidersattribute is deprecated, usespiderinstead.The
spiderparameter is deprecated for the following methods:spider_is_idle()crawl()download()
Instead, call
open_spider()first to set theSpiderobject.
scrapy.utils.response.response_httprepr()is now deprecated. (#4972)
New features
You can now use item filtering to control which items are exported to each output feed. (#4575, #5178, #5161, #5203)
You can now apply post-processing to feeds, and built-in post-processing plugins are provided for output file compression. (#2174, #5168, #5190)
The
FEEDSsetting now supportspathlib.Pathobjects as keys. (#5383, #5384)Enabling asyncio while using Windows and Python 3.8 or later will automatically switch the asyncio event loop to one that allows Scrapy to work. See Windows-specific notes. (#4976, #5315)
The
genspidercommand now supports a start URL instead of a domain name. (#4439)scrapy.utils.defergained 2 new functions,deferred_to_future()andmaybe_deferred_to_future(), to help await on Deferreds when using the asyncio reactor. (#5288)Amazon S3 feed export storage gained support for temporary security credentials (
AWS_SESSION_TOKEN) and endpoint customization (AWS_ENDPOINT_URL). (#4998, #5210)New
LOG_FILE_APPENDsetting to allow truncating the log file. (#5279)Request.cookiesvalues that arebool,floatorintare cast tostr. (#5252, #5253)You may now raise
CloseSpiderfrom a handler of thespider_idlesignal to customize the reason why the spider is stopping. (#5191)When using
HttpProxyMiddleware, the proxy URL for non-HTTPS HTTP/1.1 requests no longer needs to include a URL scheme. (#4505, #4649)All built-in queues now expose a
peekmethod that returns the next queue object (likepop) but does not remove the returned object from the queue. (#5112)If the underlying queue does not support peeking (e.g. because you are not using
queuelib1.6.1 or later), thepeekmethod raisesNotImplementedError.RequestandResponsenow have anattributesattribute that makes subclassing easier. ForRequest, it also allows subclasses to work withscrapy.utils.request.request_from_dict(). (#1877, #5130, #5218)The
open()andclose()methods of the scheduler are now optional. (#3559)HTTP/1.1
TunnelErrorexceptions now only truncate response bodies longer than 1000 characters, instead of those longer than 32 characters, making it easier to debug such errors. (#4881, #5007)ItemLoadernow supports non-text responses. (#5145, #5269)
Bug fixes
The
TWISTED_REACTORandASYNCIO_EVENT_LOOPsettings are no longer ignored if defined incustom_settings. (#4485, #5352)Removed a module-level Twisted reactor import that could prevent using the asyncio reactor. (#5357)
The
startprojectcommand works with existing folders again. (#4665, #4676)The
FEED_URI_PARAMSsetting now behaves as documented. (#4962, #4966)Request.cb_kwargsonce again allows thecallbackkeyword. (#5237, #5251, #5264)Made
scrapy.utils.response.open_in_browser()support more complex HTML. (#5319, #5320)Fixed
CSVFeedSpider.quotecharbeing interpreted as the CSV file encoding. (#5391, #5394)Added missing setuptools to the list of dependencies. (#5122)
LinkExtractornow also works as expected with links that have comma-separatedrelattribute values includingnofollow. (#5225)Fixed a
TypeErrorthat could be raised during feed export parameter parsing. (#5359)
Documentation
asyncio support is no longer considered experimental. (#5332)
Included Windows-specific help for asyncio usage. (#4976, #5315)
Rewrote Using a headless browser with up-to-date best practices. (#4484, #4613)
Documented local file naming in media pipelines. (#5069, #5152)
Frequently Asked Questions now covers spider file name collision issues. (#2680, #3669)
Provided better context and instructions to disable the
URLLENGTH_LIMITsetting. (#5135, #5250)Documented that Reppy parser does not support Python 3.9+. (#5226, #5231)
Documented the scheduler component. (#3537, #3559)
Documented the method used by media pipelines to determine if a file has expired. (#5120, #5254)
Running multiple spiders in the same process now features
scrapy.utils.project.get_project_settings()usage. (#5070)Running multiple spiders in the same process now covers what happens when you define different per-spider values for some settings that cannot differ at run time. (#4485, #5352)
Extended the documentation of the
StatsMailerextension. (#5199, #5217)Documented
TextResponse.urljoin. (#1582)Added the
body_lengthparameter to the documented signature of theheaders_receivedsignal. (#5270)Clarified
SelectorList.getusage in the tutorial. (#5256)The documentation now features the shortest import path of classes with multiple import paths. (#2733, #5099)
quotes.toscrape.comreferences now use HTTPS instead of HTTP. (#5395, #5396)Added a link to our Discord server to Getting help. (#5421, #5422)
The pronunciation of the project name is now officially /ˈskreɪpaɪ/. (#5280, #5281)
Fixed issues and implemented minor improvements. (#3155, #4335, #5074, #5098, #5134, #5180, #5194, #5239, #5266, #5271, #5273, #5274, #5276, #5347, #5356, #5414, #5415, #5416, #5419, #5420)
Quality Assurance
Significantly reduced memory usage by
scrapy.utils.response.response_httprepr(), used by theDownloaderStatsdownloader middleware, which is enabled by default. (#4964, #4972)Removed uses of the deprecated
optparsemodule. (#5366, #5374)Extended typing hints. (#5077, #5090, #5100, #5108, #5171, #5215, #5334)
Improved tests, fixed CI issues, removed unused code. (#5094, #5157, #5162, #5198, #5207, #5208, #5229, #5298, #5299, #5310, #5316, #5333, #5388, #5389, #5400, #5401, #5404, #5405, #5407, #5410, #5412, #5425, #5427)
Implemented improvements for contributors. (#5080, #5082, #5177, #5200)
Implemented cleanups. (#5095, #5106, #5209, #5228, #5235, #5245, #5246, #5292, #5314, #5322)
Scrapy 2.5.1 (2021-10-05)
Security bug fix:
If you use
HttpAuthMiddleware(i.e. thehttp_userandhttp_passspider attributes) for HTTP authentication, any request exposes your credentials to the request target.To prevent unintended exposure of authentication credentials to unintended domains, you must now additionally set a new, additional spider attribute,
http_auth_domain, and point it to the specific domain to which the authentication credentials must be sent.If the
http_auth_domainspider attribute is not set, the domain of the first request will be considered the HTTP authentication target, and authentication credentials will only be sent in requests targeting that domain.If you need to send the same HTTP authentication credentials to multiple domains, you can use
w3lib.http.basic_auth_header()instead to set the value of theAuthorizationheader of your requests.If you really want your spider to send the same HTTP authentication credentials to any domain, set the
http_auth_domainspider attribute toNone.Finally, if you are a user of scrapy-splash, know that this version of Scrapy breaks compatibility with scrapy-splash 0.7.2 and earlier. You will need to upgrade scrapy-splash to a greater version for it to continue to work.
Scrapy 2.5.0 (2021-04-06)
Highlights:
Official Python 3.9 support
Experimental HTTP/2 support
New
get_retry_request()function to retry requests from spider callbacksNew
headers_receivedsignal that allows stopping downloads earlyNew
Response.protocolattribute
Deprecation removals
Removed all code that was deprecated in 1.7.0 and had not already been removed in 2.4.0. (#4901)
Removed support for the
SCRAPY_PICKLED_SETTINGS_TO_OVERRIDEenvironment variable, deprecated in 1.8.0. (#4912)
Deprecations
The
scrapy.utils.py36module is now deprecated in favor ofscrapy.utils.asyncgen. (#4900)
New features
Experimental HTTP/2 support through a new download handler that can be assigned to the
httpsprotocol in theDOWNLOAD_HANDLERSsetting. (#1854, #4769, #5058, #5059, #5066)The new
scrapy.downloadermiddlewares.retry.get_retry_request()function may be used from spider callbacks or middlewares to handle the retrying of a request beyond the scenarios thatRetryMiddlewaresupports. (#3590, #3685, #4902)The new
headers_receivedsignal gives early access to response headers and allows stopping downloads. (#1772, #4897)The new
Response.protocolattribute gives access to the string that identifies the protocol used to download a response. (#4878)Stats now include the following entries that indicate the number of successes and failures in storing feeds:
feedexport/success_count/<storage type> feedexport/failed_count/<storage type>
Where
<storage type>is the feed storage backend class name, such asFileFeedStorageorFTPFeedStorage.The
UrlLengthMiddlewarespider middleware now logs ignored URLs withINFOlogging level instead ofDEBUG, and it now includes the following entry into stats to keep track of the number of ignored URLs:urllength/request_ignored_count
(#5036)
The
HttpCompressionMiddlewaredownloader middleware now logs the number of decompressed responses and the total count of resulting bytes:httpcompression/response_bytes httpcompression/response_count
Bug fixes
Fixed installation on PyPy installing PyDispatcher in addition to PyPyDispatcher, which could prevent Scrapy from working depending on which package got imported. (#4710, #4814)
When inspecting a callback to check if it is a generator that also returns a value, an exception is no longer raised if the callback has a docstring with lower indentation than the following code. (#4477, #4935)
The Content-Length header is no longer omitted from responses when using the default, HTTP/1.1 download handler (see
DOWNLOAD_HANDLERS). (#5009, #5034, #5045, #5057, #5062)Setting the
handle_httpstatus_allrequest meta key toFalsenow has the same effect as not setting it at all, instead of having the same effect as setting it toTrue. (#3851, #4694)
Documentation
Added instructions to install Scrapy in Windows using pip. (#4715, #4736)
Logging documentation now includes additional ways to filter logs. (#4216, #4257, #4965)
Covered how to deal with long lists of allowed domains in the FAQ. (#2263, #3667)
Covered scrapy-bench in Benchmarking. (#4996, #5016)
Clarified that one extension instance is created per crawler. (#5014)
Fixed some errors in examples. (#4829, #4830, #4907, #4909, #5008)
Fixed some external links, typos, and so on. (#4892, #4899, #4936, #4942, #5005, #5063)
The list of Request.meta keys is now sorted alphabetically. (#5061, #5065)
Updated references to Scrapinghub, which is now called Zyte. (#4973, #5072)
Added a mention to contributors in the README. (#4956)
Reduced the top margin of lists. (#4974)
Quality Assurance
Extended typing hints (#4895)
Fixed deprecated uses of the Twisted API. (#4940, #4950, #5073)
Made our tests run with the new pip resolver. (#4710, #4814)
Added tests to ensure that coroutine support is tested. (#4987)
Migrated from Travis CI to GitHub Actions. (#4924)
Implemented code refactorings, style fixes and cleanups. (#4911, #4982, #5001, #5002, #5076)
Scrapy 2.4.1 (2020-11-17)
Fixed feed exports overwrite support (#4845, #4857, #4859)
Fixed the AsyncIO event loop handling, which could make code hang (#4855, #4872)
Fixed the IPv6-capable DNS resolver
CachingHostnameResolverfor download handlers that callreactor.resolve(#4802, #4803)Fixed the output of the
genspidercommand showing placeholders instead of the import path of the generated spider module (#4874)Migrated Windows CI from Azure Pipelines to GitHub Actions (#4869, #4876)
Scrapy 2.4.0 (2020-10-11)
Highlights:
Python 3.5 support has been dropped.
The
file_pathmethod of media pipelines can now access the source item.This allows you to set a download file path based on item data.
The new
item_export_kwargskey of theFEEDSsetting allows to define keyword parameters to pass to item exporter classesYou can now choose whether feed exports overwrite or append to the output file.
For example, when using the
crawlorrunspidercommands, you can use the-Ooption instead of-oto overwrite the output file.Zstd-compressed responses are now supported if zstandard is installed.
In settings, where the import path of a class is required, it is now possible to pass a class object instead.
Modified requirements
Python 3.6 or greater is now required; support for Python 3.5 has been dropped
As a result:
When using PyPy, PyPy 7.2.0 or greater is now required
For Amazon S3 storage support in feed exports or media pipelines, botocore 1.4.87 or greater is now required
To use the images pipeline, Pillow 4.0.0 or greater is now required
Backward-incompatible changes
CookiesMiddlewareonce again discards cookies defined inRequest.headers.We decided to revert this bug fix, introduced in Scrapy 2.2.0, because it was reported that the current implementation could break existing code.
If you need to set cookies for a request, use the
Request.cookiesparameter.A future version of Scrapy will include a new, better implementation of the reverted bug fix.
Deprecation removals
scrapy.extensions.feedexport.S3FeedStorageno longer reads the values ofaccess_keyandsecret_keyfrom the running project settings when they are not passed to its__init__method; you must either pass those parameters to its__init__method or useS3FeedStorage.from_crawler(#4356, #4411, #4688)Rule.process_requestno longer admits callables which expect a singlerequestparameter, rather than bothrequestandresponse(#4818)
Deprecations
In custom media pipelines, signatures that do not accept a keyword-only
itemparameter in any of the methods that now support this parameter are now deprecated (#4628, #4686)In custom feed storage backend classes,
__init__method signatures that do not accept a keyword-onlyfeed_optionsparameter are now deprecated (#547, #716, #4512)The
scrapy.utils.python.WeakKeyCacheclass is now deprecated (#4684, #4701)The
scrapy.utils.boto.is_botocore()function is now deprecated, usescrapy.utils.boto.is_botocore_available()instead (#4734, #4776)
New features
The following methods of media pipelines now accept an
itemkeyword-only parameter containing the source item:In
scrapy.pipelines.files.FilesPipeline:file_downloaded()media_downloaded()media_to_download()
In
scrapy.pipelines.images.ImagesPipeline:file_downloaded()get_images()image_downloaded()media_downloaded()media_to_download()
The new
item_export_kwargskey of theFEEDSsetting allows to define keyword parameters to pass to item exporter classes (#4606, #4768)Feed exports gained overwrite support:
When using the
crawlorrunspidercommands, you can use the-Ooption instead of-oto overwrite the output fileYou can use the
overwritekey in theFEEDSsetting to configure whether to overwrite the output file (True) or append to its content (False)The
__init__andfrom_crawlermethods of feed storage backend classes now receive a new keyword-only parameter,feed_options, which is a dictionary of feed options
Zstd-compressed responses are now supported if zstandard is installed (#4831)
In settings, where the import path of a class is required, it is now possible to pass a class object instead (#3870, #3873).
This includes also settings where only part of its value is made of an import path, such as
DOWNLOADER_MIDDLEWARESorDOWNLOAD_HANDLERS.Downloader middlewares can now override
response.request.If a downloader middleware returns a
Responseobject fromprocess_response()orprocess_exception()with a customRequestobject assigned toresponse.request:The response is handled by the callback of that custom
Requestobject, instead of being handled by the callback of the originalRequestobjectThat custom
Requestobject is now sent as therequestargument to theresponse_receivedsignal, instead of the originalRequestobject
When using the FTP feed storage backend:
It is now possible to set the new
overwritefeed option toFalseto append to an existing file instead of overwriting itThe FTP password can now be omitted if it is not necessary
The
__init__method ofCsvItemExporternow supports anerrorsparameter to indicate how to handle encoding errors (#4755)When using asyncio, it is now possible to set a custom asyncio loop (#4306, #4414)
Serialized requests (see Jobs: pausing and resuming crawls) now support callbacks that are spider methods that delegate on other callable (#4756)
When a response is larger than
DOWNLOAD_MAXSIZE, the logged message is now a warning, instead of an error (#3874, #3886, #4752)
Bug fixes
The
genspidercommand no longer overwrites existing files unless the--forceoption is used (#4561, #4616, #4623)Cookies with an empty value are no longer considered invalid cookies (#4772)
The
runspidercommand now supports files with the.pywfile extension (#4643, #4646)The
HttpProxyMiddlewaremiddleware now simply ignores unsupported proxy values (#3331, #4778)Checks for generator callbacks with a
returnstatement no longer warn aboutreturnstatements in nested functions (#4720, #4721)The system file mode creation mask no longer affects the permissions of files generated using the
startprojectcommand (#4722)scrapy.utils.iterators.xmliternow supports namespaced node names (#861, #4746)Requestobjects can now haveabout:URLs, which can work when using a headless browser (#4835)
Documentation
The
FEED_URI_PARAMSsetting is now documented (#4671, #4724)Improved the documentation of link extractors with an usage example from a spider callback and reference documentation for the
Linkclass (#4751, #4775)Clarified the impact of
CONCURRENT_REQUESTSwhen using theCloseSpiderextension (#4836)Removed references to Python 2’s
unicodetype (#4547, #4703)We now have an official deprecation policy (#4705)
Our documentation policies now cover usage of Sphinx’s
versionaddedandversionchangeddirectives, and we have removed usages referencing Scrapy 1.4.0 and earlier versions (#3971, #4310)Other documentation cleanups (#4090, #4782, #4800, #4801, #4809, #4816, #4825)
Quality assurance
Scrapy 2.3.0 (2020-08-04)
Highlights:
Feed exports now support Google Cloud Storage as a storage backend
The new
FEED_EXPORT_BATCH_ITEM_COUNTsetting allows to deliver output items in batches of up to the specified number of items.It also serves as a workaround for delayed file delivery, which causes Scrapy to only start item delivery after the crawl has finished when using certain storage backends (S3, FTP, and now GCS).
The base implementation of item loaders has been moved into a separate library, itemloaders, allowing usage from outside Scrapy and a separate release schedule
Deprecation removals
Removed the following classes and their parent modules from
scrapy.linkextractors:htmlparser.HtmlParserLinkExtractorregex.RegexLinkExtractorsgml.BaseSgmlLinkExtractorsgml.SgmlLinkExtractor
Use
LinkExtractorinstead (#4356, #4679)
Deprecations
The
scrapy.utils.python.retry_on_eintrfunction is now deprecated (#4683)
New features
Feed exports support Google Cloud Storage (#685, #3608)
New
FEED_EXPORT_BATCH_ITEM_COUNTsetting for batch deliveries (#4250, #4434)The
parsecommand now allows specifying an output file (#4317, #4377)Request.from_curl()andcurl_to_request_kwargs()now also support--data-raw(#4612)A
parsecallback may now be used in built-in spider subclasses, such asCrawlSpider(#712, #732, #781, #4254 )
Bug fixes
Fixed the CSV exporting of dataclass items and attr.s items (#4667, #4668)
Request.from_curl()andcurl_to_request_kwargs()now set the request method toPOSTwhen a request body is specified and no request method is specified (#4612)The processing of ANSI escape sequences in enabled in Windows 10.0.14393 and later, where it is required for colored output (#4393, #4403)
Documentation
Updated the OpenSSL cipher list format link in the documentation about the
DOWNLOADER_CLIENT_TLS_CIPHERSsetting (#4653)Simplified the code example in Working with dataclass items (#4652)
Quality assurance
The base implementation of item loaders has been moved into itemloaders (#4005, #4516)
Fixed a silenced error in some scheduler tests (#4644, #4645)
Renewed the localhost certificate used for SSL tests (#4650)
Removed cookie-handling code specific to Python 2 (#4682)
Stopped using Python 2 unicode literal syntax (#4704)
Stopped using a backlash for line continuation (#4673)
Removed unneeded entries from the MyPy exception list (#4690)
Automated tests now pass on Windows as part of our continuous integration system (#4458)
Automated tests now pass on the latest PyPy version for supported Python versions in our continuous integration system (#4504)
Scrapy 2.2.1 (2020-07-17)
The
startprojectcommand no longer makes unintended changes to the permissions of files in the destination folder, such as removing execution permissions (#4662, #4666)
Scrapy 2.2.0 (2020-06-24)
Highlights:
Python 3.5.2+ is required now
dataclass objects and attrs objects are now valid item types
New
TextResponse.jsonmethodNew
bytes_receivedsignal that allows canceling response downloadCookiesMiddlewarefixes
Backward-incompatible changes
Support for Python 3.5.0 and 3.5.1 has been dropped; Scrapy now refuses to run with a Python version lower than 3.5.2, which introduced
typing.Type(#4615)
Deprecations
TextResponse.body_as_unicode()is now deprecated, useTextResponse.textinstead (#4546, #4555, #4579)scrapy.item.BaseItemis now deprecated, usescrapy.item.Iteminstead (#4534)
New features
dataclass objects and attrs objects are now valid item types, and a new itemadapter library makes it easy to write code that supports any item type (#2749, #2807, #3761, #3881, #4642)
A new
TextResponse.jsonmethod allows to deserialize JSON responses (#2444, #4460, #4574)A new
bytes_receivedsignal allows monitoring response download progress and stopping downloads (#4205, #4559)The dictionaries in the result list of a media pipeline now include a new key,
status, which indicates if the file was downloaded or, if the file was not downloaded, why it was not downloaded; seeFilesPipeline.get_media_requestsfor more information (#2893, #4486)When using Google Cloud Storage for a media pipeline, a warning is now logged if the configured credentials do not grant the required permissions (#4346, #4508)
Link extractors are now serializable, as long as you do not use lambdas for parameters; for example, you can now pass link extractors in
Request.cb_kwargsorRequest.metawhen persisting scheduled requests (#4554)Upgraded the pickle protocol that Scrapy uses from protocol 2 to protocol 4, improving serialization capabilities and performance (#4135, #4541)
scrapy.utils.misc.create_instance()now raises aTypeErrorexception if the resulting instance isNone(#4528, #4532)
Bug fixes
CookiesMiddlewareno longer discards cookies defined inRequest.headers(#1992, #2400)CookiesMiddlewareno longer re-encodes cookies defined asbytesin thecookiesparameter of the__init__method ofRequest(#2400, #3575)When
FEEDSdefines multiple URIs,FEED_STORE_EMPTYisFalseand the crawl yields no items, Scrapy no longer stops feed exports after the first URI (#4621, #4626)Spidercallbacks defined using coroutine syntax no longer need to return an iterable, and may instead return aRequestobject, an item, orNone(#4609)The
startprojectcommand now ensures that the generated project folders and files have the right permissions (#4604)Fix a
KeyErrorexception being sometimes raised fromscrapy.utils.datatypes.LocalWeakReferencedCache(#4597, #4599)When
FEEDSdefines multiple URIs, log messages about items being stored now contain information from the corresponding feed, instead of always containing information about only one of the feeds (#4619, #4629)
Documentation
Added a new section about accessing cb_kwargs from errbacks (#4598, #4634)
Covered chompjs in Parsing JavaScript code (#4556, #4562)
Removed from Coroutines the warning about the API being experimental (#4511, #4513)
Removed references to unsupported versions of Twisted (#4533)
Updated the description of the screenshot pipeline example, which now uses coroutine syntax instead of returning a
Deferred(#4514, #4593)Removed a misleading import line from the
scrapy.utils.log.configure_logging()code example (#4510, #4587)The display-on-hover behavior of internal documentation references now also covers links to commands,
Request.metakeys, settings and signals (#4495, #4563)It is again possible to download the documentation for offline reading (#4578, #4585)
Removed backslashes preceding
*argsand**kwargsin some function and method signatures (#4592, #4596)
Quality assurance
Adjusted the code base further to our style guidelines (#4237, #4525, #4538, #4539, #4540, #4542, #4543, #4544, #4545, #4557, #4558, #4566, #4568, #4572)
Improved code sharing between the
crawlandrunspidercommands (#4548, #4552)Replaced
chain(*iterable)withchain.from_iterable(iterable)(#4635)You may now run the
asynciotests with Tox on any Python version (#4521)Updated test requirements to reflect an incompatibility with pytest 5.4 and 5.4.1 (#4588)
Improved
SpiderLoadertest coverage for scenarios involving duplicate spider names (#4549, #4560)Configured Travis CI to also run the tests with Python 3.5.2 (#4518, #4615)
Made use of set literals in tests (#4573)
Cleaned up the Travis CI configuration (#4517, #4519, #4522, #4537)
Scrapy 2.1.0 (2020-04-24)
Highlights:
New
FEEDSsetting to export to multiple feedsNew
Response.ip_addressattribute
Backward-incompatible changes
AssertionErrorexceptions triggered by assert statements have been replaced by new exception types, to support running Python in optimized mode (see-O) without changing Scrapy’s behavior in any unexpected ways.If you catch an
AssertionErrorexception from Scrapy, update your code to catch the corresponding new exception.(#4440)
Deprecation removals
The
LOG_UNSERIALIZABLE_REQUESTSsetting is no longer supported, useSCHEDULER_DEBUGinstead (#4385)The
REDIRECT_MAX_METAREFRESH_DELAYsetting is no longer supported, useMETAREFRESH_MAXDELAYinstead (#4385)The
ChunkedTransferMiddlewaremiddleware has been removed, including the entirescrapy.downloadermiddlewares.chunkedmodule; chunked transfers work out of the box (#4431)The
spidersproperty has been removed fromCrawler, useCrawlerRunner.spider_loaderor instantiateSPIDER_LOADER_CLASSwith your settings instead (#4398)The
MultiValueDict,MultiValueDictKeyError, andSiteNodeclasses have been removed fromscrapy.utils.datatypes(#4400)
Deprecations
New features
A new setting,
FEEDS, allows configuring multiple output feeds with different settings each (#1336, #3858, #4507)The
crawlandrunspidercommands now support multiple-oparameters (#1336, #3858, #4507)The
crawlandrunspidercommands now support specifying an output format by appending:<format>to the output file (#1336, #3858, #4507)The new
Response.ip_addressattribute gives access to the IP address that originated a response (#3903, #3940)A warning is now issued when a value in
allowed_domainsincludes a port (#50, #3198, #4413)Zsh completion now excludes used option aliases from the completion list (#4438)
Bug fixes
Request serialization no longer breaks for callbacks that are spider attributes which are assigned a function with a different name (#4500)
Nonevalues inallowed_domainsno longer cause aTypeErrorexception (#4410)Zsh completion no longer allows options after arguments (#4438)
zope.interface 5.0.0 and later versions are now supported (#4447, #4448)
Spider.make_requests_from_url, deprecated in Scrapy 1.4.0, now issues a warning when used (#4412)
Documentation
Improved the documentation about signals that allow their handlers to return a
Deferred(#4295, #4390)Our PyPI entry now includes links for our documentation, our source code repository and our issue tracker (#4456)
Covered the curl2scrapy service in the documentation (#4206, #4455)
Removed references to the Guppy library, which only works in Python 2 (#4285, #4343)
Extended use of InterSphinx to link to Python 3 documentation (#4444, #4445)
Added support for Sphinx 3.0 and later (#4475, #4480, #4496, #4503)
Quality assurance
Removed warnings about using old, removed settings (#4404)
Removed a warning about importing
StringTransportfromtwisted.test.proto_helpersin Twisted 19.7.0 or newer (#4409)Removed outdated Debian package build files (#4384)
Removed code that added support for old versions of Twisted that we no longer support (#4472)
Removed
twisted.internet.defer.returnValue()calls (#4443, #4446, #4489)
Scrapy 2.0.1 (2020-03-18)
Response.follow_allnow supports an empty URL iterable as input (#4408, #4420)Removed top-level
reactorimports to prevent errors about the wrong Twisted reactor being installed when setting a different Twisted reactor usingTWISTED_REACTOR(#4401, #4406)Fixed tests (#4422)
Scrapy 2.0.0 (2020-03-03)
Highlights:
Python 2 support has been removed
Partial coroutine syntax support and experimental
asynciosupportNew
Response.follow_allmethodFTP support for media pipelines
New
Response.certificateattributeIPv6 support through
DNS_RESOLVER
Backward-incompatible changes
Python 2 support has been removed, following Python 2 end-of-life on January 1, 2020 (#4091, #4114, #4115, #4121, #4138, #4231, #4242, #4304, #4309, #4373)
Retry gaveups (see
RETRY_TIMES) are now logged as errors instead of as debug information (#3171, #3566)File extensions that
LinkExtractorignores by default now also include7z,7zip,apk,bz2,cdr,dmg,ico,iso,tar,tar.gz,webm, andxz(#1837, #2067, #4066)The
METAREFRESH_IGNORE_TAGSsetting is now an empty list by default, following web browser behavior (#3844, #4311)The
HttpCompressionMiddlewarenow includes spaces after commas in the value of theAccept-Encodingheader that it sets, following web browser behavior (#4293)The
__init__method of custom download handlers (seeDOWNLOAD_HANDLERS) or subclasses of the following downloader handlers no longer receives asettingsparameter:Use the
from_settingsorfrom_crawlerclass methods to expose such a parameter to your custom download handlers.(#4126)
We have refactored the
scrapy.core.scheduler.Schedulerclass and related queue classes (seeSCHEDULER_PRIORITY_QUEUE,SCHEDULER_DISK_QUEUEandSCHEDULER_MEMORY_QUEUE) to make it easier to implement custom scheduler queue classes. See Changes to scheduler queue classes below for details.Overridden settings are now logged in a different format. This is more in line with similar information logged at startup (#4199)
Deprecation removals
The Scrapy shell no longer provides a sel proxy object, use
response.selectorinstead (#4347)LevelDB support has been removed (#4112)
The following functions have been removed from
scrapy.utils.python:isbinarytext,is_writable,setattr_default,stringify_dict(#4362)
Deprecations
Using environment variables prefixed with
SCRAPY_to override settings is deprecated (#4300, #4374, #4375)scrapy.linkextractors.FilteringLinkExtractoris deprecated, usescrapy.linkextractors.LinkExtractorinstead (#4045)The
noconnectquery string argument of proxy URLs is deprecated and should be removed from proxy URLs (#4198)The
nextmethod ofscrapy.utils.python.MutableChainis deprecated, use the globalnext()function orMutableChain.__next__instead (#4153)
New features
Added partial support for Python’s coroutine syntax and experimental support for
asyncioandasyncio-powered libraries (#4010, #4259, #4269, #4270, #4271, #4316, #4318)The new
Response.follow_allmethod offers the same functionality asResponse.followbut supports an iterable of URLs as input and returns an iterable of requests (#2582, #4057, #4286)Media pipelines now support FTP storage (#3928, #3961)
The new
Response.certificateattribute exposes the SSL certificate of the server as atwisted.internet.ssl.Certificateobject for HTTPS responses (#2726, #4054)A new
DNS_RESOLVERsetting allows enabling IPv6 support (#1031, #4227)A new
SCRAPER_SLOT_MAX_ACTIVE_SIZEsetting allows configuring the existing soft limit that pauses request downloads when the total response data being processed is too high (#1410, #3551)A new
TWISTED_REACTORsetting allows customizing thereactorthat Scrapy uses, allowing to enable asyncio support or deal with a common macOS issue (#2905, #4294)Scheduler disk and memory queues may now use the class methods
from_crawlerorfrom_settings(#3884)The new
Response.cb_kwargsattribute serves as a shortcut forResponse.request.cb_kwargs(#4331)Response.follownow supports aflagsparameter, for consistency withRequest(#4277, #4279)Item loader processors can now be regular functions, they no longer need to be methods (#3899)
Requestno longer requires acallbackparameter when anerrbackparameter is specified (#3586, #4008)LogFormatternow supports some additional methods:download_errorfor download errorsitem_errorfor exceptions raised during item processing by item pipelinesspider_errorfor exceptions raised from spider callbacks
The
FEED_URIsetting now supportspathlib.Pathvalues (#3731, #4074)A new
request_left_downloadersignal is sent when a request leaves the downloader (#4303)Scrapy logs a warning when it detects a request callback or errback that uses
yieldbut also returns a value, since the returned value would be lost (#3484, #3869)Spiderobjects now raise anAttributeErrorexception if they do not have astart_urlsattribute nor reimplementscrapy.spiders.Spider.start_requests(), but have astart_urlattribute (#4133, #4170)BaseItemExportersubclasses may now usesuper().__init__(**kwargs)instead ofself._configure(kwargs)in their__init__method, passingdont_fail=Trueto the parent__init__method if needed, and accessingkwargsatself._kwargsafter calling their parent__init__method (#4193, #4370)A new
keep_fragmentsparameter ofscrapy.utils.request.request_fingerprintallows to generate different fingerprints for requests with different fragments in their URL (#4104)Download handlers (see
DOWNLOAD_HANDLERS) may now use thefrom_settingsandfrom_crawlerclass methods that other Scrapy components already supported (#4126)scrapy.utils.python.MutableChain.__iter__now returnsself, allowing it to be used as a sequence. (#4153)
Bug fixes
The
crawlcommand now also exits with exit code 1 when an exception happens before the crawling starts (#4175, #4207)LinkExtractor.extract_linksno longer re-encodes the query string or URLs from non-UTF-8 responses in UTF-8 (#998, #1403, #1949, #4321)The first spider middleware (see
SPIDER_MIDDLEWARES) now also processes exceptions raised from callbacks that are generators (#4260, #4272)Redirects to URLs starting with 3 slashes (
///) are now supported (#4032, #4042)Requestno longer accepts strings asurlsimply because they have a colon (#2552, #4094)The correct encoding is now used for attach names in
MailSender(#4229, #4239)RFPDupeFilter, the defaultDUPEFILTER_CLASS, no longer writes an extra\rcharacter on each line in Windows, which made the size of therequests.seenfile unnecessarily large on that platform (#4283)Z shell auto-completion now looks for
.htmlfiles, not.httpfiles, and covers the-hcommand-line switch (#4122, #4291)Adding items to a
scrapy.utils.datatypes.LocalCacheobject without alimitdefined no longer raises aTypeErrorexception (#4123)Fixed a typo in the message of the
ValueErrorexception raised whenscrapy.utils.misc.create_instance()gets bothsettingsandcrawlerset toNone(#4128)
Documentation
API documentation now links to an online, syntax-highlighted view of the corresponding source code (#4148)
Links to unexisting documentation pages now allow access to the sidebar (#4152, #4169)
Cross-references within our documentation now display a tooltip when hovered (#4173, #4183)
Improved the documentation about
LinkExtractor.extract_linksand simplified Link Extractors (#4045)Clarified how
ItemLoader.itemworks (#3574, #4099)Clarified that
logging.basicConfig()should not be used when also usingCrawlerProcess(#2149, #2352, #3146, #3960)Clarified the requirements for
Requestobjects when using persistence (#4124, #4139)Clarified how to install a custom image pipeline (#4034, #4252)
Fixed the signatures of the
file_pathmethod in media pipeline examples (#4290)Covered a backward-incompatible change in Scrapy 1.7.0 affecting custom
scrapy.core.scheduler.Schedulersubclasses (#4274)Improved the
README.rstandCODE_OF_CONDUCT.mdfiles (#4059)Documentation examples are now checked as part of our test suite and we have fixed some of the issues detected (#4142, #4146, #4171, #4184, #4190)
Fixed logic issues, broken links and typos (#4247, #4258, #4282, #4288, #4305, #4308, #4323, #4338, #4359, #4361)
Improved consistency when referring to the
__init__method of an object (#4086, #4088)Fixed an inconsistency between code and output in Scrapy at a glance (#4213)
Extended
intersphinxusage (#4147, #4172, #4185, #4194, #4197)We now use a recent version of Python to build the documentation (#4140, #4249)
Quality assurance
Added Bandit security checks to our test suite (#4162, #4181)
Added Flake8 style checks to our test suite and applied many of the corresponding changes (#3944, #3945, #4137, #4157, #4167, #4174, #4186, #4195, #4238, #4246, #4355, #4360, #4365)
Started reporting slowest tests, and improved the performance of some of them (#4163, #4164)
Fixed broken tests and refactored some tests (#4014, #4095, #4244, #4268, #4372)
Modified the tox configuration to allow running tests with any Python version, run Bandit and Flake8 tests by default, and enforce a minimum tox version programmatically (#4179)
Cleaned up code (#3937, #4208, #4209, #4210, #4212, #4369, #4376, #4378)
Changes to scheduler queue classes
The following changes may impact any custom queue classes of all types:
The
pushmethod no longer receives a second positional parameter containingrequest.priority * -1. If you need that value, get it from the first positional parameter,request, instead, or use the newpriority()method inscrapy.core.scheduler.ScrapyPriorityQueuesubclasses.
The following changes may impact custom priority queue classes:
In the
__init__method or thefrom_crawlerorfrom_settingsclass methods:The parameter that used to contain a factory function,
qfactory, is now passed as a keyword parameter nameddownstream_queue_cls.A new keyword parameter has been added:
key. It is a string that is always an empty string for memory queues and indicates theJOBDIRvalue for disk queues.The parameter for disk queues that contains data from the previous crawl,
startpriosorslot_startprios, is now passed as a keyword parameter namedstartprios.The
serializeparameter is no longer passed. The disk queue class must take care of request serialization on its own before writing to disk, using therequest_to_dict()andrequest_from_dict()functions from thescrapy.utils.reqsermodule.
The following changes may impact custom disk and memory queue classes:
The signature of the
__init__method is now__init__(self, crawler, key).
The following changes affect specifically the
ScrapyPriorityQueue and
DownloaderAwarePriorityQueue classes from
scrapy.core.scheduler and may affect subclasses:
In the
__init__method, most of the changes described above apply.__init__may still receive all parameters as positional parameters, however:downstream_queue_cls, which replacedqfactory, must be instantiated differently.qfactorywas instantiated with a priority value (integer).Instances of
downstream_queue_clsshould be created using the newScrapyPriorityQueue.qfactoryorDownloaderAwarePriorityQueue.pqfactorymethods.The new
keyparameter displaced thestartpriosparameter 1 position to the right.
The following class attributes have been added:
crawlerdownstream_queue_cls(details above)key(details above)
The
serializeattribute has been removed (details above)
The following changes affect specifically the
ScrapyPriorityQueue class and may affect
subclasses:
A new
priority()method has been added which, given a request, returnsrequest.priority * -1.It is used in
push()to make up for the removal of itspriorityparameter.The
spiderattribute has been removed. Usecrawler.spiderinstead.
The following changes affect specifically the
DownloaderAwarePriorityQueue class and may
affect subclasses:
A new
pqueuesattribute offers a mapping of downloader slot names to the corresponding instances ofdownstream_queue_cls.
(#3884)
Scrapy 1.8.4 (2024-02-14)
Security bug fixes:
Due to its ReDoS vulnerabilities,
scrapy.utils.iterators.xmliteris now deprecated in favor ofxmliter_lxml(), whichXMLFeedSpidernow uses.To minimize the impact of this change on existing code,
xmliter_lxml()now supports indicating the node namespace as a prefix in the node name, and big files with highly nested trees when using libxml2 2.7+.Please, see the cc65-xxvf-f7r9 security advisory for more information.
DOWNLOAD_MAXSIZEandDOWNLOAD_WARNSIZEnow also apply to the decompressed response body. Please, see the 7j7m-v7m3-jqm7 security advisory for more information.Also in relation with the 7j7m-v7m3-jqm7 security advisory, use of the
scrapy.downloadermiddlewares.decompressionmodule is discouraged and will trigger a warning.The
Authorizationheader is now dropped on redirects to a different domain. Please, see the cw9j-q3vf-hrrv security advisory for more information.
Scrapy 1.8.3 (2022-07-25)
Security bug fix:
When
HttpProxyMiddlewareprocesses a request withproxymetadata, and thatproxymetadata includes proxy credentials,HttpProxyMiddlewaresets theProxy-Authorizationheader, but only if that header is not already set.There are third-party proxy-rotation downloader middlewares that set different
proxymetadata every time they process a request.Because of request retries and redirects, the same request can be processed by downloader middlewares more than once, including both
HttpProxyMiddlewareand any third-party proxy-rotation downloader middleware.These third-party proxy-rotation downloader middlewares could change the
proxymetadata of a request to a new value, but fail to remove theProxy-Authorizationheader from the previous value of theproxymetadata, causing the credentials of one proxy to be sent to a different proxy.To prevent the unintended leaking of proxy credentials, the behavior of
HttpProxyMiddlewareis now as follows when processing a request:If the request being processed defines
proxymetadata that includes credentials, theProxy-Authorizationheader is always updated to feature those credentials.If the request being processed defines
proxymetadata without credentials, theProxy-Authorizationheader is removed unless it was originally defined for the same proxy URL.To remove proxy credentials while keeping the same proxy URL, remove the
Proxy-Authorizationheader.If the request has no
proxymetadata, or that metadata is a falsy value (e.g.None), theProxy-Authorizationheader is removed.It is no longer possible to set a proxy URL through the
proxymetadata but set the credentials through theProxy-Authorizationheader. Set proxy credentials through theproxymetadata instead.
Scrapy 1.8.2 (2022-03-01)
Security bug fixes:
When a
Requestobject with cookies defined gets a redirect response causing a newRequestobject to be scheduled, the cookies defined in the originalRequestobject are no longer copied into the newRequestobject.If you manually set the
Cookieheader on aRequestobject and the domain name of the redirect URL is not an exact match for the domain of the URL of the originalRequestobject, yourCookieheader is now dropped from the newRequestobject.The old behavior could be exploited by an attacker to gain access to your cookies. Please, see the cjvr-mfj7-j4j8 security advisory for more information.
Note
It is still possible to enable the sharing of cookies between different domains with a shared domain suffix (e.g.
example.comand any subdomain) by defining the shared domain suffix (e.g.example.com) as the cookie domain when defining your cookies. See the documentation of theRequestclass for more information.When the domain of a cookie, either received in the
Set-Cookieheader of a response or defined in aRequestobject, is set to a public suffix, the cookie is now ignored unless the cookie domain is the same as the request domain.The old behavior could be exploited by an attacker to inject cookies into your requests to some other domains. Please, see the mfjm-vh54-3f96 security advisory for more information.
Scrapy 1.8.1 (2021-10-05)
Security bug fix:
If you use
HttpAuthMiddleware(i.e. thehttp_userandhttp_passspider attributes) for HTTP authentication, any request exposes your credentials to the request target.To prevent unintended exposure of authentication credentials to unintended domains, you must now additionally set a new, additional spider attribute,
http_auth_domain, and point it to the specific domain to which the authentication credentials must be sent.If the
http_auth_domainspider attribute is not set, the domain of the first request will be considered the HTTP authentication target, and authentication credentials will only be sent in requests targeting that domain.If you need to send the same HTTP authentication credentials to multiple domains, you can use
w3lib.http.basic_auth_header()instead to set the value of theAuthorizationheader of your requests.If you really want your spider to send the same HTTP authentication credentials to any domain, set the
http_auth_domainspider attribute toNone.Finally, if you are a user of scrapy-splash, know that this version of Scrapy breaks compatibility with scrapy-splash 0.7.2 and earlier. You will need to upgrade scrapy-splash to a greater version for it to continue to work.
Scrapy 1.8.0 (2019-10-28)
Highlights:
Dropped Python 3.4 support and updated minimum requirements; made Python 3.8 support official
New
Request.from_curl()class methodNew
ROBOTSTXT_PARSERandROBOTSTXT_USER_AGENTsettingsNew
DOWNLOADER_CLIENT_TLS_CIPHERSandDOWNLOADER_CLIENT_TLS_VERBOSE_LOGGINGsettings
Backward-incompatible changes
Python 3.4 is no longer supported, and some of the minimum requirements of Scrapy have also changed:
cssselect 0.9.1
cryptography 2.0
lxml 3.5.0
pyOpenSSL 16.2.0
queuelib 1.4.2
service_identity 16.0.0
six 1.10.0
Twisted 17.9.0 (16.0.0 with Python 2)
zope.interface 4.1.3
(#3892)
JSONRequestis now calledJsonRequestfor consistency with similar classes (#3929, #3982)If you are using a custom context factory (
DOWNLOADER_CLIENTCONTEXTFACTORY), its__init__method must accept two new parameters:tls_verbose_loggingandtls_ciphers(#2111, #3392, #3442, #3450)ItemLoadernow turns the values of its input item into lists:>>> item = MyItem() >>> item["field"] = "value1" >>> loader = ItemLoader(item=item) >>> item["field"] ['value1']
This is needed to allow adding values to existing fields (
loader.add_value('field', 'value2')).
See also Deprecation removals below.
New features
A new
Request.from_curlclass method allows creating a request from a cURL command (#2985, #3862)A new
ROBOTSTXT_PARSERsetting allows choosing which robots.txt parser to use. It includes built-in support for RobotFileParser, Protego (default), Reppy, and Robotexclusionrulesparser, and allows you to implement support for additional parsers (#754, #2669, #3796, #3935, #3969, #4006)A new
ROBOTSTXT_USER_AGENTsetting allows defining a separate user agent string to use for robots.txt parsing (#3931, #3966)Ruleno longer requires aLinkExtractorparameter (#781, #4016)Use the new
DOWNLOADER_CLIENT_TLS_CIPHERSsetting to customize the TLS/SSL ciphers used by the default HTTP/1.1 downloader (#3392, #3442)Set the new
DOWNLOADER_CLIENT_TLS_VERBOSE_LOGGINGsetting toTrueto enable debug-level messages about TLS connection parameters after establishing HTTPS connections (#2111, #3450)Callbacks that receive keyword arguments (see
Request.cb_kwargs) can now be tested using the new@cb_kwargsspider contract (#3985, #3988)When a
@scrapesspider contract fails, all missing fields are now reported (#766, #3939)Custom log formats can now drop messages by having the corresponding methods of the configured
LOG_FORMATTERreturnNone(#3984, #3987)A much improved completion definition is now available for Zsh (#4069)
Bug fixes
ItemLoader.load_item()no longer makes later calls toItemLoader.get_output_value()orItemLoader.load_item()return empty data (#3804, #3819, #3897, #3976, #3998, #4036)Fixed
DummyStatsCollectorraising aTypeErrorexception (#4007, #4052)FilesPipeline.file_pathandImagesPipeline.file_pathno longer choose file extensions that are not registered with IANA (#1287, #3953, #3954)When using botocore to persist files in S3, all botocore-supported headers are properly mapped now (#3904, #3905)
FTP passwords in
FEED_URIcontaining percent-escaped characters are now properly decoded (#3941)A memory-handling and error-handling issue in
scrapy.utils.ssl.get_temp_key_info()has been fixed (#3920)
Documentation
The documentation now covers how to define and configure a custom log format (#3616, #3660)
API documentation added for
MarshalItemExporterandPythonItemExporter(#3973)Minor documentation fixes (#2998, #3398, #3597, #3894, #3934, #3978, #3993, #4022, #4028, #4033, #4046, #4050, #4055, #4056, #4061, #4072, #4071, #4079, #4081, #4089, #4093)
Deprecation removals
scrapy.xlibhas been removed (#4015)
Deprecations
Other changes
Minimum versions of optional Scrapy requirements that are covered by continuous integration tests have been updated:
Lower versions of these optional requirements may work, but it is not guaranteed (#3892)
GitHub templates for bug reports and feature requests (#3126, #3471, #3749, #3754)
Continuous integration fixes (#3923)
Scrapy 1.7.4 (2019-10-21)
Revert the fix for #3804 (#3819), which has a few undesired side effects (#3897, #3976).
As a result, when an item loader is initialized with an item,
ItemLoader.load_item() once again
makes later calls to ItemLoader.get_output_value() or ItemLoader.load_item() return empty data.
Scrapy 1.7.3 (2019-08-01)
Scrapy 1.7.2 (2019-07-23)
Scrapy 1.7.1 (2019-07-18)
Re-packaging of Scrapy 1.7.0, which was missing some changes in PyPI.
Scrapy 1.7.0 (2019-07-18)
Note
Make sure you install Scrapy 1.7.1. The Scrapy 1.7.0 package in PyPI is the result of an erroneous commit tagging and does not include all the changes described below.
Highlights:
Improvements for crawls targeting multiple domains
A cleaner way to pass arguments to callbacks
A new class for JSON requests
Improvements for rule-based spiders
New features for feed exports
Backward-incompatible changes
429is now part of theRETRY_HTTP_CODESsetting by defaultThis change is backward incompatible. If you don’t want to retry
429, you must overrideRETRY_HTTP_CODESaccordingly.Crawler,CrawlerRunner.crawlandCrawlerRunner.create_crawlerno longer accept aSpidersubclass instance, they only accept aSpidersubclass now.Spidersubclass instances were never meant to work, and they were not working as one would expect: instead of using the passedSpidersubclass instance, theirfrom_crawlermethod was called to generate a new instance.Non-default values for the
SCHEDULER_PRIORITY_QUEUEsetting may stop working. Scheduler priority queue classes now need to handleRequestobjects instead of arbitrary Python data structures.An additional
crawlerparameter has been added to the__init__method of theSchedulerclass. Custom scheduler subclasses which don’t accept arbitrary parameters in their__init__method might break because of this change.For more information, see
SCHEDULER.
See also Deprecation removals below.
New features
A new scheduler priority queue,
scrapy.pqueues.DownloaderAwarePriorityQueue, may be enabled for a significant scheduling improvement on crawls targeting multiple web domains, at the cost of noCONCURRENT_REQUESTS_PER_IPsupport (#3520)A new
Request.cb_kwargsattribute provides a cleaner way to pass keyword arguments to callback methods (#1138, #3563)A new
JSONRequestclass offers a more convenient way to build JSON requests (#3504, #3505)A
process_requestcallback passed to theRule__init__method now receives theResponseobject that originated the request as its second argument (#3682)A new
restrict_textparameter for theLinkExtractor__init__method allows filtering links by linking text (#3622, #3635)A new
FEED_STORAGE_S3_ACLsetting allows defining a custom ACL for feeds exported to Amazon S3 (#3607)A new
FEED_STORAGE_FTP_ACTIVEsetting allows using FTP’s active connection mode for feeds exported to FTP servers (#3829)A new
METAREFRESH_IGNORE_TAGSsetting allows overriding which HTML tags are ignored when searching a response for HTML meta tags that trigger a redirect (#1422, #3768)A new
redirect_reasonsrequest meta key exposes the reason (status code, meta refresh) behind every followed redirect (#3581, #3687)The
SCRAPY_CHECKvariable is now set to thetruestring during runs of thecheckcommand, which allows detecting contract check runs from code (#3704, #3739)A new
Item.deepcopy()method makes it easier to deep-copy items (#1493, #3671)Exceptions from
ItemLoaderinput and output processors are now more verbose (#3836, #3840)Crawler,CrawlerRunner.crawlandCrawlerRunner.create_crawlernow fail gracefully if they receive aSpidersubclass instance instead of the subclass itself (#2283, #3610, #3872)
Bug fixes
process_spider_exception()is now also invoked for generators (#220, #2061)System exceptions like KeyboardInterrupt are no longer caught (#3726)
ItemLoader.load_item()no longer makes later calls toItemLoader.get_output_value()orItemLoader.load_item()return empty data (#3804, #3819)The images pipeline (
ImagesPipeline) no longer ignores these Amazon S3 settings:AWS_ENDPOINT_URL,AWS_REGION_NAME,AWS_USE_SSL,AWS_VERIFY(#3625)Fixed a memory leak in
scrapy.pipelines.media.MediaPipelineaffecting, for example, non-200 responses and exceptions from custom middlewares (#3813)Requests with private callbacks are now correctly unserialized from disk (#3790)
FormRequest.from_response()now handles invalid methods like major web browsers (#3777, #3794)
Documentation
A new topic, Selecting dynamically-loaded content, covers recommended approaches to read dynamically-loaded data (#3703)
Speeding up broad crawls now features information about memory usage (#1264, #3866)
The documentation of
Rulenow covers how to access the text of a link when usingCrawlSpider(#3711, #3712)A new section, Writing your own storage backend, covers writing a custom cache storage backend for
HttpCacheMiddleware(#3683, #3692)A new FAQ entry, How to split an item into multiple items in an item pipeline?, explains what to do when you want to split an item into multiple items from an item pipeline (#2240, #3672)
Updated the FAQ entry about crawl order to explain why the first few requests rarely follow the desired order (#1739, #3621)
The
LOGSTATS_INTERVALsetting (#3730), theFilesPipeline.file_pathandImagesPipeline.file_pathmethods (#2253, #3609) and theCrawler.stop()method (#3842) are now documentedSome parts of the documentation that were confusing or misleading are now clearer (#1347, #1789, #2289, #3069, #3615, #3626, #3668, #3670, #3673, #3728, #3762, #3861, #3882)
Minor documentation fixes (#3648, #3649, #3662, #3674, #3676, #3694, #3724, #3764, #3767, #3791, #3797, #3806, #3812)
Deprecation removals
The following deprecated APIs have been removed (#3578):
scrapy.conf(useCrawler.settings)From
scrapy.core.downloader.handlers:http.HttpDownloadHandler(usehttp10.HTTP10DownloadHandler)
scrapy.loader.ItemLoader._get_values(use_get_xpathvalues)scrapy.loader.XPathItemLoader(useItemLoader)scrapy.log(see Logging)From
scrapy.pipelines:files.FilesPipeline.file_key(usefile_path)images.ImagesPipeline.file_key(usefile_path)images.ImagesPipeline.image_key(usefile_path)images.ImagesPipeline.thumb_key(usethumb_path)
From both
scrapy.selectorandscrapy.selector.lxmlsel:From
scrapy.selector.csstranslator:ScrapyGenericTranslator(use parsel.csstranslator.GenericTranslator)ScrapyHTMLTranslator(use parsel.csstranslator.HTMLTranslator)ScrapyXPathExpr(use parsel.csstranslator.XPathExpr)
From
Selector:_root(both the__init__method argument and the object property, useroot)extract_unquoted(usegetall)select(usexpath)
From
SelectorList:extract_unquoted(usegetall)select(usexpath)x(usexpath)
scrapy.spiders.BaseSpider(useSpider)From
Spider(and subclasses):DOWNLOAD_DELAY(use download_delay)set_crawler(usefrom_crawler())
scrapy.spiders.spiders(useSpiderLoader)scrapy.telnet(usescrapy.extensions.telnet)From
scrapy.utils.python:str_to_unicode(useto_unicode)unicode_to_str(useto_bytes)
scrapy.utils.response.body_or_str
The following deprecated settings have also been removed (#3578):
SPIDER_MANAGER_CLASS(useSPIDER_LOADER_CLASS)
Deprecations
The
queuelib.PriorityQueuevalue for theSCHEDULER_PRIORITY_QUEUEsetting is deprecated. Usescrapy.pqueues.ScrapyPriorityQueueinstead.process_requestcallbacks passed toRulethat do not accept two arguments are deprecated.The following modules are deprecated:
scrapy.utils.http(use w3lib.http)scrapy.utils.markup(use w3lib.html)scrapy.utils.multipart(use urllib3)
The
scrapy.utils.datatypes.MergeDictclass is deprecated for Python 3 code bases. UseChainMapinstead. (#3878)The
scrapy.utils.gz.is_gzippedfunction is deprecated. Usescrapy.utils.gz.gzip_magic_numberinstead.
Other changes
It is now possible to run all tests from the same tox environment in parallel; the documentation now covers this and other ways to run tests (#3707)
It is now possible to generate an API documentation coverage report (#3806, #3810, #3860)
The documentation policies now require docstrings (#3701) that follow PEP 257 (#3748)
Internal fixes and cleanup (#3629, #3643, #3684, #3698, #3734, #3735, #3736, #3737, #3809, #3821, #3825, #3827, #3833, #3857, #3877)
Scrapy 1.6.0 (2019-01-30)
Highlights:
better Windows support;
Python 3.7 compatibility;
big documentation improvements, including a switch from
.extract_first()+.extract()API to.get()+.getall()API;feed exports, FilePipeline and MediaPipeline improvements;
better extensibility:
item_errorandrequest_reached_downloadersignals;from_crawlersupport for feed exporters, feed storages and dupefilters.scrapy.contractsfixes and new features;telnet console security improvements, first released as a backport in Scrapy 1.5.2 (2019-01-22);
clean-up of the deprecated code;
various bug fixes, small new features and usability improvements across the codebase.
Selector API changes
While these are not changes in Scrapy itself, but rather in the parsel
library which Scrapy uses for xpath/css selectors, these changes are
worth mentioning here. Scrapy now depends on parsel >= 1.5, and
Scrapy documentation is updated to follow recent parsel API conventions.
Most visible change is that .get() and .getall() selector
methods are now preferred over .extract_first() and .extract().
We feel that these new methods result in a more concise and readable code.
See extract() and extract_first() for more details.
Note
There are currently no plans to deprecate .extract()
and .extract_first() methods.
Another useful new feature is the introduction of Selector.attrib and
SelectorList.attrib properties, which make it easier to get
attributes of HTML elements. See Selecting element attributes.
CSS selectors are cached in parsel >= 1.5, which makes them faster when the same CSS path is used many times. This is very common in case of Scrapy spiders: callbacks are usually called several times, on different pages.
If you’re using custom Selector or SelectorList subclasses,
a backward incompatible change in parsel may affect your code.
See parsel changelog for a detailed description, as well as for the
full list of improvements.
Telnet console
Backward incompatible: Scrapy’s telnet console now requires username and password. See Telnet Console for more details. This change fixes a security issue; see Scrapy 1.5.2 (2019-01-22) release notes for details.
New extensibility features
from_crawlersupport is added to feed exporters and feed storages. This, among other things, allows to access Scrapy settings from custom feed storages and exporters (#1605, #3348).from_crawlersupport is added to dupefilters (#2956); this allows to access e.g. settings or a spider from a dupefilter.item_erroris fired when an error happens in a pipeline (#3256);request_reached_downloaderis fired when Downloader gets a new Request; this signal can be useful e.g. for custom Schedulers (#3393).new SitemapSpider
sitemap_filter()method which allows to select sitemap entries based on their attributes in SitemapSpider subclasses (#3512).Lazy loading of Downloader Handlers is now optional; this enables better initialization error handling in custom Downloader Handlers (#3394).
New FilePipeline and MediaPipeline features
Expose more options for S3FilesStore:
AWS_ENDPOINT_URL,AWS_USE_SSL,AWS_VERIFY,AWS_REGION_NAME. For example, this allows to use alternative or self-hosted AWS-compatible providers (#2609, #3548).ACL support for Google Cloud Storage:
FILES_STORE_GCS_ACLandIMAGES_STORE_GCS_ACL(#3199).
scrapy.contracts improvements
Exceptions in contracts code are handled better (#3377);
dont_filter=Trueis used for contract requests, which allows to test different callbacks with the same URL (#3381);request_clsattribute in Contract subclasses allow to use different Request classes in contracts, for example FormRequest (#3383).Fixed errback handling in contracts, e.g. for cases where a contract is executed for URL which returns non-200 response (#3371).
Usability improvements
more stats for RobotsTxtMiddleware (#3100)
INFO log level is used to show telnet host/port (#3115)
a message is added to IgnoreRequest in RobotsTxtMiddleware (#3113)
better validation of
urlargument inResponse.follow(#3131)non-zero exit code is returned from Scrapy commands when error happens on spider initialization (#3226)
Link extraction improvements: “ftp” is added to scheme list (#3152); “flv” is added to common video extensions (#3165)
better error message when an exporter is disabled (#3358);
scrapy shell --helpmentions syntax required for local files (./file.html) - #3496.Referer header value is added to RFPDupeFilter log messages (#3588)
Bug fixes
fixed issue with extra blank lines in .csv exports under Windows (#3039);
proper handling of pickling errors in Python 3 when serializing objects for disk queues (#3082)
flags are now preserved when copying Requests (#3342);
FormRequest.from_response clickdata shouldn’t ignore elements with
input[type=image](#3153).FormRequest.from_response should preserve duplicate keys (#3247)
Documentation improvements
Docs are re-written to suggest .get/.getall API instead of .extract/.extract_first. Also, Selectors docs are updated and re-structured to match latest parsel docs; they now contain more topics, such as Selecting element attributes or Extensions to CSS Selectors (#3390).
Using your browser’s Developer Tools for scraping is a new tutorial which replaces old Firefox and Firebug tutorials (#3400).
SCRAPY_PROJECT environment variable is documented (#3518);
troubleshooting section is added to install instructions (#3517);
improved links to beginner resources in the tutorial (#3367, #3468);
fixed
RETRY_HTTP_CODESdefault values in docs (#3335);remove unused
DEPTH_STATSoption from docs (#3245);
Deprecation removals
Compatibility shims for pre-1.0 Scrapy module names are removed (#3318):
scrapy.commandscrapy.contrib(with all submodules)scrapy.contrib_exp(with all submodules)scrapy.dupefilterscrapy.linkextractorscrapy.projectscrapy.spiderscrapy.spidermanagerscrapy.squeuescrapy.statsscrapy.statscolscrapy.utils.decorator
See Module Relocations for more information, or use suggestions from Scrapy 1.5.x deprecation warnings to update your code.
Other deprecation removals:
Other improvements, cleanups
All Scrapy tests now pass on Windows; Scrapy testing suite is executed in a Windows environment on CI (#3315).
Testing and CI fixes (#3526, #3538, #3308, #3311, #3309, #3305, #3210, #3299)
scrapy.http.cookies.CookieJar.clearaccepts “domain”, “path” and “name” optional arguments (#3231).additional files are included to sdist (#3495);
unneeded .strip() call is removed (#3519);
collections.deque is used to store MiddlewareManager methods instead of a list (#3476)
Scrapy 1.5.2 (2019-01-22)
Security bugfix: Telnet console extension can be easily exploited by rogue websites POSTing content to http://localhost:6023, we haven’t found a way to exploit it from Scrapy, but it is very easy to trick a browser to do so and elevates the risk for local development environment.
The fix is backward incompatible, it enables telnet user-password authentication by default with a random generated password. If you can’t upgrade right away, please consider setting
TELNETCONSOLE_PORTout of its default value.See telnet console documentation for more info
Backport CI build failure under GCE environment due to boto import error.
Scrapy 1.5.1 (2018-07-12)
This is a maintenance release with important bug fixes, but no new features:
O(N^2)gzip decompression issue which affected Python 3 and PyPy is fixed (#3281);skipping of TLS validation errors is improved (#3166);
Ctrl-C handling is fixed in Python 3.5+ (#3096);
documentation improvements (#3058, #3059, #3089, #3123, #3127, #3189, #3224, #3280, #3279, #3201, #3260, #3284, #3298, #3294).
Scrapy 1.5.0 (2017-12-29)
This release brings small new features and improvements across the codebase. Some highlights:
Google Cloud Storage is supported in FilesPipeline and ImagesPipeline.
Crawling with proxy servers becomes more efficient, as connections to proxies can be reused now.
Warnings, exception and logging messages are improved to make debugging easier.
scrapy parsecommand now allows to set custom request meta via--metaargument.Compatibility with Python 3.6, PyPy and PyPy3 is improved; PyPy and PyPy3 are now supported officially, by running tests on CI.
Better default handling of HTTP 308, 522 and 524 status codes.
Documentation is improved, as usual.
Backward Incompatible Changes
Scrapy 1.5 drops support for Python 3.3.
Default Scrapy User-Agent now uses https link to scrapy.org (#2983). This is technically backward-incompatible; override
USER_AGENTif you relied on old value.Logging of settings overridden by
custom_settingsis fixed; this is technically backward-incompatible because the logger changes from[scrapy.utils.log]to[scrapy.crawler]. If you’re parsing Scrapy logs, please update your log parsers (#1343).LinkExtractor now ignores
m4vextension by default, this is change in behavior.522 and 524 status codes are added to
RETRY_HTTP_CODES(#2851)
New features
Support
<link>tags inResponse.follow(#2785)Support for
ptpythonREPL (#2654)Google Cloud Storage support for FilesPipeline and ImagesPipeline (#2923).
New
--metaoption of the “scrapy parse” command allows to pass additional request.meta (#2883)Populate spider variable when using
shell.inspect_response(#2812)Handle HTTP 308 Permanent Redirect (#2844)
Add 522 and 524 to
RETRY_HTTP_CODES(#2851)Log versions information at startup (#2857)
scrapy.mail.MailSendernow works in Python 3 (it requires Twisted 17.9.0)Connections to proxy servers are reused (#2743)
Add template for a downloader middleware (#2755)
Explicit message for NotImplementedError when parse callback not defined (#2831)
CrawlerProcess got an option to disable installation of root log handler (#2921)
LinkExtractor now ignores
m4vextension by defaultBetter log messages for responses over
DOWNLOAD_WARNSIZEandDOWNLOAD_MAXSIZElimits (#2927)Show warning when a URL is put to
Spider.allowed_domainsinstead of a domain (#2250).
Bug fixes
Fix logging of settings overridden by
custom_settings; this is technically backward-incompatible because the logger changes from[scrapy.utils.log]to[scrapy.crawler], so please update your log parsers if needed (#1343)Default Scrapy User-Agent now uses https link to scrapy.org (#2983). This is technically backward-incompatible; override
USER_AGENTif you relied on old value.Fix PyPy and PyPy3 test failures, support them officially (#2793, #2935, #2990, #3050, #2213, #3048)
Fix DNS resolver when
DNSCACHE_ENABLED=False(#2811)Add
cryptographyfor Debian Jessie tox test env (#2848)Add verification to check if Request callback is callable (#2766)
Port
extras/qpsclient.pyto Python 3 (#2849)Use getfullargspec under the scenes for Python 3 to stop DeprecationWarning (#2862)
Update deprecated test aliases (#2876)
Fix
SitemapSpidersupport for alternate links (#2853)
Docs
Added missing bullet point for the
AUTOTHROTTLE_TARGET_CONCURRENCYsetting. (#2756)Update Contributing docs, document new support channels (#2762, #3038)
Include references to Scrapy subreddit in the docs
Fix broken links; use
https://for external links (#2978, #2982, #2958)Document CloseSpider extension better (#2759)
Use
pymongo.collection.Collection.insert_one()in MongoDB example (#2781)Clarify
CSVFeedSpider.headersdocumentation (#2826)Document
DontCloseSpiderexception and clarifyspider_idle(#2791)Update “Releases” section in README (#2764)
Fix rst syntax in
DOWNLOAD_FAIL_ON_DATALOSSdocs (#2763)Small fix in description of startproject arguments (#2866)
Clarify data types in Response.body docs (#2922)
Add a note about
request.meta['depth']to DepthMiddleware docs (#2374)Add a note about
request.meta['dont_merge_cookies']to CookiesMiddleware docs (#2999)A better example of ItemExporters usage (#2989)
Document
from_crawlermethods for spider and downloader middlewares (#3019)
Scrapy 1.4.0 (2017-05-18)
Scrapy 1.4 does not bring that many breathtaking new features but quite a few handy improvements nonetheless.
Scrapy now supports anonymous FTP sessions with customizable user and
password via the new FTP_USER and FTP_PASSWORD settings.
And if you’re using Twisted version 17.1.0 or above, FTP is now available
with Python 3.
There’s a new response.follow method
for creating requests; it is now a recommended way to create Requests
in Scrapy spiders. This method makes it easier to write correct
spiders; response.follow has several advantages over creating
scrapy.Request objects directly:
it handles relative URLs;
it works properly with non-ascii URLs on non-UTF8 pages;
in addition to absolute and relative URLs it supports Selectors; for
<a>elements it can also extract their href values.
For example, instead of this:
for href in response.css('li.page a::attr(href)').extract():
url = response.urljoin(href)
yield scrapy.Request(url, self.parse, encoding=response.encoding)
One can now write this:
for a in response.css('li.page a'):
yield response.follow(a, self.parse)
Link extractors are also improved. They work similarly to what a regular
modern browser would do: leading and trailing whitespace are removed
from attributes (think href=" http://example.com") when building
Link objects. This whitespace-stripping also happens for action
attributes with FormRequest.
Please also note that link extractors do not canonicalize URLs by default anymore. This was puzzling users every now and then, and it’s not what browsers do in fact, so we removed that extra transformation on extracted links.
For those of you wanting more control on the Referer: header that Scrapy
sends when following links, you can set your own Referrer Policy.
Prior to Scrapy 1.4, the default RefererMiddleware would simply and
blindly set it to the URL of the response that generated the HTTP request
(which could leak information on your URL seeds).
By default, Scrapy now behaves much like your regular browser does.
And this policy is fully customizable with W3C standard values
(or with something really custom of your own if you wish).
See REFERRER_POLICY for details.
To make Scrapy spiders easier to debug, Scrapy logs more stats by default in 1.4: memory usage stats, detailed retry stats, detailed HTTP error code stats. A similar change is that HTTP cache path is also visible in logs now.
Last but not least, Scrapy now has the option to make JSON and XML items
more human-readable, with newlines between items and even custom indenting
offset, using the new FEED_EXPORT_INDENT setting.
Enjoy! (Or read on for the rest of changes in this release.)
Deprecations and Backward Incompatible Changes
Default to
canonicalize=Falseinscrapy.linkextractors.LinkExtractor(#2537, fixes #1941 and #1982): warning, this is technically backward-incompatibleEnable memusage extension by default (#2539, fixes #2187); this is technically backward-incompatible so please check if you have any non-default
MEMUSAGE_***options set.EDITORenvironment variable now takes precedence overEDITORoption defined in settings.py (#1829); Scrapy default settings no longer depend on environment variables. This is technically a backward incompatible change.Spider.make_requests_from_urlis deprecated (#1728, fixes #1495).
New Features
Support brotli-compressed content; requires optional brotlipy (#2535)
New response.follow shortcut for creating requests (#1940)
Added
flagsargument and attribute toRequestobjects (#2047)Support Anonymous FTP (#2342)
Added
retry/count,retry/max_reachedandretry/reason_count/<reason>stats toRetryMiddleware(#2543)Added
httperror/response_ignored_countandhttperror/response_ignored_status_count/<status>stats toHttpErrorMiddleware(#2566)Customizable
Referrer policyinRefererMiddleware(#2306)Log cache directory when HTTP Cache is used (#2611, fixes #2604)
Warn users when project contains duplicate spider names (fixes #2181)
scrapy.utils.datatypes.CaselessDictnow acceptsMappinginstances and not only dicts (#2646)Media downloads, with
FilesPipelineorImagesPipeline, can now optionally handle HTTP redirects using the newMEDIA_ALLOW_REDIRECTSsetting (#2616, fixes #2004)Accept non-complete responses from websites using a new
DOWNLOAD_FAIL_ON_DATALOSSsetting (#2590, fixes #2586)Optional pretty-printing of JSON and XML items via
FEED_EXPORT_INDENTsetting (#2456, fixes #1327)Allow dropping fields in
FormRequest.from_responseformdata whenNonevalue is passed (#667)Per-request retry times with the new
max_retry_timesmeta key (#2642)python -m scrapyas a more explicit alternative toscrapycommand (#2740)
Bug fixes
LinkExtractor now strips leading and trailing whitespaces from attributes (#2547, fixes #1614)
Properly handle whitespaces in action attribute in
FormRequest(#2548)Buffer CONNECT response bytes from proxy until all HTTP headers are received (#2495, fixes #2491)
FTP downloader now works on Python 3, provided you use Twisted>=17.1 (#2599)
Use body to choose response type after decompressing content (#2393, fixes #2145)
Always decompress
Content-Encoding: gzipatHttpCompressionMiddlewarestage (#2391)Respect custom log level in
Spider.custom_settings(#2581, fixes #1612)‘make htmlview’ fix for macOS (#2661)
Remove “commands” from the command list (#2695)
Fix duplicate Content-Length header for POST requests with empty body (#2677)
Properly cancel large downloads, i.e. above
DOWNLOAD_MAXSIZE(#1616)ImagesPipeline: fixed processing of transparent PNG images with palette (#2675)
Cleanups & Refactoring
Tests: remove temp files and folders (#2570), fixed ProjectUtilsTest on macOS (#2569), use portable pypy for Linux on Travis CI (#2710)
Separate building request from
_requests_to_followin CrawlSpider (#2562)Remove “Python 3 progress” badge (#2567)
Add a couple more lines to
.gitignore(#2557)Remove bumpversion prerelease configuration (#2159)
Add codecov.yml file (#2750)
Set context factory implementation based on Twisted version (#2577, fixes #2560)
Add omitted
selfarguments in default project middleware template (#2595)Remove redundant
slot.add_request()call in ExecutionEngine (#2617)Catch more specific
os.errorexception inscrapy.pipelines.files.FSFilesStore(#2644)Change “localhost” test server certificate (#2720)
Remove unused
MEMUSAGE_REPORTsetting (#2576)
Documentation
Mention issue with
FormRequest.from_response()due to bug in lxml (#2572)Use single quotes uniformly in templates (#2596)
Document
ftp_userandftp_passwordmeta keys (#2587)Removed section on deprecated
contrib/(#2636)Recommend Anaconda when installing Scrapy on Windows (#2477, fixes #2475)
FAQ: rewrite note on Python 3 support on Windows (#2690)
Rearrange selector sections (#2705)
Remove
__nonzero__fromSelectorListdocs (#2683)Mention how to disable request filtering in documentation of
DUPEFILTER_CLASSsetting (#2714)Add sphinx_rtd_theme to docs setup readme (#2668)
Open file in text mode in JSON item writer example (#2729)
Clarify
allowed_domainsexample (#2670)
Scrapy 1.3.3 (2017-03-10)
Bug fixes
Make
SpiderLoaderraiseImportErroragain by default for missing dependencies and wrongSPIDER_MODULES. These exceptions were silenced as warnings since 1.3.0. A new setting is introduced to toggle between warning or exception if needed ; seeSPIDER_LOADER_WARN_ONLYfor details.
Scrapy 1.3.2 (2017-02-13)
Bug fixes
Scrapy 1.3.1 (2017-02-08)
New features
Support
'True'and'False'string values for boolean settings (#2519); you can now do something likescrapy crawl myspider -s REDIRECT_ENABLED=False.Support kwargs with
response.xpath()to use XPath variables and ad-hoc namespaces declarations ; this requires at least Parsel v1.1 (#2457).Add support for Python 3.6 (#2485).
Run tests on PyPy (warning: some tests still fail, so PyPy is not supported yet).
Bug fixes
Enforce
DNS_TIMEOUTsetting (#2496).Fix tests regarding
*_EXPIRES settingswith Files/Images pipelines (#2460).Fix name of generated pipeline class when using basic project template (#2466).
Fix
scrapy.Iteminheritance on Python 3.6 (#2511).Enforce numeric values for components order in
SPIDER_MIDDLEWARES,DOWNLOADER_MIDDLEWARES,EXTENSIONSandSPIDER_CONTRACTS(#2420).
Documentation
Reword Code of Conduct section and upgrade to Contributor Covenant v1.4 (#2469).
Clarify that passing spider arguments converts them to spider attributes (#2483).
Document
formidargument onFormRequest.from_response()(#2497).Add .rst extension to README files (#2507).
Mention LevelDB cache storage backend (#2525).
Use
yieldin sample callback code (#2533).Add note about HTML entities decoding with
.re()/.re_first()(#1704).
Cleanups
Scrapy 1.3.0 (2016-12-21)
This release comes rather soon after 1.2.2 for one main reason:
it was found out that releases since 0.18 up to 1.2.2 (included) use
some backported code from Twisted (scrapy.xlib.tx.*),
even if newer Twisted modules are available.
Scrapy now uses twisted.web.client and twisted.internet.endpoints directly.
(See also cleanups below.)
As it is a major change, we wanted to get the bug fix out quickly while not breaking any projects using the 1.2 series.
New Features
MailSendernow accepts single strings as values fortoandccarguments (#2272)scrapy fetch url,scrapy shell urlandfetch(url)inside Scrapy shell now follow HTTP redirections by default (#2290); Seefetchandshellfor details.HttpErrorMiddlewarenow logs errors withINFOlevel instead ofDEBUG; this is technically backward incompatible so please check your log parsers.By default, logger names now use a long-form path, e.g.
[scrapy.extensions.logstats], instead of the shorter “top-level” variant of prior releases (e.g.[scrapy]); this is backward incompatible if you have log parsers expecting the short logger name part. You can switch back to short logger names usingLOG_SHORT_NAMESset toTrue.
Dependencies & Cleanups
Scrapy now requires Twisted >= 13.1 which is the case for many Linux distributions already.
As a consequence, we got rid of
scrapy.xlib.tx.*modules, which copied some of Twisted code for users stuck with an “old” Twisted versionChunkedTransferMiddlewareis deprecated and removed from the default downloader middlewares.
Scrapy 1.2.3 (2017-03-03)
Packaging fix: disallow unsupported Twisted versions in setup.py
Scrapy 1.2.2 (2016-12-06)
Bug fixes
Documentation
Other changes
Advertize conda-forge as Scrapy’s official conda channel (#2387)
More helpful error messages when trying to use
.css()or.xpath()on non-Text Responses (#2264)startprojectcommand now generates a samplemiddlewares.pyfile (#2335)Add more dependencies’ version info in
scrapy versionverbose output (#2404)Remove all
*.pycfiles from source distribution (#2386)
Scrapy 1.2.1 (2016-10-21)
Bug fixes
Documentation
Other changes
Removed
www.fromstart_urlsin built-in spider templates (#2299).
Scrapy 1.2.0 (2016-10-03)
New Features
New
FEED_EXPORT_ENCODINGsetting to customize the encoding used when writing items to a file. This can be used to turn off\uXXXXescapes in JSON output. This is also useful for those wanting something else than UTF-8 for XML or CSV output (#2034).startprojectcommand now supports an optional destination directory to override the default one based on the project name (#2005).New
SCHEDULER_DEBUGsetting to log requests serialization failures (#1610).JSON encoder now supports serialization of
setinstances (#2058).Interpret
application/json-amazonui-streamingasTextResponse(#1503).scrapyis imported by default when using shell tools (shell, inspect_response) (#2248).
Bug fixes
DefaultRequestHeaders middleware now runs before UserAgent middleware (#2088). Warning: this is technically backward incompatible, though we consider this a bug fix.
HTTP cache extension and plugins that use the
.scrapydata directory now work outside projects (#1581). Warning: this is technically backward incompatible, though we consider this a bug fix.Selectordoes not allow passing bothresponseandtextanymore (#2153).Fixed logging of wrong callback name with
scrapy parse(#2169).Fix for an odd gzip decompression bug (#1606).
Fix for selected callbacks when using
CrawlSpiderwithscrapy parse(#2225).Fix for invalid JSON and XML files when spider yields no items (#872).
Implement
flush()forStreamLoggeravoiding a warning in logs (#2125).
Refactoring
Tests & Requirements
Scrapy’s new requirements baseline is Debian 8 “Jessie”. It was previously Ubuntu 12.04 Precise. What this means in practice is that we run continuous integration tests with these (main) packages versions at a minimum: Twisted 14.0, pyOpenSSL 0.14, lxml 3.4.
Scrapy may very well work with older versions of these packages (the code base still has switches for older Twisted versions for example) but it is not guaranteed (because it’s not tested anymore).
Documentation
Download stats badge removed from README (#2160).
New Scrapy architecture diagram (#2165).
Updated
Responseparameters documentation (#2197).Reworded misleading
RANDOMIZE_DOWNLOAD_DELAYdescription (#2190).Add StackOverflow as a support channel (#2257).
Scrapy 1.1.4 (2017-03-03)
Packaging fix: disallow unsupported Twisted versions in setup.py
Scrapy 1.1.3 (2016-09-22)
Bug fixes
Documentation
Scrapy 1.1.2 (2016-08-18)
Bug fixes
Introduce a missing
IMAGES_STORE_S3_ACLsetting to override the default ACL policy inImagesPipelinewhen uploading images to S3 (note that default ACL policy is “private” – instead of “public-read” – since Scrapy 1.1.0)IMAGES_EXPIRESdefault value set back to 90 (the regression was introduced in 1.1.1)
Scrapy 1.1.1 (2016-07-13)
Bug fixes
Add “Host” header in CONNECT requests to HTTPS proxies (#2069)
Use response
bodywhen choosing response class (#2001, fixes #2000)Do not fail on canonicalizing URLs with wrong netlocs (#2038, fixes #2010)
a few fixes for
HttpCompressionMiddleware(andSitemapSpider):Catch (and ignore with a warning) exception when verifying certificate against IP-address hosts (#2094, fixes #2092)
Make
FilesPipelineandImagesPipelinebackward compatible again regarding the use of legacy class attributes for customization (#1989, fixes #1985)
New features
Documentation
FEED_TEMPDIRsetting at lexicographical position (commit 9b3c72c)Use idiomatic
.extract_first()in overview (#1994)Update years in copyright notice (commit c2c8036)
Add information and example on errbacks (#1995)
Use “url” variable in downloader middleware example (#2015)
New FAQ entry on using BeautifulSoup in spider callbacks (#2048)
Add notes about Scrapy not working on Windows with Python 3 (#2060)
Encourage complete titles in pull requests (#2026)
Tests
Upgrade py.test requirement on Travis CI and Pin pytest-cov to 2.2.1 (#2095)
Scrapy 1.1.0 (2016-05-11)
This 1.1 release brings a lot of interesting features and bug fixes:
Scrapy 1.1 has beta Python 3 support (requires Twisted >= 15.5). See Beta Python 3 Support for more details and some limitations.
Hot new features:
Item loaders now support nested loaders (#1467).
Added setting
AUTOTHROTTLE_TARGET_CONCURRENCYand improved AutoThrottle docs (#1324).Added
response.textto get body as unicode (#1730).Anonymous S3 connections (#1358).
Deferreds in downloader middlewares (#1473). This enables better robots.txt handling (#1471).
HTTP caching now follows RFC2616 more closely, added settings
HTTPCACHE_ALWAYS_STOREandHTTPCACHE_IGNORE_RESPONSE_CACHE_CONTROLS(#1151).Selectors were extracted to the parsel library (#1409). This means you can use Scrapy Selectors without Scrapy and also upgrade the selectors engine without needing to upgrade Scrapy.
HTTPS downloader now does TLS protocol negotiation by default, instead of forcing TLS 1.0. You can also set the SSL/TLS method using the new
DOWNLOADER_CLIENT_TLS_METHODsetting.
These bug fixes may require your attention:
Don’t retry bad requests (HTTP 400) by default (#1289). If you need the old behavior, add
400toRETRY_HTTP_CODES.Fix shell files argument handling (#1710, #1550). If you try
scrapy shell index.htmlit will try to load the URLhttp://index.html, usescrapy shell ./index.htmlto load a local file.Robots.txt compliance is now enabled by default for newly-created projects (#1724). Scrapy will also wait for robots.txt to be downloaded before proceeding with the crawl (#1735). If you want to disable this behavior, update
ROBOTSTXT_OBEYinsettings.pyfile after creating a new project.Exporters now work on unicode, instead of bytes by default (#1080). If you use
PythonItemExporter, you may want to update your code to disable binary mode which is now deprecated.Accept XML node names containing dots as valid (#1533).
When uploading files or images to S3 (with
FilesPipelineorImagesPipeline), the default ACL policy is now “private” instead of “public” Warning: backward incompatible!. You can useFILES_STORE_S3_ACLto change it.We’ve reimplemented
canonicalize_url()for more correct output, especially for URLs with non-ASCII characters (#1947). This could change link extractors output compared to previous Scrapy versions. This may also invalidate some cache entries you could still have from pre-1.1 runs. Warning: backward incompatible!.
Keep reading for more details on other improvements and bug fixes.
Beta Python 3 Support
We have been hard at work to make Scrapy run on Python 3. As a result, now you can run spiders on Python 3.3, 3.4 and 3.5 (Twisted >= 15.5 required). Some features are still missing (and some may never be ported).
Almost all builtin extensions/middlewares are expected to work. However, we are aware of some limitations in Python 3:
Scrapy does not work on Windows with Python 3
Sending emails is not supported
FTP download handler is not supported
Telnet console is not supported
Additional New Features and Enhancements
Scrapy now has a Code of Conduct (#1681).
Command line tool now has completion for zsh (#934).
Improvements to
scrapy shell:Added
MEMUSAGE_CHECK_INTERVAL_SECONDSsetting to change default check interval (#1282).Download handlers are now lazy-loaded on first request using their scheme (#1390, #1421).
HTTPS download handlers do not force TLS 1.0 anymore; instead, OpenSSL’s
SSLv23_method()/TLS_method()is used allowing to try negotiating with the remote hosts the highest TLS protocol version it can (#1794, #1629).RedirectMiddlewarenow skips the status codes fromhandle_httpstatus_liston spider attribute or inRequest’smetakey (#1334, #1364, #1447).Form submission:
Dict-like settings now have per-key priorities (#1135, #1149 and #1586).
Sending non-ASCII emails (#1662)
CloseSpiderandSpiderStateextensions now get disabled if no relevant setting is set (#1723, #1725).Added method
ExecutionEngine.close(#1423).Added method
CrawlerRunner.create_crawler(#1528).Scheduler priority queue can now be customized via
SCHEDULER_PRIORITY_QUEUE(#1822)..ppslinks are now ignored by default in link extractors (#1835).temporary data folder for FTP and S3 feed storages can be customized using a new
FEED_TEMPDIRsetting (#1847).FilesPipelineandImagesPipelinesettings are now instance attributes instead of class attributes, enabling spider-specific behaviors (#1891).JsonItemExporternow formats opening and closing square brackets on their own line (first and last lines of output file) (#1950).If available,
botocoreis used forS3FeedStorage,S3DownloadHandlerandS3FilesStore(#1761, #1883).Tons of documentation updates and related fixes (#1291, #1302, #1335, #1683, #1660, #1642, #1721, #1727, #1879).
Other refactoring, optimizations and cleanup (#1476, #1481, #1477, #1315, #1290, #1750, #1881).
Deprecations and Removals
Added
to_bytesandto_unicode, deprecatedstr_to_unicodeandunicode_to_strfunctions (#778).binary_is_textis introduced, to replace use ofisbinarytext(but with inverse return value) (#1851)The
optional_featuresset has been removed (#1359).The
--lsprofcommand line option has been removed (#1689). Warning: backward incompatible, but doesn’t break user code.The following datatypes were deprecated (#1720):
scrapy.utils.datatypes.MultiValueDictKeyErrorscrapy.utils.datatypes.MultiValueDictscrapy.utils.datatypes.SiteNode
The previously bundled
scrapy.xlib.pydispatchlibrary was deprecated and replaced by pydispatcher.
Relocations
telnetconsolewas relocated toextensions/(#1524).Note: telnet is not enabled on Python 3 (https://github.com/scrapy/scrapy/pull/1524#issuecomment-146985595)
Bugfixes
Scrapy does not retry requests that got a
HTTP 400 Bad Requestresponse anymore (#1289). Warning: backward incompatible!Support empty password for http_proxy config (#1274).
Interpret
application/x-jsonasTextResponse(#1333).Support link rel attribute with multiple values (#1201).
Fixed
scrapy.FormRequest.from_responsewhen there is a<base>tag (#1564).Fixed
TEMPLATES_DIRhandling (#1575).Makes
_monkeypatchesmore robust (#1634).Fixed bug on
XMLItemExporterwith non-string fields in items (#1738).Fixed startproject command in macOS (#1635).
Fixed
PythonItemExporterand CSVExporter for non-string item types (#1737).Various logging related fixes (#1294, #1419, #1263, #1624, #1654, #1722, #1726 and #1303).
Fixed bug in
utils.template.render_templatefile()(#1212).sitemaps extraction from
robots.txtis now case-insensitive (#1902).HTTPS+CONNECT tunnels could get mixed up when using multiple proxies to same remote host (#1912).
Scrapy 1.0.7 (2017-03-03)
Packaging fix: disallow unsupported Twisted versions in setup.py
Scrapy 1.0.6 (2016-05-04)
Scrapy 1.0.5 (2016-02-04)
FIX: [Backport] Ignore bogus links in LinkExtractors (fixes #907, commit 108195e)
TST: Changed buildbot makefile to use ‘pytest’ (commit 1f3d90a)
DOC: Fixed typos in tutorial and media-pipeline (commit 808a9ea and commit 803bd87)
DOC: Add AjaxCrawlMiddleware to DOWNLOADER_MIDDLEWARES_BASE in settings docs (commit aa94121)
Scrapy 1.0.4 (2015-12-30)
Ignoring xlib/tx folder, depending on Twisted version. (commit 7dfa979)
Run on new travis-ci infra (commit 6e42f0b)
Spelling fixes (commit 823a1cc)
escape nodename in xmliter regex (commit da3c155)
test xml nodename with dots (commit 4418fc3)
TST don’t use broken Pillow version in tests (commit a55078c)
disable log on version command. closes #1426 (commit 86fc330)
disable log on startproject command (commit db4c9fe)
Add PyPI download stats badge (commit df2b944)
don’t run tests twice on Travis if a PR is made from a scrapy/scrapy branch (commit a83ab41)
Add Python 3 porting status badge to the README (commit 73ac80d)
fixed RFPDupeFilter persistence (commit 97d080e)
TST a test to show that dupefilter persistence is not working (commit 97f2fb3)
explicit close file on file:// scheme handler (commit d9b4850)
Disable dupefilter in shell (commit c0d0734)
DOC: Add captions to toctrees which appear in sidebar (commit aa239ad)
DOC Removed pywin32 from install instructions as it’s already declared as dependency. (commit 10eb400)
Added installation notes about using Conda for Windows and other OSes. (commit 1c3600a)
Fixed minor grammar issues. (commit 7f4ddd5)
fixed a typo in the documentation. (commit b71f677)
Version 1 now exists (commit 5456c0e)
fix another invalid xpath error (commit 0a1366e)
fix ValueError: Invalid XPath: //div/[id=”not-exists”]/text() on selectors.rst (commit ca8d60f)
Typos corrections (commit 7067117)
fix typos in downloader-middleware.rst and exceptions.rst, middlware -> middleware (commit 32f115c)
Add note to Ubuntu install section about Debian compatibility (commit 23fda69)
Replace alternative macOS install workaround with virtualenv (commit 98b63ee)
Reference Homebrew’s homepage for installation instructions (commit 1925db1)
Add oldest supported tox version to contributing docs (commit 5d10d6d)
Note in install docs about pip being already included in python>=2.7.9 (commit 85c980e)
Add non-python dependencies to Ubuntu install section in the docs (commit fbd010d)
Add macOS installation section to docs (commit d8f4cba)
DOC(ENH): specify path to rtd theme explicitly (commit de73b1a)
minor: scrapy.Spider docs grammar (commit 1ddcc7b)
Make common practices sample code match the comments (commit 1b85bcf)
nextcall repetitive calls (heartbeats). (commit 55f7104)
Backport fix compatibility with Twisted 15.4.0 (commit b262411)
pin pytest to 2.7.3 (commit a6535c2)
Merge pull request #1512 from mgedmin/patch-1 (commit 8876111)
Merge pull request #1513 from mgedmin/patch-2 (commit 5d4daf8)
Typo (commit f8d0682)
Fix list formatting (commit 5f83a93)
fix Scrapy squeue tests after recent changes to queuelib (commit 3365c01)
Merge pull request #1475 from rweindl/patch-1 (commit 2d688cd)
Update tutorial.rst (commit fbc1f25)
Merge pull request #1449 from rhoekman/patch-1 (commit 7d6538c)
Small grammatical change (commit 8752294)
Add openssl version to version command (commit 13c45ac)
Scrapy 1.0.3 (2015-08-11)
add service_identity to Scrapy install_requires (commit cbc2501)
Workaround for travis#296 (commit 66af9cd)
Scrapy 1.0.2 (2015-08-06)
Twisted 15.3.0 does not raises PicklingError serializing lambda functions (commit b04dd7d)
Minor method name fix (commit 6f85c7f)
minor: scrapy.Spider grammar and clarity (commit 9c9d2e0)
Put a blurb about support channels in CONTRIBUTING (commit c63882b)
Fixed typos (commit a9ae7b0)
Fix doc reference. (commit 7c8a4fe)
Scrapy 1.0.1 (2015-07-01)
Unquote request path before passing to FTPClient, it already escape paths (commit cc00ad2)
include tests/ to source distribution in MANIFEST.in (commit eca227e)
DOC Fix SelectJmes documentation (commit b8567bc)
DOC Bring Ubuntu and Archlinux outside of Windows subsection (commit 392233f)
DOC remove version suffix from Ubuntu package (commit 5303c66)
DOC Update release date for 1.0 (commit c89fa29)
Scrapy 1.0.0 (2015-06-19)
You will find a lot of new features and bugfixes in this major release. Make sure to check our updated overview to get a glance of some of the changes, along with our brushed tutorial.
Support for returning dictionaries in spiders
Declaring and returning Scrapy Items is no longer necessary to collect the scraped data from your spider, you can now return explicit dictionaries instead.
Classic version
class MyItem(scrapy.Item):
url = scrapy.Field()
class MySpider(scrapy.Spider):
def parse(self, response):
return MyItem(url=response.url)
New version
class MySpider(scrapy.Spider):
def parse(self, response):
return {'url': response.url}
Per-spider settings (GSoC 2014)
Last Google Summer of Code project accomplished an important redesign of the mechanism used for populating settings, introducing explicit priorities to override any given setting. As an extension of that goal, we included a new level of priority for settings that act exclusively for a single spider, allowing them to redefine project settings.
Start using it by defining a custom_settings
class variable in your spider:
class MySpider(scrapy.Spider):
custom_settings = {
"DOWNLOAD_DELAY": 5.0,
"RETRY_ENABLED": False,
}
Read more about settings population: Settings
Python Logging
Scrapy 1.0 has moved away from Twisted logging to support Python built in’s as default logging system. We’re maintaining backward compatibility for most of the old custom interface to call logging functions, but you’ll get warnings to switch to the Python logging API entirely.
Old version
from scrapy import log
log.msg('MESSAGE', log.INFO)
New version
import logging
logging.info('MESSAGE')
Logging with spiders remains the same, but on top of the
log() method you’ll have access to a custom
logger created for the spider to issue log
events:
class MySpider(scrapy.Spider):
def parse(self, response):
self.logger.info('Response received')
Read more in the logging documentation: Logging
Crawler API refactoring (GSoC 2014)
Another milestone for last Google Summer of Code was a refactoring of the internal API, seeking a simpler and easier usage. Check new core interface in: Core API
A common situation where you will face these changes is while running Scrapy from scripts. Here’s a quick example of how to run a Spider manually with the new API:
from scrapy.crawler import CrawlerProcess
process = CrawlerProcess({
'USER_AGENT': 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)'
})
process.crawl(MySpider)
process.start()
Bear in mind this feature is still under development and its API may change until it reaches a stable status.
See more examples for scripts running Scrapy: Common Practices
Module Relocations
There’s been a large rearrangement of modules trying to improve the general
structure of Scrapy. Main changes were separating various subpackages into
new projects and dissolving both scrapy.contrib and scrapy.contrib_exp
into top level packages. Backward compatibility was kept among internal
relocations, while importing deprecated modules expect warnings indicating
their new place.
Full list of relocations
Outsourced packages
Note
These extensions went through some minor changes, e.g. some setting names were changed. Please check the documentation in each new repository to get familiar with the new usage.
Old location |
New location |
|---|---|
scrapy.commands.deploy |
scrapyd-client (See other alternatives here: Deploying Spiders) |
scrapy.contrib.djangoitem |
|
scrapy.webservice |
scrapy.contrib_exp and scrapy.contrib dissolutions
Old location |
New location |
|---|---|
scrapy.contrib_exp.downloadermiddleware.decompression |
scrapy.downloadermiddlewares.decompression |
scrapy.contrib_exp.iterators |
scrapy.utils.iterators |
scrapy.contrib.downloadermiddleware |
scrapy.downloadermiddlewares |
scrapy.contrib.exporter |
scrapy.exporters |
scrapy.contrib.linkextractors |
scrapy.linkextractors |
scrapy.contrib.loader |
scrapy.loader |
scrapy.contrib.loader.processor |
scrapy.loader.processors |
scrapy.contrib.pipeline |
scrapy.pipelines |
scrapy.contrib.spidermiddleware |
scrapy.spidermiddlewares |
scrapy.contrib.spiders |
scrapy.spiders |
|
scrapy.extensions.* |
Plural renames and Modules unification
Old location |
New location |
|---|---|
scrapy.command |
scrapy.commands |
scrapy.dupefilter |
scrapy.dupefilters |
scrapy.linkextractor |
scrapy.linkextractors |
scrapy.spider |
scrapy.spiders |
scrapy.squeue |
scrapy.squeues |
scrapy.statscol |
scrapy.statscollectors |
scrapy.utils.decorator |
scrapy.utils.decorators |
Class renames
Old location |
New location |
|---|---|
scrapy.spidermanager.SpiderManager |
scrapy.spiderloader.SpiderLoader |
Settings renames
Old location |
New location |
|---|---|
SPIDER_MANAGER_CLASS |
SPIDER_LOADER_CLASS |
Changelog
New Features and Enhancements
Python logging (#1060, #1235, #1236, #1240, #1259, #1278, #1286)
Dns cache size and timeout options (#1132)
support namespace prefix in xmliter_lxml (#963)
Reactor threadpool max size setting (#1123)
Allow spiders to return dicts. (#1081)
Add Response.urljoin() helper (#1086)
look in ~/.config/scrapy.cfg for user config (#1098)
handle TLS SNI (#1101)
Added JmesSelect (#1016)
add gzip compression to filesystem http cache backend (#1020)
CSS support in link extractors (#983)
httpcache dont_cache meta #19 #689 (#821)
add signal to be sent when request is dropped by the scheduler (#961)
avoid download large response (#946)
Allow to specify the quotechar in CSVFeedSpider (#882)
Add referer to “Spider error processing” log message (#795)
process robots.txt once (#896)
GSoC Per-spider settings (#854)
Add project name validation (#817)
GSoC API cleanup (#816, #1128, #1147, #1148, #1156, #1185, #1187, #1258, #1268, #1276, #1285, #1284)
Do leveldb compaction for httpcache on closing (#1297)
Deprecations and Removals
Deprecate htmlparser link extractor (#1205)
remove deprecated code from FeedExporter (#1155)
a leftover for.15 compatibility (#925)
drop support for CONCURRENT_REQUESTS_PER_SPIDER (#895)
Drop old engine code (#911)
Deprecate SgmlLinkExtractor (#777)
Relocations
Move exporters/__init__.py to exporters.py (#1242)
rename SpiderManager to SpiderLoader (#1166)
Remove djangoitem (#1177)
remove scrapy deploy command (#1102)
dissolve contrib_exp (#1134)
Deleted bin folder from root, fixes #913 (#914)
Remove jsonrpc based webservice (#859)
Fix backward incompatibility for relocated paths in settings (#1267)
Documentation
CrawlerProcess documentation (#1190)
Favoring web scraping over screen scraping in the descriptions (#1188)
Some improvements for Scrapy tutorial (#1180)
Documenting Files Pipeline together with Images Pipeline (#1150)
deployment docs tweaks (#1164)
Added deployment section covering scrapyd-deploy and shub (#1124)
Adding more settings to project template (#1073)
some improvements to overview page (#1106)
Updated link in docs/topics/architecture.rst (#647)
DOC reorder topics (#1022)
updating list of Request.meta special keys (#1071)
DOC document download_timeout (#898)
DOC simplify extension docs (#893)
Leaks docs (#894)
DOC document from_crawler method for item pipelines (#904)
Spider_error doesn’t support deferreds (#1292)
Corrections & Sphinx related fixes (#1220, #1219, #1196, #1172, #1171, #1169, #1160, #1154, #1127, #1112, #1105, #1041, #1082, #1033, #944, #866, #864, #796, #1260, #1271, #1293, #1298)
Bugfixes
ItemLoader.load_item: iterate over copy of fields (#722)
Fix Unhandled error in Deferred (RobotsTxtMiddleware) (#1131, #1197)
Force to read DOWNLOAD_TIMEOUT as int (#954)
scrapy.utils.misc.load_object should print full traceback (#902)
Fix bug for “.local” host name (#878)
Fix for Enabled extensions, middlewares, pipelines info not printed anymore (#879)
fix dont_merge_cookies bad behaviour when set to false on meta (#846)
Python 3 In Progress Support
disable scrapy.telnet if twisted.conch is not available (#1161)
fix Python 3 syntax errors in ajaxcrawl.py (#1162)
more python3 compatibility changes for urllib (#1121)
assertItemsEqual was renamed to assertCountEqual in Python 3. (#1070)
Import unittest.mock if available. (#1066)
updated deprecated cgi.parse_qsl to use six’s parse_qsl (#909)
Prevent Python 3 port regressions (#830)
PY3: use MutableMapping for python 3 (#810)
PY3: use six.BytesIO and six.moves.cStringIO (#803)
PY3: fix xmlrpclib and email imports (#801)
PY3: use six for robotparser and urlparse (#800)
PY3: use six.iterkeys, six.iteritems, and tempfile (#799)
PY3: fix has_key and use six.moves.configparser (#798)
PY3: use six.moves.cPickle (#797)
PY3 make it possible to run some tests in Python3 (#776)
Tests
remove unnecessary lines from py3-ignores (#1243)
Fix remaining warnings from pytest while collecting tests (#1206)
Add docs build to travis (#1234)
TST don’t collect tests from deprecated modules. (#1165)
install service_identity package in tests to prevent warnings (#1168)
Fix deprecated settings API in tests (#1152)
Add test for webclient with POST method and no body given (#1089)
py3-ignores.txt supports comments (#1044)
modernize some of the asserts (#835)
selector.__repr__ test (#779)
Code refactoring
CSVFeedSpider cleanup: use iterate_spider_output (#1079)
remove unnecessary check from scrapy.utils.spider.iter_spider_output (#1078)
Pydispatch pep8 (#992)
Removed unused ‘load=False’ parameter from walk_modules() (#871)
For consistency, use
job_dirhelper inSpiderStateextension. (#805)rename “sflo” local variables to less cryptic “log_observer” (#775)
Scrapy 0.24.6 (2015-04-20)
encode invalid xpath with unicode_escape under PY2 (commit 07cb3e5)
fix IPython shell scope issue and load IPython user config (commit 2c8e573)
Fix small typo in the docs (commit d694019)
Fix small typo (commit f92fa83)
Converted sel.xpath() calls to response.xpath() in Extracting the data (commit c2c6d15)
Scrapy 0.24.5 (2015-02-25)
Support new _getEndpoint Agent signatures on Twisted 15.0.0 (commit 540b9bc)
DOC a couple more references are fixed (commit b4c454b)
DOC fix a reference (commit e3c1260)
t.i.b.ThreadedResolver is now a new-style class (commit 9e13f42)
S3DownloadHandler: fix auth for requests with quoted paths/query params (commit cdb9a0b)
fixed the variable types in mailsender documentation (commit bb3a848)
Reset items_scraped instead of item_count (commit edb07a4)
Tentative attention message about what document to read for contributions (commit 7ee6f7a)
mitmproxy 0.10.1 needs netlib 0.10.1 too (commit 874fcdd)
pin mitmproxy 0.10.1 as >0.11 does not work with tests (commit c6b21f0)
Test the parse command locally instead of against an external url (commit c3a6628)
Patches Twisted issue while closing the connection pool on HTTPDownloadHandler (commit d0bf957)
Updates documentation on dynamic item classes. (commit eeb589a)
Merge pull request #943 from Lazar-T/patch-3 (commit 5fdab02)
typo (commit b0ae199)
pywin32 is required by Twisted. closes #937 (commit 5cb0cfb)
Update install.rst (commit 781286b)
Merge pull request #928 from Lazar-T/patch-1 (commit b415d04)
comma instead of fullstop (commit 627b9ba)
Merge pull request #885 from jsma/patch-1 (commit de909ad)
Update request-response.rst (commit 3f3263d)
SgmlLinkExtractor - fix for parsing <area> tag with Unicode present (commit 49b40f0)
Scrapy 0.24.4 (2014-08-09)
pem file is used by mockserver and required by scrapy bench (commit 5eddc68b63)
scrapy bench needs scrapy.tests* (commit d6cb999)
Scrapy 0.24.3 (2014-08-09)
no need to waste travis-ci time on py3 for 0.24 (commit 8e080c1)
Update installation docs (commit 1d0c096)
There is a trove classifier for Scrapy framework! (commit 4c701d7)
update other places where w3lib version is mentioned (commit d109c13)
Update w3lib requirement to 1.8.0 (commit 39d2ce5)
Use w3lib.html.replace_entities() (remove_entities() is deprecated) (commit 180d3ad)
set zip_safe=False (commit a51ee8b)
do not ship tests package (commit ee3b371)
scrapy.bat is not needed anymore (commit c3861cf)
Modernize setup.py (commit 362e322)
headers can not handle non-string values (commit 94a5c65)
fix ftp test cases (commit a274a7f)
The sum up of travis-ci builds are taking like 50min to complete (commit ae1e2cc)
Update shell.rst typo (commit e49c96a)
removes weird indentation in the shell results (commit 1ca489d)
improved explanations, clarified blog post as source, added link for XPath string functions in the spec (commit 65c8f05)
renamed UserTimeoutError and ServerTimeouterror #583 (commit 037f6ab)
adding some xpath tips to selectors docs (commit 2d103e0)
fix tests to account for https://github.com/scrapy/w3lib/pull/23 (commit f8d366a)
get_func_args maximum recursion fix #728 (commit 81344ea)
Updated input/output processor example according to #560. (commit f7c4ea8)
Fixed Python syntax in tutorial. (commit db59ed9)
Add test case for tunneling proxy (commit f090260)
Bugfix for leaking Proxy-Authorization header to remote host when using tunneling (commit d8793af)
Extract links from XHTML documents with MIME-Type “application/xml” (commit ed1f376)
Merge pull request #793 from roysc/patch-1 (commit 91a1106)
Fix typo in commands.rst (commit 743e1e2)
better testcase for settings.overrides.setdefault (commit e22daaf)
Using CRLF as line marker according to http 1.1 definition (commit 5ec430b)
Scrapy 0.24.2 (2014-07-08)
Use a mutable mapping to proxy deprecated settings.overrides and settings.defaults attribute (commit e5e8133)
there is not support for python3 yet (commit 3cd6146)
Update python compatible version set to Debian packages (commit fa5d76b)
DOC fix formatting in release notes (commit c6a9e20)
Scrapy 0.24.1 (2014-06-27)
Fix deprecated CrawlerSettings and increase backward compatibility with .defaults attribute (commit 8e3f20a)
Scrapy 0.24.0 (2014-06-26)
Enhancements
Add new lxml based LinkExtractor to replace unmaintained SgmlLinkExtractor (#559, #761, #763)
Cleanup settings API - part of per-spider settings GSoC project (#737)
Telnet console now binds to 127.0.0.1 by default (#699)
Disable smart strings in lxml XPath evaluations (#535)
Restore filesystem based cache as default for http cache middleware (#541, #500, #571)
Expose current crawler in Scrapy shell (#557)
Improve testsuite comparing CSV and XML exporters (#570)
New
offsite/filteredandoffsite/domainsstats (#566)Support process_links as generator in CrawlSpider (#555)
Verbose logging and new stats counters for DupeFilter (#553)
Add a mimetype parameter to
MailSender.send()(#602)Generalize file pipeline log messages (#622)
Replace unencodeable codepoints with html entities in SGMLLinkExtractor (#565)
Converted SEP documents to rst format (#629, #630, #638, #632, #636, #640, #635, #634, #639, #637, #631, #633, #641, #642)
Tests and docs for clickdata’s nr index in FormRequest (#646, #645)
Allow to disable a downloader handler just like any other component (#650)
Log when a request is discarded after too many redirections (#654)
Log error responses if they are not handled by spider callbacks (#612, #656)
Run pypy tests using latest pypi from ppa (#674)
Run test suite using pytest instead of trial (#679)
Build docs and check for dead links in tox environment (#687)
Infer exporter’s output format from filename extensions (#546, #659, #760)
Support case-insensitive domains in
url_is_from_any_domain()(#693)Remove pep8 warnings in project and spider templates (#698)
Tests and docs for
request_fingerprintfunction (#597)Update SEP-19 for GSoC project
per-spider settings(#705)Set exit code to non-zero when contracts fails (#727)
Add a setting to control what class is instantiated as Downloader component (#738)
Pass response in
item_droppedsignal (#724)Document
spider.closed()shortcut (#719)Document
request_scheduledsignal (#746)Add a note about reporting security issues (#697)
Sort spider list output of
scrapy listcommand (#742)Multiple documentation enhancements and fixes (#575, #587, #590, #596, #610, #617, #618, #627, #613, #643, #654, #675, #663, #711, #714)
Bugfixes
Encode unicode URL value when creating Links in RegexLinkExtractor (#561)
Ignore None values in ItemLoader processors (#556)
Fix link text when there is an inner tag in SGMLLinkExtractor and HtmlParserLinkExtractor (#485, #574)
Fix wrong checks on subclassing of deprecated classes (#581, #584)
Handle errors caused by inspect.stack() failures (#582)
Fix dynamic itemclass example usage of type() (#603)
Use lucasdemarchi/codespell to fix typos (#628)
Fix default value of attrs argument in SgmlLinkExtractor to be tuple (#661)
Fix XXE flaw in sitemap reader (#676)
Fix engine to support filtered start requests (#707)
Fix offsite middleware case on urls with no hostnames (#745)
Testsuite doesn’t require PIL anymore (#585)
Scrapy 0.22.2 (released 2014-02-14)
fix a reference to unexistent engine.slots. closes #593 (commit 13c099a)
downloaderMW doc typo (spiderMW doc copy remnant) (commit 8ae11bf)
Correct typos (commit 1346037)
Scrapy 0.22.1 (released 2014-02-08)
localhost666 can resolve under certain circumstances (commit 2ec2279)
test inspect.stack failure (commit cc3eda3)
Handle cases when inspect.stack() fails (commit 8cb44f9)
Fix wrong checks on subclassing of deprecated classes. closes #581 (commit 46d98d6)
Docs: 4-space indent for final spider example (commit 13846de)
Fix HtmlParserLinkExtractor and tests after #485 merge (commit 368a946)
BaseSgmlLinkExtractor: Fixed the missing space when the link has an inner tag (commit b566388)
BaseSgmlLinkExtractor: Added unit test of a link with an inner tag (commit c1cb418)
BaseSgmlLinkExtractor: Fixed unknown_endtag() so that it only set current_link=None when the end tag match the opening tag (commit 7e4d627)
Fix tests for Travis-CI build (commit 76c7e20)
replace unencodeable codepoints with html entities. fixes #562 and #285 (commit 5f87b17)
RegexLinkExtractor: encode URL unicode value when creating Links (commit d0ee545)
Updated the tutorial crawl output with latest output. (commit 8da65de)
Updated shell docs with the crawler reference and fixed the actual shell output. (commit 875b9ab)
PEP8 minor edits. (commit f89efaf)
Expose current crawler in the Scrapy shell. (commit 5349cec)
Unused re import and PEP8 minor edits. (commit 387f414)
Ignore None’s values when using the ItemLoader. (commit 0632546)
DOC Fixed HTTPCACHE_STORAGE typo in the default value which is now Filesystem instead Dbm. (commit cde9a8c)
show Ubuntu setup instructions as literal code (commit fb5c9c5)
Update Ubuntu installation instructions (commit 70fb105)
Merge pull request #550 from stray-leone/patch-1 (commit 6f70b6a)
modify the version of Scrapy Ubuntu package (commit 725900d)
fix 0.22.0 release date (commit af0219a)
fix typos in news.rst and remove (not released yet) header (commit b7f58f4)
Scrapy 0.22.0 (released 2014-01-17)
Enhancements
[Backward incompatible] Switched HTTPCacheMiddleware backend to filesystem (#541) To restore old backend set
HTTPCACHE_STORAGEtoscrapy.contrib.httpcache.DbmCacheStorageAdd a middleware to crawl ajax crawlable pages as defined by google (#343)
Rename scrapy.spider.BaseSpider to scrapy.spider.Spider (#510, #519)
Selectors register EXSLT namespaces by default (#472)
Unify item loaders similar to selectors renaming (#461)
Make
RFPDupeFilterclass easily subclassable (#533)Improve test coverage and forthcoming Python 3 support (#525)
Promote startup info on settings and middleware to INFO level (#520)
Allow running individual tests via tox (#503)
Update extensions ignored by link extractors (#498)
Add middleware methods to get files/images/thumbs paths (#490)
Improve offsite middleware tests (#478)
Add a way to skip default Referer header set by RefererMiddleware (#475)
Do not send
x-gzipin defaultAccept-Encodingheader (#469)Support defining http error handling using settings (#466)
Use modern python idioms wherever you find legacies (#497)
Improve and correct documentation (#527, #524, #521, #517, #512, #505, #502, #489, #465, #460, #425, #536)
Fixes
Update Selector class imports in CrawlSpider template (#484)
Fix unexistent reference to
engine.slots(#464)Do not try to call
body_as_unicode()on a non-TextResponse instance (#462)Warn when subclassing XPathItemLoader, previously it only warned on instantiation. (#523)
Warn when subclassing XPathSelector, previously it only warned on instantiation. (#537)
Fix overriding url in
FormRequest.from_response()(#507)Fix tests runner under pip 1.5 (#513)
Fix logging error when spider name is unicode (#479)
Scrapy 0.20.2 (released 2013-12-09)
Update CrawlSpider Template with Selector changes (commit 6d1457d)
fix method name in tutorial. closes GH-480 (commit b4fc359
Scrapy 0.20.1 (released 2013-11-28)
include_package_data is required to build wheels from published sources (commit 5ba1ad5)
process_parallel was leaking the failures on its internal deferreds. closes #458 (commit 419a780)
Scrapy 0.20.0 (released 2013-11-08)
Enhancements
Request/Response url/body attributes are now immutable (modifying them had been deprecated for a long time)
ITEM_PIPELINESis now defined as a dict (instead of a list)Sitemap spider can fetch alternate URLs (#360)
Selector.remove_namespaces()now remove namespaces from element’s attributes. (#416)New item exporter using native python types with nesting support (#366)
Tune HTTP1.1 pool size so it matches concurrency defined by settings (commit b43b5f575)
scrapy.mail.MailSender now can connect over TLS or upgrade using STARTTLS (#327)
New FilesPipeline with functionality factored out from ImagesPipeline (#370, #409)
Recommend Pillow instead of PIL for image handling (#317)
Added Debian packages for Ubuntu Quantal and Raring (commit 86230c0)
Mock server (used for tests) can listen for HTTPS requests (#410)
Remove multi spider support from multiple core components (#422, #421, #420, #419, #423, #418)
Travis-CI now tests Scrapy changes against development versions of
w3libandqueuelibpython packages.Add pypy 2.1 to continuous integration tests (commit ecfa7431)
Pylinted, pep8 and removed old-style exceptions from source (#430, #432)
Use importlib for parametric imports (#445)
Handle a regression introduced in Python 2.7.5 that affects XmlItemExporter (#372)
Bugfix crawling shutdown on SIGINT (#450)
Do not submit
resettype inputs in FormRequest.from_response (commit b326b87)Do not silence download errors when request errback raises an exception (commit 684cfc0)
Bugfixes
Fix tests under Django 1.6 (commit b6bed44c)
Lot of bugfixes to retry middleware under disconnections using HTTP 1.1 download handler
Fix inconsistencies among Twisted releases (#406)
Fix invalid variable name in setup.py (#429)
Fix tutorial references (#387)
Improve request-response docs (#391)
Improve django integration docs (#404)
Document
bindaddressrequest meta (commit 37c24e01d7)Improve
Requestclass documentation (#226)
Other
Thanks
Thanks to everyone who contribute to this release!
List of contributors sorted by number of commits:
69 Daniel Graña <dangra@...>
37 Pablo Hoffman <pablo@...>
13 Mikhail Korobov <kmike84@...>
9 Alex Cepoi <alex.cepoi@...>
9 alexanderlukanin13 <alexander.lukanin.13@...>
8 Rolando Espinoza La fuente <darkrho@...>
8 Lukasz Biedrycki <lukasz.biedrycki@...>
6 Nicolas Ramirez <nramirez.uy@...>
3 Paul Tremberth <paul.tremberth@...>
2 Martin Olveyra <molveyra@...>
2 Stefan <misc@...>
2 Rolando Espinoza <darkrho@...>
2 Loren Davie <loren@...>
2 irgmedeiros <irgmedeiros@...>
1 Stefan Koch <taikano@...>
1 Stefan <cct@...>
1 scraperdragon <dragon@...>
1 Kumara Tharmalingam <ktharmal@...>
1 Francesco Piccinno <stack.box@...>
1 Marcos Campal <duendex@...>
1 Dragon Dave <dragon@...>
1 Capi Etheriel <barraponto@...>
1 cacovsky <amarquesferraz@...>
1 Berend Iwema <berend@...>
Scrapy 0.18.4 (released 2013-10-10)
IPython refuses to update the namespace. fix #396 (commit 3d32c4f)
Fix AlreadyCalledError replacing a request in shell command. closes #407 (commit b1d8919)
Fix
start_requests()laziness and early hangs (commit 89faf52)
Scrapy 0.18.3 (released 2013-10-03)
fix regression on lazy evaluation of start requests (commit 12693a5)
forms: do not submit reset inputs (commit e429f63)
increase unittest timeouts to decrease travis false positive failures (commit 912202e)
backport master fixes to json exporter (commit cfc2d46)
Fix permission and set umask before generating sdist tarball (commit 06149e0)
Scrapy 0.18.2 (released 2013-09-03)
Backport
scrapy checkcommand fixes and backward compatible multi crawler process(#339)
Scrapy 0.18.1 (released 2013-08-27)
remove extra import added by cherry picked changes (commit d20304e)
fix crawling tests under twisted pre 11.0.0 (commit 1994f38)
py26 can not format zero length fields {} (commit abf756f)
test PotentiaDataLoss errors on unbound responses (commit b15470d)
Treat responses without content-length or Transfer-Encoding as good responses (commit c4bf324)
do no include ResponseFailed if http11 handler is not enabled (commit 6cbe684)
New HTTP client wraps connection lost in ResponseFailed exception. fix #373 (commit 1a20bba)
limit travis-ci build matrix (commit 3b01bb8)
Merge pull request #375 from peterarenot/patch-1 (commit fa766d7)
Fixed so it refers to the correct folder (commit 3283809)
added Quantal & Raring to support Ubuntu releases (commit 1411923)
fix retry middleware which didn’t retry certain connection errors after the upgrade to http1 client, closes GH-373 (commit bb35ed0)
fix XmlItemExporter in Python 2.7.4 and 2.7.5 (commit de3e451)
minor updates to 0.18 release notes (commit c45e5f1)
fix contributors list format (commit 0b60031)
Scrapy 0.18.0 (released 2013-08-09)
Lot of improvements to testsuite run using Tox, including a way to test on pypi
Handle GET parameters for AJAX crawlable urls (commit 3fe2a32)
Use lxml recover option to parse sitemaps (#347)
Bugfix cookie merging by hostname and not by netloc (#352)
Support disabling
HttpCompressionMiddlewareusing a flag setting (#359)Support xml namespaces using
iternodesparser inXMLFeedSpider(#12)Support
dont_cacherequest meta flag (#19)Bugfix
scrapy.utils.gz.gunzipbroken by changes in python 2.7.4 (commit 4dc76e)Bugfix url encoding on
SgmlLinkExtractor(#24)Bugfix
TakeFirstprocessor shouldn’t discard zero (0) value (#59)Support nested items in xml exporter (#66)
Improve cookies handling performance (#77)
Log dupe filtered requests once (#105)
Split redirection middleware into status and meta based middlewares (#78)
Support xpath form selection on
FormRequest.from_response(#185)Bugfix unicode decoding error on
SgmlLinkExtractor(#199)Bugfix signal dispatching on pypi interpreter (#205)
Improve request delay and concurrency handling (#206)
Add RFC2616 cache policy to
HttpCacheMiddleware(#212)Allow customization of messages logged by engine (#214)
Extend Scrapy commands using setuptools entry points (#260)
Allow spider
allowed_domainsvalue to be set/tuple (#261)Support
settings.getdict(#269)Simplify internal
scrapy.core.scraperslot handling (#271)Added
Item.copy(#290)Collect idle downloader slots (#297)
Add
ftp://scheme downloader handler (#329)Added downloader benchmark webserver and spider tools Benchmarking
Moved persistent (on disk) queues to a separate project (queuelib) which Scrapy now depends on
Add Scrapy commands using external libraries (#260)
Added
--pdboption toscrapycommand line toolAdded
XPathSelector.remove_namespaceswhich allows to remove all namespaces from XML documents for convenience (to work with namespace-less XPaths). Documented in Selectors.Several improvements to spider contracts
New default middleware named MetaRefreshMiddleware that handles meta-refresh html tag redirections,
MetaRefreshMiddleware and RedirectMiddleware have different priorities to address #62
added from_crawler method to spiders
added system tests with mock server
more improvements to macOS compatibility (thanks Alex Cepoi)
several more cleanups to singletons and multi-spider support (thanks Nicolas Ramirez)
support custom download slots
added –spider option to “shell” command.
log overridden settings when Scrapy starts
Thanks to everyone who contribute to this release. Here is a list of contributors sorted by number of commits:
130 Pablo Hoffman <pablo@...>
97 Daniel Graña <dangra@...>
20 Nicolás Ramírez <nramirez.uy@...>
13 Mikhail Korobov <kmike84@...>
12 Pedro Faustino <pedrobandim@...>
11 Steven Almeroth <sroth77@...>
5 Rolando Espinoza La fuente <darkrho@...>
4 Michal Danilak <mimino.coder@...>
4 Alex Cepoi <alex.cepoi@...>
4 Alexandr N Zamaraev (aka tonal) <tonal@...>
3 paul <paul.tremberth@...>
3 Martin Olveyra <molveyra@...>
3 Jordi Llonch <llonchj@...>
3 arijitchakraborty <myself.arijit@...>
2 Shane Evans <shane.evans@...>
2 joehillen <joehillen@...>
2 Hart <HartSimha@...>
2 Dan <ellisd23@...>
1 Zuhao Wan <wanzuhao@...>
1 whodatninja <blake@...>
1 vkrest <v.krestiannykov@...>
1 tpeng <pengtaoo@...>
1 Tom Mortimer-Jones <tom@...>
1 Rocio Aramberri <roschegel@...>
1 Pedro <pedro@...>
1 notsobad <wangxiaohugg@...>
1 Natan L <kuyanatan.nlao@...>
1 Mark Grey <mark.grey@...>
1 Luan <luanpab@...>
1 Libor Nenadál <libor.nenadal@...>
1 Juan M Uys <opyate@...>
1 Jonas Brunsgaard <jonas.brunsgaard@...>
1 Ilya Baryshev <baryshev@...>
1 Hasnain Lakhani <m.hasnain.lakhani@...>
1 Emanuel Schorsch <emschorsch@...>
1 Chris Tilden <chris.tilden@...>
1 Capi Etheriel <barraponto@...>
1 cacovsky <amarquesferraz@...>
1 Berend Iwema <berend@...>
Scrapy 0.16.5 (released 2013-05-30)
obey request method when Scrapy deploy is redirected to a new endpoint (commit 8c4fcee)
fix inaccurate downloader middleware documentation. refs #280 (commit 40667cb)
doc: remove links to diveintopython.org, which is no longer available. closes #246 (commit bd58bfa)
Find form nodes in invalid html5 documents (commit e3d6945)
Fix typo labeling attrs type bool instead of list (commit a274276)
Scrapy 0.16.4 (released 2013-01-23)
fixes spelling errors in documentation (commit 6d2b3aa)
add doc about disabling an extension. refs #132 (commit c90de33)
Fixed error message formatting. log.err() doesn’t support cool formatting and when error occurred, the message was: “ERROR: Error processing %(item)s” (commit c16150c)
lint and improve images pipeline error logging (commit 56b45fc)
fixed doc typos (commit 243be84)
add documentation topics: Broad Crawls & Common Practices (commit 1fbb715)
fix bug in Scrapy parse command when spider is not specified explicitly. closes #209 (commit c72e682)
Update docs/topics/commands.rst (commit 28eac7a)
Scrapy 0.16.3 (released 2012-12-07)
Remove concurrency limitation when using download delays and still ensure inter-request delays are enforced (commit 487b9b5)
add error details when image pipeline fails (commit 8232569)
improve macOS compatibility (commit 8dcf8aa)
setup.py: use README.rst to populate long_description (commit 7b5310d)
doc: removed obsolete references to ClientForm (commit 80f9bb6)
correct docs for default storage backend (commit 2aa491b)
doc: removed broken proxyhub link from FAQ (commit bdf61c4)
Fixed docs typo in SpiderOpenCloseLogging example (commit 7184094)
Scrapy 0.16.2 (released 2012-11-09)
Scrapy contracts: python2.6 compat (commit a4a9199)
Scrapy contracts verbose option (commit ec41673)
proper unittest-like output for Scrapy contracts (commit 86635e4)
added open_in_browser to debugging doc (commit c9b690d)
removed reference to global Scrapy stats from settings doc (commit dd55067)
Fix SpiderState bug in Windows platforms (commit 58998f4)
Scrapy 0.16.1 (released 2012-10-26)
fixed LogStats extension, which got broken after a wrong merge before the 0.16 release (commit 8c780fd)
better backward compatibility for scrapy.conf.settings (commit 3403089)
extended documentation on how to access crawler stats from extensions (commit c4da0b5)
removed .hgtags (no longer needed now that Scrapy uses git) (commit d52c188)
fix dashes under rst headers (commit fa4f7f9)
set release date for 0.16.0 in news (commit e292246)
Scrapy 0.16.0 (released 2012-10-18)
Scrapy changes:
added Spiders Contracts, a mechanism for testing spiders in a formal/reproducible way
added options
-oand-tto therunspidercommanddocumented AutoThrottle extension and added to extensions installed by default. You still need to enable it with
AUTOTHROTTLE_ENABLEDmajor Stats Collection refactoring: removed separation of global/per-spider stats, removed stats-related signals (
stats_spider_opened, etc). Stats are much simpler now, backward compatibility is kept on the Stats Collector API and signals.added a
process_start_requests()method to spider middlewaresdropped Signals singleton. Signals should now be accessed through the Crawler.signals attribute. See the signals documentation for more info.
dropped Stats Collector singleton. Stats can now be accessed through the Crawler.stats attribute. See the stats collection documentation for more info.
documented Core API
lxmlis now the default selectors backend instead oflibxml2ported FormRequest.from_response() to use lxml instead of ClientForm
removed modules:
scrapy.xlib.BeautifulSoupandscrapy.xlib.ClientFormSitemapSpider: added support for sitemap urls ending in .xml and .xml.gz, even if they advertise a wrong content type (commit 10ed28b)
StackTraceDump extension: also dump trackref live references (commit fe2ce93)
nested items now fully supported in JSON and JSONLines exporters
added
cookiejarRequest meta key to support multiple cookie sessions per spiderdecoupled encoding detection code to w3lib.encoding, and ported Scrapy code to use that module
dropped support for Python 2.5. See https://www.zyte.com/blog/scrapy-0-15-dropping-support-for-python-2-5/
dropped support for Twisted 2.5
added
REFERER_ENABLEDsetting, to control referer middlewarechanged default user agent to:
Scrapy/VERSION (+http://scrapy.org)removed (undocumented)
HTMLImageLinkExtractorclass fromscrapy.contrib.linkextractors.imageremoved per-spider settings (to be replaced by instantiating multiple crawler objects)
USER_AGENTspider attribute will no longer work, useuser_agentattribute insteadDOWNLOAD_TIMEOUTspider attribute will no longer work, usedownload_timeoutattribute insteadremoved
ENCODING_ALIASESsetting, as encoding auto-detection has been moved to the w3lib librarypromoted DjangoItem to main contrib
LogFormatter method now return dicts(instead of strings) to support lazy formatting (#164, commit dcef7b0)
downloader handlers (
DOWNLOAD_HANDLERSsetting) now receive settings as the first argument of the__init__methodreplaced memory usage accounting with (more portable) resource module, removed
scrapy.utils.memorymoduleremoved signal:
scrapy.mail.mail_sentremoved
TRACK_REFSsetting, now trackrefs is always enabledDBM is now the default storage backend for HTTP cache middleware
number of log messages (per level) are now tracked through Scrapy stats (stat name:
log_count/LEVEL)number received responses are now tracked through Scrapy stats (stat name:
response_received_count)removed
scrapy.log.startedattribute
Scrapy 0.14.4
added precise to supported Ubuntu distros (commit b7e46df)
fixed bug in json-rpc webservice reported in https://groups.google.com/forum/#!topic/scrapy-users/qgVBmFybNAQ/discussion. also removed no longer supported ‘run’ command from extras/scrapy-ws.py (commit 340fbdb)
meta tag attributes for content-type http equiv can be in any order. #123 (commit 0cb68af)
replace “import Image” by more standard “from PIL import Image”. closes #88 (commit 4d17048)
return trial status as bin/runtests.sh exit value. #118 (commit b7b2e7f)
Scrapy 0.14.3
forgot to include pydispatch license. #118 (commit fd85f9c)
include egg files used by testsuite in source distribution. #118 (commit c897793)
update docstring in project template to avoid confusion with genspider command, which may be considered as an advanced feature. refs #107 (commit 2548dcc)
added note to docs/topics/firebug.rst about google directory being shut down (commit 668e352)
don’t discard slot when empty, just save in another dict in order to recycle if needed again. (commit 8e9f607)
do not fail handling unicode xpaths in libxml2 backed selectors (commit b830e95)
fixed minor mistake in Request objects documentation (commit bf3c9ee)
fixed minor defect in link extractors documentation (commit ba14f38)
removed some obsolete remaining code related to sqlite support in Scrapy (commit 0665175)
Scrapy 0.14.2
move buffer pointing to start of file before computing checksum. refs #92 (commit 6a5bef2)
Compute image checksum before persisting images. closes #92 (commit 9817df1)
remove leaking references in cached failures (commit 673a120)
fixed bug in MemoryUsage extension: get_engine_status() takes exactly 1 argument (0 given) (commit 11133e9)
fixed struct.error on http compression middleware. closes #87 (commit 1423140)
ajax crawling wasn’t expanding for unicode urls (commit 0de3fb4)
Catch
start_requests()iterator errors. refs #83 (commit 454a21d)Speed-up libxml2 XPathSelector (commit 2fbd662)
updated versioning doc according to recent changes (commit 0a070f5)
scrapyd: fixed documentation link (commit 2b4e4c3)
extras/makedeb.py: no longer obtaining version from git (commit caffe0e)
Scrapy 0.14.1
extras/makedeb.py: no longer obtaining version from git (commit caffe0e)
bumped version to 0.14.1 (commit 6cb9e1c)
fixed reference to tutorial directory (commit 4b86bd6)
doc: removed duplicated callback argument from Request.replace() (commit 1aeccdd)
fixed formatting of scrapyd doc (commit 8bf19e6)
Dump stacks for all running threads and fix engine status dumped by StackTraceDump extension (commit 14a8e6e)
added comment about why we disable ssl on boto images upload (commit 5223575)
SSL handshaking hangs when doing too many parallel connections to S3 (commit 63d583d)
change tutorial to follow changes on dmoz site (commit bcb3198)
Avoid _disconnectedDeferred AttributeError exception in Twisted>=11.1.0 (commit 98f3f87)
allow spider to set autothrottle max concurrency (commit 175a4b5)
Scrapy 0.14
New features and settings
Support for AJAX crawlable urls
New persistent scheduler that stores requests on disk, allowing to suspend and resume crawls (r2737)
added
-ooption toscrapy crawl, a shortcut for dumping scraped items into a file (or standard output using-)Added support for passing custom settings to Scrapyd
schedule.jsonapi (r2779, r2783)New
ChunkedTransferMiddleware(enabled by default) to support chunked transfer encoding (r2769)Add boto 2.0 support for S3 downloader handler (r2763)
In request errbacks, offending requests are now received in
failure.requestattribute (r2738)- Big downloader refactoring to support per domain/ip concurrency limits (r2732)
CONCURRENT_REQUESTS_PER_SPIDERsetting has been deprecated and replaced by:CONCURRENT_REQUESTS,CONCURRENT_REQUESTS_PER_DOMAIN,CONCURRENT_REQUESTS_PER_IP
check the documentation for more details
Added builtin caching DNS resolver (r2728)
Moved Amazon AWS-related components/extensions (SQS spider queue, SimpleDB stats collector) to a separate project: [scaws](https://github.com/scrapinghub/scaws) (r2706, r2714)
Moved spider queues to scrapyd:
scrapy.spiderqueue->scrapyd.spiderqueue(r2708)Moved sqlite utils to scrapyd:
scrapy.utils.sqlite->scrapyd.sqlite(r2781)Real support for returning iterators on
start_requests()method. The iterator is now consumed during the crawl when the spider is getting idle (r2704)Added
REDIRECT_ENABLEDsetting to quickly enable/disable the redirect middleware (r2697)Added
RETRY_ENABLEDsetting to quickly enable/disable the retry middleware (r2694)Added
CloseSpiderexception to manually close spiders (r2691)Improved encoding detection by adding support for HTML5 meta charset declaration (r2690)
Refactored close spider behavior to wait for all downloads to finish and be processed by spiders, before closing the spider (r2688)
Added
SitemapSpider(see documentation in Spiders page) (r2658)Added
LogStatsextension for periodically logging basic stats (like crawled pages and scraped items) (r2657)Make handling of gzipped responses more robust (#319, r2643). Now Scrapy will try and decompress as much as possible from a gzipped response, instead of failing with an
IOError.Simplified !MemoryDebugger extension to use stats for dumping memory debugging info (r2639)
Added new command to edit spiders:
scrapy edit(r2636) and-eflag togenspidercommand that uses it (r2653)Changed default representation of items to pretty-printed dicts. (r2631). This improves default logging by making log more readable in the default case, for both Scraped and Dropped lines.
Added
spider_errorsignal (r2628)Added
COOKIES_ENABLEDsetting (r2625)Stats are now dumped to Scrapy log (default value of
STATS_DUMPsetting has been changed toTrue). This is to make Scrapy users more aware of Scrapy stats and the data that is collected there.Added support for dynamically adjusting download delay and maximum concurrent requests (r2599)
Added new DBM HTTP cache storage backend (r2576)
Added
listjobs.jsonAPI to Scrapyd (r2571)CsvItemExporter: addedjoin_multivaluedparameter (r2578)Added namespace support to
xmliter_lxml(r2552)Improved cookies middleware by making
COOKIES_DEBUGnicer and documenting it (r2579)Several improvements to Scrapyd and Link extractors
Code rearranged and removed
- Merged item passed and item scraped concepts, as they have often proved confusing in the past. This means: (r2630)
original item_scraped signal was removed
original item_passed signal was renamed to item_scraped
old log lines
Scraped Item...were removedold log lines
Passed Item...were renamed toScraped Item...lines and downgraded toDEBUGlevel
Removed unused function:
scrapy.utils.request.request_info()(r2577)Removed googledir project from
examples/googledir. There’s now a new example project calleddirbotavailable on GitHub: https://github.com/scrapy/dirbotRemoved support for default field values in Scrapy items (r2616)
Removed experimental crawlspider v2 (r2632)
Removed scheduler middleware to simplify architecture. Duplicates filter is now done in the scheduler itself, using the same dupe filtering class as before (
DUPEFILTER_CLASSsetting) (r2640)Removed support for passing urls to
scrapy crawlcommand (usescrapy parseinstead) (r2704)Removed deprecated Execution Queue (r2704)
Removed (undocumented) spider context extension (from scrapy.contrib.spidercontext) (r2780)
removed
CONCURRENT_SPIDERSsetting (use scrapyd maxproc instead) (r2789)Renamed attributes of core components: downloader.sites -> downloader.slots, scraper.sites -> scraper.slots (r2717, r2718)
Renamed setting
CLOSESPIDER_ITEMPASSEDtoCLOSESPIDER_ITEMCOUNT(r2655). Backward compatibility kept.
Scrapy 0.12
The numbers like #NNN reference tickets in the old issue tracker (Trac) which is no longer available.
New features and improvements
Passed item is now sent in the
itemargument of theitem_passed(#273)Added verbose option to
scrapy versioncommand, useful for bug reports (#298)HTTP cache now stored by default in the project data dir (#279)
Added project data storage directory (#276, #277)
Documented file structure of Scrapy projects (see command-line tool doc)
New lxml backend for XPath selectors (#147)
Per-spider settings (#245)
Support exit codes to signal errors in Scrapy commands (#248)
Added
-cargument toscrapy shellcommandMade
libxml2optional (#260)New
deploycommand (#261)Added
CLOSESPIDER_PAGECOUNTsetting (#253)Added
CLOSESPIDER_ERRORCOUNTsetting (#254)
Scrapyd changes
Scrapyd now uses one process per spider
It stores one log file per spider run, and rotate them keeping the latest 5 logs per spider (by default)
A minimal web ui was added, available at http://localhost:6800 by default
There is now a
scrapy servercommand to start a Scrapyd server of the current project
Changes to settings
added
HTTPCACHE_ENABLEDsetting (False by default) to enable HTTP cache middlewarechanged
HTTPCACHE_EXPIRATION_SECSsemantics: now zero means “never expire”.
Deprecated/obsoleted functionality
Deprecated
runservercommand in favor ofservercommand which starts a Scrapyd server. See also: Scrapyd changesDeprecated
queuecommand in favor of using Scrapydschedule.jsonAPI. See also: Scrapyd changesRemoved the !LxmlItemLoader (experimental contrib which never graduated to main contrib)
Scrapy 0.10
The numbers like #NNN reference tickets in the old issue tracker (Trac) which is no longer available.
New features and improvements
New Scrapy service called
scrapydfor deploying Scrapy crawlers in production (#218) (documentation available)Simplified Images pipeline usage which doesn’t require subclassing your own images pipeline now (#217)
Scrapy shell now shows the Scrapy log by default (#206)
Refactored execution queue in a common base code and pluggable backends called “spider queues” (#220)
New persistent spider queue (based on SQLite) (#198), available by default, which allows to start Scrapy in server mode and then schedule spiders to run.
Added documentation for Scrapy command-line tool and all its available sub-commands. (documentation available)
Feed exporters with pluggable backends (#197) (documentation available)
Deferred signals (#193)
Added two new methods to item pipeline open_spider(), close_spider() with deferred support (#195)
Support for overriding default request headers per spider (#181)
Replaced default Spider Manager with one with similar functionality but not depending on Twisted Plugins (#186)
Split Debian package into two packages - the library and the service (#187)
Scrapy log refactoring (#188)
New extension for keeping persistent spider contexts among different runs (#203)
Added
dont_redirectrequest.meta key for avoiding redirects (#233)Added
dont_retryrequest.meta key for avoiding retries (#234)
Command-line tool changes
New
scrapycommand which replaces the oldscrapy-ctl.py(#199) - there is only one globalscrapycommand now, instead of onescrapy-ctl.pyper project - Addedscrapy.batscript for running more conveniently from WindowsAdded bash completion to command-line tool (#210)
Renamed command
starttorunserver(#209)
API changes
urlandbodyattributes of Request objects are now read-only (#230)Request.copy()andRequest.replace()now also copies theircallbackanderrbackattributes (#231)Removed
UrlFilterMiddlewarefromscrapy.contrib(already disabled by default)Offsite middleware doesn’t filter out any request coming from a spider that doesn’t have a allowed_domains attribute (#225)
Removed Spider Manager
load()method. Now spiders are loaded in the__init__method itself.- Changes to Scrapy Manager (now called “Crawler”):
scrapy.core.manager.ScrapyManagerclass renamed toscrapy.crawler.Crawlerscrapy.core.manager.scrapymanagersingleton moved toscrapy.project.crawler
Moved module:
scrapy.contrib.spidermanagertoscrapy.spidermanagerSpider Manager singleton moved from
scrapy.spider.spidersto thespidersattribute ofscrapy.project.crawlersingleton.- moved Stats Collector classes: (#204)
scrapy.stats.collector.StatsCollectortoscrapy.statscol.StatsCollectorscrapy.stats.collector.SimpledbStatsCollectortoscrapy.contrib.statscol.SimpledbStatsCollector
default per-command settings are now specified in the
default_settingsattribute of command object class (#201)- changed arguments of Item pipeline
process_item()method from(spider, item)to(item, spider) backward compatibility kept (with deprecation warning)
- changed arguments of Item pipeline
- moved
scrapy.core.signalsmodule toscrapy.signals backward compatibility kept (with deprecation warning)
- moved
- moved
scrapy.core.exceptionsmodule toscrapy.exceptions backward compatibility kept (with deprecation warning)
- moved
added
handles_request()class method toBaseSpiderdropped
scrapy.log.exc()function (usescrapy.log.err()instead)dropped
componentargument ofscrapy.log.msg()functiondropped
scrapy.log.log_levelattributeAdded
from_settings()class methods to Spider Manager, and Item Pipeline Manager
Changes to settings
Added
HTTPCACHE_IGNORE_SCHEMESsetting to ignore certain schemes on !HttpCacheMiddleware (#225)Added
SPIDER_QUEUE_CLASSsetting which defines the spider queue to use (#220)Added
KEEP_ALIVEsetting (#220)Removed
SERVICE_QUEUEsetting (#220)Removed
COMMANDS_SETTINGS_MODULEsetting (#201)Renamed
REQUEST_HANDLERStoDOWNLOAD_HANDLERSand make download handlers classes (instead of functions)
Scrapy 0.9
The numbers like #NNN reference tickets in the old issue tracker (Trac) which is no longer available.
New features and improvements
Added SMTP-AUTH support to scrapy.mail
New settings added:
MAIL_USER,MAIL_PASS(r2065 | #149)Added new scrapy-ctl view command - To view URL in the browser, as seen by Scrapy (r2039)
Added web service for controlling Scrapy process (this also deprecates the web console. (r2053 | #167)
Support for running Scrapy as a service, for production systems (r1988, r2054, r2055, r2056, r2057 | #168)
Added wrapper induction library (documentation only available in source code for now). (r2011)
Simplified and improved response encoding support (r1961, r1969)
Added
LOG_ENCODINGsetting (r1956, documentation available)Added
RANDOMIZE_DOWNLOAD_DELAYsetting (enabled by default) (r1923, doc available)MailSenderis no longer IO-blocking (r1955 | #146)Linkextractors and new Crawlspider now handle relative base tag urls (r1960 | #148)
Several improvements to Item Loaders and processors (r2022, r2023, r2024, r2025, r2026, r2027, r2028, r2029, r2030)
Added support for adding variables to telnet console (r2047 | #165)
Support for requests without callbacks (r2050 | #166)
API changes
Change
Spider.domain_nametoSpider.name(SEP-012, r1975)Response.encodingis now the detected encoding (r1961)HttpErrorMiddlewarenow returns None or raises an exception (r2006 | #157)Added
ExecutionQueuefor feeding spiders to scrape (r2034)Removed
ExecutionEnginesingleton (r2039)Ported
S3ImagesStore(images pipeline) to use boto and threads (r2033)Moved module:
scrapy.management.telnettoscrapy.telnet(r2047)
Changes to default settings
Changed default
SCHEDULER_ORDERtoDFO(r1939)
Scrapy 0.8
The numbers like #NNN reference tickets in the old issue tracker (Trac) which is no longer available.
New features
Added DEFAULT_RESPONSE_ENCODING setting (r1809)
Added
dont_clickargument toFormRequest.from_response()method (r1813, r1816)Added
clickdataargument toFormRequest.from_response()method (r1802, r1803)Added support for HTTP proxies (
HttpProxyMiddleware) (r1781, r1785)Offsite spider middleware now logs messages when filtering out requests (r1841)
Backward-incompatible changes
Changed
scrapy.utils.response.get_meta_refresh()signature (r1804)Removed deprecated
scrapy.item.ScrapedItemclass - usescrapy.item.Item instead(r1838)Removed deprecated
scrapy.xpathmodule - usescrapy.selectorinstead. (r1836)Removed deprecated
core.signals.domain_opensignal - usecore.signals.domain_openedinstead (r1822)log.msg()now receives aspiderargument (r1822)Old domain argument has been deprecated and will be removed in 0.9. For spiders, you should always use the
spiderargument and pass spider references. If you really want to pass a string, use thecomponentargument instead.
Changed core signals
domain_opened,domain_closed,domain_idle- Changed Item pipeline to use spiders instead of domains
The
domainargument ofprocess_item()item pipeline method was changed tospider, the new signature is:process_item(spider, item)(r1827 | #105)To quickly port your code (to work with Scrapy 0.8) just use
spider.domain_namewhere you previously useddomain.
- Changed Stats API to use spiders instead of domains (r1849 | #113)
StatsCollectorwas changed to receive spider references (instead of domains) in its methods (set_value,inc_value, etc).added
StatsCollector.iter_spider_stats()methodremoved
StatsCollector.list_domains()methodAlso, Stats signals were renamed and now pass around spider references (instead of domains). Here’s a summary of the changes:
To quickly port your code (to work with Scrapy 0.8) just use
spider.domain_namewhere you previously useddomain.spider_statscontains exactly the same data asdomain_stats.
CloseDomainextension moved toscrapy.contrib.closespider.CloseSpider(r1833)- Its settings were also renamed:
CLOSEDOMAIN_TIMEOUTtoCLOSESPIDER_TIMEOUTCLOSEDOMAIN_ITEMCOUNTtoCLOSESPIDER_ITEMCOUNT
Removed deprecated
SCRAPYSETTINGS_MODULEenvironment variable - useSCRAPY_SETTINGS_MODULEinstead (r1840)Renamed setting:
REQUESTS_PER_DOMAINtoCONCURRENT_REQUESTS_PER_SPIDER(r1830, r1844)Renamed setting:
CONCURRENT_DOMAINStoCONCURRENT_SPIDERS(r1830)Refactored HTTP Cache middleware
HTTP Cache middleware has been heavily refactored, retaining the same functionality except for the domain sectorization which was removed. (r1843 )
Renamed exception:
DontCloseDomaintoDontCloseSpider(r1859 | #120)Renamed extension:
DelayedCloseDomaintoSpiderCloseDelay(r1861 | #121)Removed obsolete
scrapy.utils.markup.remove_escape_charsfunction - usescrapy.utils.markup.replace_escape_charsinstead (r1865)
Scrapy 0.7
First release of Scrapy.