Release notes

Scrapy 2.18.0 (2026-08-20)

Highlights:

Modified requirements

  • brotli (brotlicffi on PyPy) and Zstandard support (the standard library compression.zstd module on Python 3.14 and higher, the backports.zstd package on earlier versions) are now required, so br and zstd are always included in the Accept-Encoding header 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 brotli 1.2.0, brotlicffi 1.2.0.0 and backports.zstd 1.3.0.

    (#4698, #6978, #7083, #7929, #8009)

  • Increased the minimum versions of the following dependencies:

    (#7841, #7874, #7879, #8001)

  • 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:

    • SpiderLoader and DummySpiderLoader are no longer marked as implementing the ISpiderLoader interface.

    • get_spider_loader() no longer checks that the configured spider loader implements the ISpiderLoader interface.

    • BlockingFeedStorage, FileFeedStorage and StdoutFeedStorage are no longer marked as implementing the IFeedStorage interface.

    • H2DownloadHandler no longer checks that the DOWNLOADER_CLIENTCONTEXTFACTORY class implements the IPolicyForHTTPS interface.

    (#6585, #7731)

  • The engine, extensions, logformatter, request_fingerprinter and stats attributes of Crawler raise RuntimeError when read before the crawl starts, instead of being None until then.

    Code that reads them from the spider_opened signal 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 returning None.

    (#6136, #7882)

  • 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 CsvItemExporter already did. dict items, 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 the PeriodicLog extension, now serializes datetime, date and time objects in ISO 8601 format, e.g. 2023-08-03T23:24:57.148903+00:00 instead of 2023-08-03 23:24:57, keeping microseconds and time zone information.

    Its DATE_FORMAT and TIME_FORMAT attributes are removed.

    (#2087, #7918)

  • scrapy.utils.trackref.live_refs is now a WeakKeyDictionary instead of a collections.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 raises KeyError instead of creating and returning an empty mapping. (#5995, #7922)

  • The MEMDEBUG_NOTIFY setting is removed. It had no effect, but code reading it now gets None instead of its default value, which was an empty list. (#7737)

  • scrapy.utils.log.logformatter_adapter() no longer passes the whole dict returned by a log formatter method as logging arguments when that dict has no args key, or its args are empty, and its msg has no %(name)s placeholders. Such messages are now logged verbatim, so a literal % in them no longer breaks logging.

    An args tuple is now expanded into one logging argument per item, so that %-style placeholders work with it as they do with a dict.

    (#5570, #5572, #7936)

  • FEEDS keys and FEED_URI values that are pathlib.Path objects are now used as paths, instead of being converted into file:// URIs. This makes them keep working when they contain URI parameters or characters that URI conversion would percent-encode. (#5794, #6425, #6611, #7674)

  • Selector and TextResponse.selector no longer force the html selector type for responses that are neither HtmlResponse nor XmlResponse objects. A JsonResponse gets the json type, and for any other response parsel determines 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).

    (#4627, #5291, #6025, #7924, #7972)

  • AutoThrottle no longer sets the download_delay attribute 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 check command now ignores ITEM_PIPELINES and FEEDS, 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 -s command-line option to set them back for a check run. (#3385, #7957)

  • XMLFeedSpider and CSVFeedSpider no longer raise NotConfigured when parse_node() or parse_row() is not defined; the resulting AttributeError is 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. Use xmliter_lxml() instead. (#7765)

  • scrapy.utils.datatypes.CaselessDict, deprecated since Scrapy 2.10.0, is removed. Use CaseInsensitiveDict instead. (#5146, #8023)

Deprecations

  • The download_delay spider attribute is deprecated. Use the DOWNLOAD_DELAY setting, or DOWNLOAD_SLOTS to set a delay for specific domains, instead.

    The max_concurrent_requests spider attribute, deprecated since Scrapy 2.13.0, now sets the CONCURRENT_REQUESTS_PER_DOMAIN setting, 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 spider priority or higher.

    (#7167, #7175, #7833)

  • The Spider.log() method is deprecated. Use the methods of Spider.logger instead. (#7739)

  • The scrapy.interfaces module and its ISpiderLoader interface are deprecated. Custom spider loaders only need to follow SpiderLoaderProtocol. (#6585, #7731)

  • scrapy.extensions.feedexport.IFeedStorage is deprecated. Custom feed storages only need to follow scrapy.extensions.feedexport.FeedStorageProtocol. (#6585, #7731)

  • scrapy.utils.python.re_rsearch() is deprecated. (#7765)

  • Importing FileException from scrapy.pipelines.files is deprecated. Import it from scrapy.pipelines.media instead. (#7544, #7673, #7973)

  • Setting request.meta["is_secure"] to False to send an s3:// request over plaintext HTTP is deprecated. The flag will be ignored in a future Scrapy version. (#7738)

  • The unused multiplier attribute of PeriodicLog is deprecated. (#7809, #7982)

  • Returning, from a log formatter method, a msg with %(name)s placeholders and no args is deprecated. Those placeholders are still interpolated with the returned dict, but in a future Scrapy version the message will be logged verbatim. Return those values under args instead. (#5570, #7971)

New features

Bug fixes

  • HttpCacheMiddleware now 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 new httpcache/retrieve_error stat. (#2222, #7805)

  • Feed URIs now only expand %(...)s parameters, keeping any other percent character as is, so that percent-encoded URIs, e.g. one with %20 in 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_COUNT batch as soon as it is complete, instead of waiting until the spider closes. (#7730, #7733)

  • CsvItemExporter now 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)

  • GCSFeedStorage no longer requires the storage.buckets.get permission. (#5475, #7945)

  • Media pipelines now log media requests that were filtered out, e.g. as offsite requests, at the DEBUG level and without a traceback, instead of reporting them as download errors. (#7544, #7673)

  • OffsiteMiddleware now raises IgnoreRequest with a message, e.g. Filtered offsite request to 'offsite.example', which errbacks and log messages that report that exception now include. (#7544, #7673)

  • HTTP11DownloadHandler now skips response header lines that have no colon, logging them at the DEBUG level, as web browsers do, instead of being unable to download such a response at all. (#210, #7806)

  • CookiesMiddleware now 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 using TextResponse.encoding, instead of raising UnicodeDecodeError. (#6456, #7897)

  • scrapy.resolver.CachingHostnameResolver now 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)

  • DownloaderAwarePriorityQueue now removes the directory of a download slot from the JOBDIR directory once that slot is drained. (#5275, #7955)

  • TelnetConsole no longer raises an exception on shutdown when it could not listen on any of the TELNETCONSOLE_PORT ports. (#2702, #7910)

  • The DOWNLOAD_WARNSIZE warning is no longer logged twice for a response whose Content-Length header already exceeded the limit. (#2476, #7963)

  • HttpCompressionMiddleware now logs a warning when it drops a response for exceeding DOWNLOAD_MAXSIZE during decompression. (#6616, #7742)

  • DepthMiddleware now logs only the first request ignored for exceeding DEPTH_LIMIT, and counts them all in the new depth/request_ignored_count stat. (#1308, #7916)

  • parse now 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, --data and --data-raw options into a single body joined with &, as curl does, instead of keeping only the last one. (#7728)

  • The copy() method and the |= operator of scrapy.utils.datatypes.CaseInsensitiveDict no 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)

  • LinkExtractor now canonicalizes each extracted URL once instead of twice when canonicalize is True. (#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 from start() no longer closes before processing them. (#7029, #7891)

  • open_in_browser() now also adds its base tag to HTML responses that have no head element, and it now overrides a base tag 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 raise TypeError with a message that says so, instead of failing in a way that does not point at the cause. (#5426, #7946)

  • The check, fetch and parse commands now return the exit code 1 when a component fails to initialize, as crawl and runspider already did. (#4292, #7920)

  • HttpCompressionMiddleware no longer hangs on a deflate response body followed by extra bytes. (#7841)

  • scrapy.utils.python.get_func_args() now reports the parameters that a functools.partial object binds by position, instead of an empty list. (#7841)

  • Fixed NameError exceptions 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.deprecated can now be used both as @deprecated and 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 RuntimeError if 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 let parsel determine their type instead of forcing the html type, so that they no longer return the wrong type or value. (#8038, #8040)

Documentation

Quality assurance

Scrapy 2.17.0 (2026-07-07)

Highlights:

  • Security bug fixes

  • HTTP/2 and SOCKS proxy support for HttpxDownloadHandler

  • Improved settings for changing allowed TLS versions

Security bug fixes

  • s3:// requests now use HTTPS by default, instead of plaintext HTTP.

    Previously, S3DownloadHandler sent signed S3 requests over plaintext HTTP unless request.meta["is_secure"] was set to a true value, exposing the request path, the AWS Authorization header, the X-Amz-Security-Token header (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"] to False.

Deprecations

  • The DOWNLOADER_CLIENT_TLS_METHOD setting is deprecated. You should use the DOWNLOAD_TLS_MIN_VERSION and/or DOWNLOAD_TLS_MAX_VERSION settings instead if you want to change the TLS method selection. (#3288, #6546)

  • The following spider attributes are deprecated in favor of settings:

    (#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_TLS

    • scrapy.core.downloader.tls.METHOD_TLSv10

    • scrapy.core.downloader.tls.METHOD_TLSv11

    • scrapy.core.downloader.tls.METHOD_TLSv12

    • scrapy.core.downloader.tls.openssl_methods

    • scrapy.core.downloader.tls.DEFAULT_CIPHERS

    • scrapy.utils.ssl.ffi_buf_to_string()

    • scrapy.utils.ssl.get_temp_key_info()

    • scrapy.utils.ssl.x509name_to_string()

    (#6546, #7619, #7665)

  • The CRAWLSPIDER_FOLLOW_LINKS setting is deprecated. You can set follow=False in your rules to achieve the same effect. (#7592)

  • Instantiating HttpCompressionMiddleware without a crawler argument is deprecated. (#7655)

  • Instantiating RefererMiddleware without a settings argument is deprecated. (#7664)

New features

Improvements

  • FormRequest is no longer deprecated, only its from_response() method is still deprecated. (#7561, #7671)

  • Switched the item definition in the default project template from a scrapy.item.Item to a dataclass. (#7493, #7513)

  • Fixed deprecation warnings with pyOpenSSL 26.3.0. (#7619)

  • Removed the runtime warnings for Spider.allowed_domains containing URLs or domains with ports instead of just domains and for spider classes having a start_url attribute instead of start_urls. Please use scrapy-lint to find mistakes in your spider code instead. (#4421, #7627)

  • scrapy.utils.test.get_crawler() now disables TELNETCONSOLE_ENABLED by default. (#7644)

  • Other code refactoring and improvements. (#7409, #7593, #7594, #7611, #7649)

Bug fixes

  • HttpxDownloadHandler no longer ignores proxy credentials for redirected or retried requests. (#7601, #7630)

  • GCSFeedStorage now 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_ACL and IMAGES_STORE_GCS_ACL settings are no longer ignored. This bug was introduced in Scrapy 2.12.0. (#7597, #7614)

  • FTPDownloadHandler now closes the connection after making the request. (#7602, #7667)

  • Removed the deprecated spider argument from the pipeline defined in the default project template. (#7676)

  • Fixed scrapy genspider --edit not working. (#7260, #7683)

  • When a Crawler instance is passed to AsyncCrawlerRunner.create_crawler() or CrawlerRunner.create_crawler(), settings from both classes are now merged, previously only the settings from the Crawler instance were used. (#1280, #7647)

  • Fixed several issues with cookie handling in scrapy.utils.request.request_to_curl(). (#7603, #7675, #7684)

  • Fixed scrapy.resolver.CachingThreadedResolver not disabling the cache when DNSCACHE_ENABLED is set to False. (#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_PROCESSOR implementations. (#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.Sitemap when parsing some malformed sitemaps. (#7686, #7687)

Documentation

Quality assurance

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 HTTP11DownloadHandler and H2DownloadHandler, have been made private:

    • scrapy.core.downloader.handlers.http11.ScrapyAgent

    • scrapy.core.downloader.handlers.http11.ScrapyProxyAgent

    • scrapy.core.downloader.handlers.http11.TunnelingAgent

    • scrapy.core.downloader.handlers.http11.TunnelingTCP4ClientEndpoint

    • scrapy.core.downloader.handlers.http11.tunnel_request_data()

    • scrapy.core.downloader.handlers.http2.ScrapyH2Agent

    (#7496, #7510)

Deprecations

Deprecation removals

  • The start_requests() method of Spider, deprecated in 2.13.0, is removed and no longer called. Use start() 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. Use process_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 asynchronous process_spider_output() methods. (#7504)

  • The spider arguments of the following methods of Scraper, 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.HTTP10DownloadHandler

    • The scrapy.core.downloader.webclient module.

    • The DOWNLOADER_HTTPCLIENTFACTORY setting.

    (#7486)

  • The following functions, deprecated in Scrapy 2.13.0, are removed, you should import them from w3lib.url directly 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.testproc module

    • the scrapy.utils.testsite module

    • scrapy.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 use scrapy.utils.versions.get_versions() instead. (#7487)

  • scrapy.downloadermiddlewares.ajaxcrawl.AjaxCrawlMiddleware and scrapy.utils.url.escape_ajax(), deprecated in Scrapy 2.13.0, are removed. (#7487)

  • The __init__() method of priority queue classes (see SCHEDULER_PRIORITY_QUEUE) now needs to support a keyword-only start_queue_cls parameter, 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

Improvements

Bug fixes

Documentation

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_internet pytest mark and can be skipped with e.g. -m 'not requires_internet' if you cannot or don’t want to run them. (#7520)

  • Type hints improvements and fixes. (#7492, #7532)

  • CI and test improvements and fixes. (#7441, #7466, #7491, #7496)

Scrapy 2.15.2 (2026-04-28)

Bug fixes

Scrapy 2.15.1 (2026-04-23)

Bug fixes

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() and file_downloaded() can now return coroutines

    • media_downloaded(), file_downloaded() and image_downloaded() now return coroutines

    (#2183, #6369, #7182)

  • Request and Response objects: __slots__ and setter changes:

    • scrapy.http.Request and scrapy.http.Response now define __slots__. Assigning arbitrary attributes to instances (for example, response.foo = 1) will raise AttributeError. Store per-request/response data in the request/response meta mapping instead of attaching new attributes to the objects.

    • If you maintain custom Request or Response subclasses that relied on dynamic instance attributes, either add '__dict__' to your subclass __slots__ to allow dynamic attributes, or migrate per-instance state to meta or explicit documented attributes.

    • The setters for headers, flags and cookies no longer coerce falsy values into None. For example, request.headers = {} now stores an empty scrapy.http.headers.Headers instance (not None), and request.flags = [] remains an empty list instead of being set to None. Update code that relied on is None checks or the previous coercion behaviour.

    (#7036, #7367, #7374)

Deprecation removals

  • The context factory class set as the value of the DOWNLOADER_CLIENTCONTEXTFACTORY setting is now required to support the method argument of __init__(), recommended since Scrapy 1.2.0. (#7353)

Deprecations

  • scrapy.mail.MailSender is deprecated. Please use smtplib, twisted.mail.smtp or other 3rd party email libraries. (#7249, #7263)

  • The scrapy.extensions.statsmailer.StatsMailer extension is deprecated. You can instead implement your own notifications by handling the spider_closed signal. (#7249, #7263)

  • The MEMUSAGE_NOTIFY_MAIL setting is deprecated. You can instead implement your own notifications by handling the memusage_warning_reached and spider_closed signals. (#7249, #7263)

  • The DNS_RESOLVER setting was renamed to TWISTED_DNS_RESOLVER and the old name is deprecated. (#7350, #7361)

  • The DOWNLOADER_CLIENTCONTEXTFACTORY setting is deprecated. If you were using it to switch to scrapy.core.downloader.contextfactory.BrowserLikeContextFactory, please use the new DOWNLOAD_VERIFY_CERTIFICATES setting 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.BrowserLikeContextFactory is deprecated. You can set the new DOWNLOAD_VERIFY_CERTIFICATES setting to True instead. (#7379)

  • The following implementation details of the context factory handling code are deprecated:

    • scrapy.core.downloader.contextfactory.AcceptableProtocolsContextFactory

    • scrapy.core.downloader.contextfactory.load_context_factory_from_settings()

    • scrapy.core.downloader.contextfactory.ScrapyClientContextFactory

    • scrapy.core.downloader.tls.ScrapyClientTLSOptions

    (#7353, #7391)

  • Passing str instead of bytes to scrapy.utils.sitemap.Sitemap and scrapy.utils.sitemap.sitemap_urls_from_robots() is deprecated. (#7007)

  • scrapy.utils.misc.walk_modules() is deprecated. You can use scrapy.utils.misc.walk_modules_iter() instead. (#7388)

  • scrapy.shell.Shell.inthread is deprecated. You can use scrapy.shell.Shell.fetch_available instead to check if fetch() can be used. (#7395)

  • scrapy.commands.ScrapyCommand.set_crawler() is deprecated. (#7276)

New features

Improvements

Bug fixes

Documentation

Quality assurance

Scrapy 2.14.2 (2026-03-12)

Security bug fixes

  • Values from the Referrer-Policy header 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 POST requests are converted into GET requests.

    Converting to a GET request implies not only a method change, but also omitting the body and Content-* 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 a Response instead.

    The parameter has also been renamed to response to 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 GET in line with the standard:

    • Only POST 302 redirects are converted into GET requests; other methods are preserved.

    • HEAD 303 redirects are not converted into GET requests.

    • GET 303 redirects do not have their body or standard Content-* headers removed.

  • Redirects where the original request body is dropped now also have their Content-Encoding, Content-Language and Content-Location headers removed, in addition to the Content-Type and Content-Length headers 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 Referer header is now removed on redirect if RefererMiddleware is disabled.

  • The handling of the Referer header on redirects now takes into account the Referer-Policy header 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 spider argument in their open_spider() and close_spider() methods not receiving the argument when called by the engine.

    Note, however, that the spider argument is now deprecated and will stop being passed in a future version of Scrapy.

    (#7213)

Quality assurance

  • Replaced deprecated codecov/test-results-action@v1 GitHub Action with codecov/codecov-action@v5. (#7180, #7215)

Scrapy 2.14.0 (2026-01-05)

Highlights:

  • More coroutine-based replacements for Deferred-based APIs

  • The default priority queue is now DownloaderAwarePriorityQueue

  • Dropped support for Python 3.9 and PyPy 3.10

  • Improved and documented the API for custom download handlers

Modified requirements

  • Dropped support for Python 3.9. (#7121)

  • Dropped support for PyPy 3.10. (#7050)

  • Increased the minimum versions of the following dependencies:

    • lxml: 4.6.0 → 4.6.4

    • Pillow (optional dependency): 8.0.0 → 8.3.2

    • botocore (optional dependency): 1.4.87 → 1.13.45

  • Restored support for brotlicffi dropped in Scrapy 2.13.4. Its minimum supported version is now 1.2.0.0. (#7160)

Backward-incompatible changes

  • If you set the TWISTED_REACTOR setting to a non-asyncio value at the spider level, you may now need to set the FORCE_CRAWLER_PROCESS setting to True when 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.

    (#6930)

  • Scrapy no longer passes a spider argument to any methods of the stats 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 a spider argument. If your implementation needs a Spider instance, you can get it from the Crawler instance passed to the constructor. (#7011)

  • scrapy.middleware.MiddlewareManager no longer includes code for handling open_spider() and close_spider() component methods. As this code was only used for pipelines it was moved into scrapy.pipelines.ItemPipelineManager. This change should only affect custom subclasses of MiddlewareManager. The following code was moved:

    • scrapy.middleware.MiddlewareManager.open_spider()

    • scrapy.middleware.MiddlewareManager.close_spider()

    • Code in scrapy.middleware.MiddlewareManager._add_middleware() that processes open_spider() and close_spider() component methods.

    (#7006)

  • scrapy.downloadermiddlewares.robotstxt.RobotsTxtMiddleware.process_request() now returns a coroutine, previously it returned a Deferred object or None. The robot_parser() method was also changed to return a coroutine. This change only impacts code that subclasses RobotsTxtMiddleware or 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 a Deferred object. 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 use from_crawler() instead.

    (#7126)

  • Scrapy no longer calls from_settings() methods of 3rd-party components, deprecated in Scrapy 2.12.0. You should define a from_crawler() method instead. (#7126)

  • The initialization flow of scrapy.pipelines.media.MediaPipeline and its subclasses was simplified, it now mandates from_crawler() methods and crawler arguments of __init__() methods. Not using these was deprecated in Scrapy 2.12.0. (#7126)

  • The REQUEST_FINGERPRINTER_IMPLEMENTATION setting, deprecated in Scrapy 2.12.0, is removed. (#7126)

  • The scrapy.utils.misc.create_instance() function, deprecated in Scrapy 2.12.0, is removed. Use scrapy.utils.misc.build_from_crawler() instead. (#7126)

  • The scrapy.core.downloader.Downloader._get_slot_key() function, deprecated in Scrapy 2.12.0, is removed. Use scrapy.core.downloader.Downloader.get_slot_key() instead. (#7126)

  • The scrapy.twisted_version attribute, deprecated in Scrapy 2.12.0, is removed. You should instead use the twisted.version attribute 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.OffsiteMiddleware should be used instead. (#6926)

Deprecations

  • The following methods that return a Deferred are deprecated in favor of their coroutine-based replacements:

    • scrapy.core.downloader.handlers.DownloadHandlers

      • download_request() (use download_request_async())

    • scrapy.core.downloader.middleware.DownloaderMiddlewareManager

      • download() (use download_async())

    • scrapy.core.engine.ExecutionEngine

      • start() (use start_async())

      • stop() (use stop_async())

      • close() (use close_async())

      • open_spider() (use open_spider_async())

      • close_spider() (use close_spider_async())

      • download() (use download_async())

    • scrapy.core.scraper.Scraper

      • open_spider() (use open_spider_async())

      • call_spider() (use call_spider_async())

      • close_spider() (use close_spider_async())

      • handle_spider_output() (use handle_spider_output_async())

      • start_itemproc() (use start_itemproc_async())

    • scrapy.core.spidermw.SpiderMiddlewareManager

      • scrape_response() (use scrape_response_async())

    • scrapy.crawler.Crawler

    • scrapy.pipelines.ItemPipelineManager

      • process_item() (use process_item_async())

      • open_spider() (use open_spider_async())

      • close_spider() (use close_spider_async())

    • scrapy.signalmanager.SignalManager

    • scrapy.utils.signal.send_catch_log_deferred() (use scrapy.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:

    (#6988, #6994, #7038, #7039, #7117, #7176)

  • Returning a Deferred from 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() and process_exception() methods of custom downloader middlewares

    • the process_item(), open_spider() and close_spider() methods of custom pipelines

    • signal handlers

    • the download_request() and close() methods of custom download handlers

    (#6718, #6778, #7069, #7147, #7148, #7149, #7150, #7151, #7161, #7164, #7179)

  • Passing a spider argument 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.StatsCollector

    • scrapy.spidermiddlewares.base.BaseSpiderMiddleware.process_spider_output()

    • scrapy.spidermiddlewares.base.BaseSpiderMiddleware.process_spider_output_async()

    • all process_*() methods of built-in downloader middlewares

    • all process_*() methods of built-in spider middlewares

    • scrapy.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.MiddlewareManager without a Crawler instance is deprecated. (#6984)

  • For the following user-defined functions and methods requiring a spider argument is deprecated, if you need a Spider instance inside them you should get it from the Crawler instance (you may need to refactor your code to save that instance in e.g. the from_crawler() method):

    • the process_request(), process_response() and process_exception() methods of custom downloader middlewares

    • the process_spider_input(), process_spider_output(), process_spider_output_async() and process_spider_exception() methods of custom spider middlewares

    • the process_item() method of custom pipelines

    • the fetch() method of a custom DOWNLOADER

    (#6927, #6984, #7006, #7037)

  • The following things in custom download handlers are deprecated:

    • not having a lazy attribute (you should define it as True if you want to keep the current behavior)

    • returning a Deferred from the download_request() method (you should refactor it to return a coroutine; you also need to remove the spider argument when doing this)

    • not having a close() method, having a synchronous one or one that returns a Deferred (you should refactor it to return a coroutine or add an empty one if you don’t have it)

    (#6778, #7164)

  • Custom implementations of ITEM_PROCESSOR should now define process_item_async(), open_spider_async() and close_spider_async() methods instead of, or in addition to, process_item(), open_spider() and close_spider(). (#7005, #7043)

  • The CONCURRENT_REQUESTS_PER_IP setting is deprecated, use CONCURRENT_REQUESTS_PER_DOMAIN instead. (#6917, #6921)

  • The scrapy.core.downloader.handlers.http module is deprecated. You should import scrapy.core.downloader.handlers.http11.HTTP11DownloadHandler directly instead of importing the scrapy.core.downloader.handlers.http.HTTPDownloadHandler alias. (#7079)

  • The scrapy.utils.decorators.defers() decorator is deprecated, you can use twisted.internet.defer.maybeDeferred() directly or reimplement this decorator in your code. (#7164)

  • scrapy.spiders.CrawlSpider._parse_response() is deprecated, use scrapy.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:

    (#6937)

New features

Improvements

Bug fixes

  • Setting FILES_STORE or IMAGES_STORE to None now correctly disables the respective pipeline. (#6964, #6969)

  • MetaRefreshMiddleware now uses the URL set in the <base> tag as the base URL when redirecting to a relative URL. (#7042, #7047)

  • Passing None as a value of the download_slot request 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.txt files that have a BOM. (#6195, #7095)

Documentation

Quality assurance

Scrapy 2.13.4 (2025-11-17)

Security bug fixes

  • Improved protection against decompression bombs in HttpCompressionMiddleware for responses compressed using the br and deflate methods: if a single compressed chunk would be larger than the response size limit (see DOWNLOAD_MAXSIZE) when decompressed, decompression is no longer carried out. This is especially important for the br (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

  • The minimum supported version of the optional brotli package is now 1.2.0. (#7134)

  • The brotlicffi and brotlipy packages can no longer be used to decompress Brotli-compressed responses. Please install the brotli package instead. (#7134)

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_CORE environment variable in tests, it didn’t have an effect but caused the coverage module to produce a warning or an error. (#7137)

  • Removed the documentation build dependency on the deprecated sphinx-hoverxref module. (#6786, #6922)

Scrapy 2.13.3 (2025-07-02)

Scrapy 2.13.2 (2025-06-09)

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)

  • Added a deepwiki badge to the README. (#6793)

  • 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) with start() (async) and changed how it is iterated

  • Added the allow_offsite request meta key

  • Spider middlewares that don’t support asynchronous spider output are deprecated

  • Added a base class for universal spider middlewares

Modified requirements

  • Dropped support for PyPy 3.9. (#6613)

  • Added support for PyPy 3.11. (#6697)

Backward-incompatible changes

  • The default value of the TWISTED_REACTOR setting was changed from None to "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 the spider parameter instead (see start()).

    • The slot attribute has been renamed to _slot and should not be used.

    (#6729)

  • In scrapy.core.engine, the Slot class has been renamed to _Slot and should not be used. (#6729)

  • The slot telnet variable has been removed. (#6729)

  • In scrapy.core.spidermw.SpiderMiddlewareManager, process_start_requests() has been replaced by process_start(). (#6729)

  • The scrape_func callable passed to scrapy.core.spidermw.SpiderMiddlewareManager.scrape_response() is now called with 2 parameters, response and request, instead of 3, and must return a Deferred instead 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 set SCHEDULER_START_DISK_QUEUE to None or "" to change that, but the side effects may be undesirable. See SCHEDULER_START_DISK_QUEUE for details. (#6729)

  • The URL length limit, set by the URLLENGTH_LIMIT setting, 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 as Crawler and 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 of UrlLengthMiddleware, deprecated in Scrapy 2.12.0, is removed earlier than the usual deprecation period (this was needed because after the introduction of the BaseSpiderMiddleware base class and switching built-in spider middlewares to it those middlewares need the Crawler instance at run time). Please use from_crawler() instead. (#6693)

  • scrapy.utils.url.escape_ajax() is no longer called when a Request instance 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 to Request. (#6523, #6651)

Deprecation removals

  • Removed old deprecated name aliases for some signals:

    • stats_spider_opened (use spider_opened instead)

    • stats_spider_closing and stats_spider_closed (use spider_closed instead)

    • item_passed (use item_scraped instead)

    • request_received (use request_scheduled instead)

    (#6654, #6655)

Deprecations

  • The start_requests() method of Spider is deprecated, use start() 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, use process_start() instead, or both to maintain support for lower Scrapy versions. (#456, #3477, #4467, #5627, #6729)

  • The __init__ method of priority queue classes (see SCHEDULER_PRIORITY_QUEUE) should now support a keyword-only start_queue_cls parameter. (#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.url and re-exported in scrapy.utils.url are now deprecated, you should import them from w3lib.url directly. 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()

    (#4577, #6583, #6586)

  • 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.HTTP10DownloadHandler

    • scrapy.core.downloader.webclient.ScrapyHTTPClientFactory

    • scrapy.core.downloader.webclient.ScrapyHTTPPageGetter

    • Overriding scrapy.core.downloader.contextfactory.ScrapyClientContextFactory.getContext()

    (#6634)

  • The following modules and functions used only in tests are deprecated:

    • the scrapy.utils.testproc module

    • the scrapy.utils.testsite module

    • scrapy.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.TestSpider is deprecated. If you need an empty spider class you can use scrapy.utils.spider.DefaultSpider or create your own subclass of scrapy.Spider. (#6678)

  • scrapy.downloadermiddlewares.ajaxcrawl.AjaxCrawlMiddleware is 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.InitSpider is deprecated. If you find it useful, you can copy its code from Scrapy. (#6708, #6714)

  • scrapy.utils.versions.scrapy_components_versions() is deprecated, use scrapy.utils.versions.get_versions() instead. (#6582)

  • BaseDupeFilter.log() is deprecated. It does nothing and shouldn’t be called. (#4151)

  • Passing the spider argument to the following methods of Scraper is deprecated:

    • close_spider()

    • enqueue_scrape()

    • handle_spider_error()

    • handle_spider_output()

    (#6764)

New features

Improvements

  • Removed or postponed some calls of itemadapter.is_item() to increase performance. (#6719)

  • Improved the error message when running a scrapy command that requires a project (such as scrapy crawl) outside of a project directory. (#2349, #3426)

  • Added an empty ADDONS setting to the settings.py template for new projects. (#6587)

Bug fixes

Documentation

Packaging

Quality assurance

Scrapy 2.12.0 (2024-11-18)

Highlights:

Modified requirements

  • Dropped support for Python 3.8. (#6466, #6472)

  • Added support for Python 3.13. (#6166)

  • Minimum versions increased for these dependencies:

  • Removed setuptools from the dependency list. (#6487)

Backward-incompatible changes

  • User-defined cookies for HTTPS requests will have the secure flag set to True unless it’s set to False explicitly. 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.txt parser, scrapy.robotstxt.ReppyRobotParser, was removed, as it doesn’t support Python 3.9+. (#5230, #6099, #6499)

  • The initialization API of scrapy.pipelines.media.MediaPipeline and 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 of MediaPipeline or create instances of these pipelines via from_settings() or __init__() calls instead of from_crawler() calls.

    Previously, MediaPipeline.from_crawler() called the from_settings() method if it existed or the __init__() method otherwise, and then did some additional initialization using the crawler instance. If the from_settings() method existed (like in FilesPipeline) it called __init__() to create the instance. It wasn’t possible to override from_crawler() without calling MediaPipeline.from_crawler() from it which, in turn, couldn’t be called in some cases (including subclasses of FilesPipeline).

    Now, in line with the general usage of from_crawler() and from_settings() and the deprecation of the latter the recommended initialization order is the following one:

    • All __init__() methods should take a crawler argument. If they also take a settings argument they should ignore it, using crawler.settings instead. When they call __init__() of the base class they should pass the crawler argument to it too.

    • A from_settings() method shouldn’t be defined. Class-specific initialization code should go into either an overridden from_crawler() method or into __init__().

    • It’s now possible to override from_crawler() and it’s not necessary to call MediaPipeline.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 with from_crawler() calls.

    (#6540)

  • The response_body argument of ImagesPipeline.convert_image is now positional-only, as it was changed from optional to required. (#6500)

  • The convert argument of scrapy.utils.conf.build_component_list() is now positional-only, as the preceding argument (custom) was removed. (#6500)

  • The overwrite_output argument of scrapy.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 setting REQUEST_FINGERPRINTER_IMPLEMENTATION, deprecated in Scrapy 2.7.0. (#6212, #6213)

  • RFPDupeFilter subclasses now require supporting the fingerprinter parameter in their __init__ method, introduced in Scrapy 2.7.0. (#6102, #6113)

  • Removed the scrapy.downloadermiddlewares.decompression module, 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_user or http_pass attributes, must now define http_auth_domain as 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(), and thumb_path() must now support an item parameter, added in Scrapy 2.4.0. (#6107, #6113)

  • The __init__() and from_crawler() methods of feed storage backend classes must now support the keyword-only feed_options parameter, introduced in Scrapy 2.4.0. (#6105, #6113)

  • Removed the scrapy.loader.common and scrapy.loader.processors modules, 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.JSONRequest class, replaced with JsonRequest in Scrapy 1.8.0. (#6110, #6113)

  • scrapy.utils.log.logformatter_adapter no longer supports missing args, level, or msg parameters, and no longer supports a format parameter, all scenarios that were deprecated in Scrapy 1.0.0. (#6109, #6116)

  • A custom class assigned to the SPIDER_LOADER_CLASS setting that does not implement the ISpiderLoader interface will now raise a zope.interface.verify.DoesNotImplement exception at run time. Non-compliant classes have been triggering a deprecation warning since Scrapy 1.0.0. (#6101, #6113)

  • Removed the --output-format/-t command line option, deprecated in Scrapy 2.1.0. -O <URI>:<FORMAT> should be used instead. (#6500)

  • Running crawl() more than once on the same Crawler instance, deprecated in Scrapy 2.11.0, now raises an exception. (#6500)

  • Subclassing HttpCompressionMiddleware without support for the crawler argument in __init__() and without a custom from_crawler() method, deprecated in Scrapy 2.5.0, is no longer allowed. (#6500)

  • Removed the EXCEPTIONS_TO_RETRY attribute of RetryMiddleware, 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._FeedSlot class, deprecated in Scrapy 2.10.0. (#6500)

  • Removed the scrapy.pipelines.images.NoimagesDrop exception, deprecated in Scrapy 2.8.0. (#6500)

  • The response_body argument of ImagesPipeline.convert_image is now required, not passing it was deprecated in Scrapy 2.8.0. (#6500)

  • Removed the custom argument of scrapy.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. Use asyncio.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:

    (#6540)

  • It’s now deprecated to have a from_settings() method but no from_crawler() method in 3rd-party Scrapy components. You can define a simple from_crawler() method that calls cls.from_settings(crawler.settings) to fix this if you don’t want to refactor the code. Note that if you have a from_crawler() method Scrapy will not call the from_settings() method so the latter can be removed. (#6540)

  • The initialization API of scrapy.pipelines.media.MediaPipeline and 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 a crawler argument.

    • It’s deprecated to call an __init__() method without passing a crawler argument. If it’s passed, it’s also deprecated to pass a settings argument, which will be ignored anyway.

    • Calling from_settings() is deprecated, use from_crawler() instead.

    • Overriding from_settings() is deprecated, override from_crawler() instead.

    (#6540)

  • The REQUEST_FINGERPRINTER_IMPLEMENTATION setting is now deprecated. (#6212, #6213)

  • The scrapy.utils.misc.create_instance() function is now deprecated, use scrapy.utils.misc.build_from_crawler() instead. (#5523, #5884, #6162, #6169, #6540)

  • scrapy.core.downloader.Downloader._get_slot_key() is deprecated, use scrapy.core.downloader.Downloader.get_slot_key() instead. (#6340, #6352)

  • scrapy.utils.defer.process_chain_both() is now deprecated. (#6397)

  • scrapy.twisted_version is now deprecated, you should instead use twisted.version directly (but note that it’s an incremental.Version object, not a tuple). (#6509, #6512)

  • scrapy.utils.python.flatten() and scrapy.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 the Authorization header directly. (#6517, #6519)

  • scrapy.utils.serialize.ScrapyJSONDecoder is 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

Improvements

Bug fixes

  • MediaPipeline is 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.telnet no longer installs the default reactor. (#6432)

  • Reduced log verbosity for dropped requests that was increased in 2.11.2. (#6433, #6475)

Documentation

Quality assurance

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 Authorization header is now dropped on redirects to a different scheme (http:// or https://) 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:// and https://, 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_domains is 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.XmlRpcRequest more secure. (#6250, #6251)

Deprecations

Bug fixes

Documentation

Quality assurance

Scrapy 2.11.1 (2024-02-14)

Highlights:

  • Security bug fixes.

  • Support for Twisted >= 23.8.0.

  • Documentation improvements.

Security bug fixes

Modified requirements

  • The Twisted dependency is no longer restricted to < 23.8.0. (#6024, #6064, #6142)

Bug fixes

  • The OS signal handling code was refactored to no longer use private Twisted functions. (#6024, #6064, #6112)

Documentation

Quality assurance

  • Added Python 3.12 to the CI configuration, re-enabled tests that were disabled when the pre-release support was added. (#5985, #6083, #6098)

  • Fixed a test issue on PyPy 7.3.14. (#6204, #6205)

Scrapy 2.11.0 (2023-09-18)

Highlights:

Backward-incompatible changes

  • Most of the initialization of scrapy.crawler.Crawler instances is now done in crawl(), so the state of instances before that method is called is now different compared to older Scrapy versions. We do not recommend using the Crawler instances before crawl() is called. (#6038)

  • scrapy.Spider.from_crawler() is now called before the initialization of various components previously initialized in scrapy.crawler.Crawler.__init__() and before the settings are finalized and frozen. This change was needed to allow changing the settings in scrapy.Spider.from_crawler(). If you want to access the final setting values and the initialized Crawler attributes in the spider code as early as possible you can do this in scrapy.Spider.start_requests() or in a handler of the engine_started signal. (#6038)

  • The TextResponse.json method 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, use json.loads(response.text) instead. (#6016)

  • PythonItemExporter used 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.1 to your project requirements or switch to a stack that includes Scrapy 2.11.

  • Removed the CrawlerRunner.spiders attribute, deprecated in Scrapy 1.0.0, use CrawlerRunner.spider_loader instead. (#6010)

  • The scrapy.utils.response.response_httprepr() function, deprecated in Scrapy 2.6.0, has now been removed. (#6111)

Deprecations

New features

Bug fixes

Documentation

  • Updated a deprecated function call in a pipeline example. (#6008, #6009)

Quality assurance

Scrapy 2.10.1 (2023-08-30)

Marked Twisted >= 23.8.0 as unsupported. (#6024, #6026)

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

  • Dropped support for Python 3.7. (#5953)

  • Added support for the upcoming Python 3.12. (#5984)

  • Minimum versions increased for these dependencies:

  • pkg_resources is no longer used. (#5956, #5958)

  • boto3 is now recommended instead of botocore for exporting to S3. (#5833).

Backward-incompatible changes

  • The value of the FEED_STORE_EMPTY setting is now True instead of False. In earlier Scrapy versions empty files were created even when this setting was False (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_PARAMS setting, returning None or modifying the params input parameter, deprecated in Scrapy 2.6, is no longer supported. (#5994, #5996)

  • The scrapy.utils.reqser module, deprecated in Scrapy 2.6, is removed. (#5994, #5996)

  • The scrapy.squeues classes PickleFifoDiskQueueNonRequest, PickleLifoDiskQueueNonRequest, MarshalFifoDiskQueueNonRequest, and MarshalLifoDiskQueueNonRequest, deprecated in Scrapy 2.6, are removed. (#5994, #5996)

  • The property open_spiders and the methods has_capacity and schedule of scrapy.core.engine.ExecutionEngine, deprecated in Scrapy 2.6, are removed. (#5994, #5998)

  • Passing a spider argument to the spider_is_idle(), crawl() and download() methods of scrapy.core.engine.ExecutionEngine, deprecated in Scrapy 2.6, is no longer supported. (#5994, #5998)

Deprecations

  • scrapy.utils.datatypes.CaselessDict is deprecated, use scrapy.utils.datatypes.CaseInsensitiveDict instead. (#5146)

  • Passing the custom argument to scrapy.utils.conf.build_component_list() is deprecated, it was used in the past to merge FOO and FOO_BASE setting values but now Scrapy uses scrapy.settings.BaseSettings.getwithbase() to do the same. Code that uses this argument and cannot be switched to getwithbase() can be switched to merging the values explicitly. (#5726, #5923)

New features

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 NotConfigured with a message. (#5950, #5992)

  • Added the missing scrapy.settings.BaseSettings.pop() method. (#5959, #5960, #5963)

  • Added CaseInsensitiveDict as a replacement for CaselessDict that fixes some API inconsistencies. (#5146)

Documentation

Quality assurance

  • Added support for running tests against the installed Scrapy version. (#4914, #5949)

  • Extended typing hints. (#5925, #5977)

  • Fixed the test_utils_asyncio.AsyncioTest.test_set_asyncio_event_loop test. (#5951)

  • Fixed the test_feedexport.BatchDeliveriesTest.test_batch_path_differ test 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-pinned tox env. (#5948)

  • Implemented cleanups. (#5965, #5986)

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._FeedSlot is renamed to scrapy.extensions.feedexport.FeedSlot and the old name is deprecated. (#5876)

New features

Bug fixes

Documentation

Quality assurance

  • Extended typing hints. (#5805, #5889, #5896)

  • 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-ignored warnings from coverage. (#5820)

  • Fixed a random failure of the test_feedexport.test_batch_path_differ test. (#5855, #5898)

  • Updated docstrings to match output produced by parsel 1.8.1 so that they don’t cause test failures. (#5902, #5919)

  • Other CI and pre-commit improvements. (#5802, #5823, #5908)

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.read1 function, deprecated in Scrapy 2.0, has now been removed. Use the read1() method of GzipFile instead. (#5719)

  • The scrapy.utils.python.to_native_str function, deprecated in Scrapy 2.0, has now been removed. Use scrapy.utils.python.to_unicode() instead. (#5719)

  • The scrapy.utils.python.MutableChain.next method, deprecated in Scrapy 2.0, has now been removed. Use __next__() instead. (#5719)

  • The scrapy.linkextractors.FilteringLinkExtractor class, deprecated in Scrapy 2.0, has now been removed. Use LinkExtractor instead. (#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 noconnect query 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_eintr function, deprecated in Scrapy 2.3, has now been removed. (#5719)

  • The scrapy.utils.python.WeakKeyCache class, 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

  • scrapy.pipelines.images.NoimagesDrop is now deprecated. (#5368, #5489)

  • ImagesPipeline.convert_image must now accept a response_body parameter. (#3055, #3689, #4753)

New features

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 shell command 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 the process_request callback of a Rule will 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 inhibits SIGINT (Ctrl+C). (#2918)

  • LinkExtractor with unique=False no longer filters out links that have identical URL and text. (#3798, #3799, #4695, #5458)

  • RobotsTxtMiddleware now ignores URL protocols that do not support robots.txt (data://, file://). (#5807)

  • Silenced the filelock debug log messages introduced in Scrapy 2.6. (#5753, #5754)

  • Fixed the output of scrapy -h showing an unintended **commands** line. (#5709, #5711, #5712)

  • Made the active project indication in the output of commands more clear. (#5715)

Documentation

Quality assurance

Scrapy 2.7.1 (2022-11-02)

New features

  • Relaxed the restriction introduced in 2.6.2 so that the Proxy-Authorization header can again be set explicitly, as long as the proxy URL in the proxy metadata 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-output and -t/--output-format options together now produces an error instead of ignoring the former option (#5516, #5605).

  • Replaced deprecated asyncio APIs 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).

  • Fixed uses of a deprecated Pillow API (#5684, #5692).

  • 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

  • Upgraded the Code of Conduct to Contributor Covenant v2.1 (#5698).

  • Fixed typos (#5681, #5694).

Quality assurance

  • Re-enabled some erroneously disabled flake8 checks (#5688).

  • Ignored harmless deprecation warnings from typing in tests (#5686, #5697).

  • Modernized our CI configuration (#5695, #5696).

Scrapy 2.7.0 (2022-10-17)

Highlights:

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:

(#5512, #5514, #5524, #5563, #5664, #5670, #5678)

Deprecations

New features

Bug fixes

Documentation

Quality assurance

Scrapy 2.6.3 (2022-09-27)

Scrapy 2.6.2 (2022-07-25)

Security bug fix:

  • When HttpProxyMiddleware processes a request with proxy metadata, and that proxy metadata includes proxy credentials, HttpProxyMiddleware sets the Proxy-Authorization header, but only if that header is not already set.

    There are third-party proxy-rotation downloader middlewares that set different proxy metadata 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 HttpProxyMiddleware and any third-party proxy-rotation downloader middleware.

    These third-party proxy-rotation downloader middlewares could change the proxy metadata of a request to a new value, but fail to remove the Proxy-Authorization header from the previous value of the proxy metadata, causing the credentials of one proxy to be sent to a different proxy.

    To prevent the unintended leaking of proxy credentials, the behavior of HttpProxyMiddleware is now as follows when processing a request:

    • If the request being processed defines proxy metadata that includes credentials, the Proxy-Authorization header is always updated to feature those credentials.

    • If the request being processed defines proxy metadata without credentials, the Proxy-Authorization header 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-Authorization header.

    • If the request has no proxy metadata, or that metadata is a falsy value (e.g. None), the Proxy-Authorization header is removed.

      It is no longer possible to set a proxy URL through the proxy metadata but set the credentials through the Proxy-Authorization header. Set proxy credentials through the proxy metadata instead.

Also fixes the following regressions introduced in 2.6.0:

  • CrawlerProcess supports again crawling multiple spiders (#5435, #5436)

  • Installing a Twisted reactor before Scrapy does (e.g. importing twisted.internet.reactor somewhere at the module level) no longer prevents Scrapy from starting, as long as a different reactor is not specified in TWISTED_REACTOR (#5525, #5528)

  • Fixed an exception that was being logged after the spider finished under certain conditions (#5437, #5440)

  • The --output/-o command-line parameter supports again a value starting with a hyphen (#5444, #5445)

  • The scrapy parse -h command 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:

Security bug fixes

  • When a Request object with cookies defined gets a redirect response causing a new Request object to be scheduled, the cookies defined in the original Request object are no longer copied into the new Request object.

    If you manually set the Cookie header on a Request object and the domain name of the redirect URL is not an exact match for the domain of the URL of the original Request object, your Cookie header is now dropped from the new Request object.

    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.com and any subdomain) by defining the shared domain suffix (e.g. example.com) as the cookie domain when defining your cookies. See the documentation of the Request class for more information.

  • When the domain of a cookie, either received in the Set-Cookie header of a response or defined in a Request object, 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

Backward-incompatible changes

  • The formdata parameter of FormRequest, 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_PARAMS setting, now the return value of that function, and not the params input parameter, will determine the feed URI parameters, unless that return value is None. (#4962, #4966)

  • In scrapy.core.engine.ExecutionEngine, methods crawl(), download(), schedule(), and spider_is_idle() now raise RuntimeError if called before open_spider(). (#5090)

    These methods used to assume that ExecutionEngine.slot had been defined by a prior call to open_spider(), so they were raising AttributeError instead.

  • If the API of the configured scheduler does not meet expectations, TypeError is now raised at startup time. Before, other exceptions would be raised at run time. (#3559)

  • The _encoding field of serialized Request objects is now named encoding, 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_PARAMS setting, returning None or modifying the params input parameter is now deprecated. Return a new dictionary instead. (#4962, #4966)

  • scrapy.utils.reqser is deprecated. (#5130)

  • In scrapy.squeues, the following queue classes are deprecated: PickleFifoDiskQueueNonRequest, PickleLifoDiskQueueNonRequest, MarshalFifoDiskQueueNonRequest, and MarshalLifoDiskQueueNonRequest. You should instead use: PickleFifoDiskQueue, PickleLifoDiskQueue, MarshalFifoDiskQueue, and MarshalLifoDiskQueue. (#5117)

  • Many aspects of scrapy.core.engine.ExecutionEngine that come from a time when this class could handle multiple Spider objects at a time have been deprecated. (#5090)

    • The has_capacity() method is deprecated.

    • The schedule() method is deprecated, use crawl() or download() instead.

    • The open_spiders attribute is deprecated, use spider instead.

    • The spider parameter is deprecated for the following methods:

      • spider_is_idle()

      • crawl()

      • download()

      Instead, call open_spider() first to set the Spider object.

  • scrapy.utils.response.response_httprepr() is now deprecated. (#4972)

New features

Bug fixes

Documentation

Quality Assurance

Scrapy 2.5.1 (2021-10-05)

  • Security bug fix:

    If you use HttpAuthMiddleware (i.e. the http_user and http_pass spider 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_domain spider 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 the Authorization header of your requests.

    If you really want your spider to send the same HTTP authentication credentials to any domain, set the http_auth_domain spider attribute to None.

    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:

Deprecation removals

Deprecations

  • The scrapy.utils.py36 module is now deprecated in favor of scrapy.utils.asyncgen. (#4900)

New features

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_all request meta key to False now has the same effect as not setting it at all, instead of having the same effect as setting it to True. (#3851, #4694)

Documentation

Quality Assurance

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 CachingHostnameResolver for download handlers that call reactor.resolve (#4802, #4803)

  • Fixed the output of the genspider command 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_path method 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_kwargs key of the FEEDS setting allows to define keyword parameters to pass to item exporter classes

  • You can now choose whether feed exports overwrite or append to the output file.

    For example, when using the crawl or runspider commands, you can use the -O option instead of -o to 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

Backward-incompatible changes

  • CookiesMiddleware once again discards cookies defined in Request.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.cookies parameter.

    A future version of Scrapy will include a new, better implementation of the reverted bug fix.

    (#4717, #4823)

Deprecation removals

  • scrapy.extensions.feedexport.S3FeedStorage no longer reads the values of access_key and secret_key from the running project settings when they are not passed to its __init__ method; you must either pass those parameters to its __init__ method or use S3FeedStorage.from_crawler (#4356, #4411, #4688)

  • Rule.process_request no longer admits callables which expect a single request parameter, rather than both request and response (#4818)

Deprecations

New features

Bug fixes

  • The genspider command no longer overwrites existing files unless the --force option is used (#4561, #4616, #4623)

  • Cookies with an empty value are no longer considered invalid cookies (#4772)

  • The runspider command now supports files with the .pyw file extension (#4643, #4646)

  • The HttpProxyMiddleware middleware now simply ignores unsupported proxy values (#3331, #4778)

  • Checks for generator callbacks with a return statement no longer warn about return statements in nested functions (#4720, #4721)

  • The system file mode creation mask no longer affects the permissions of files generated using the startproject command (#4722)

  • scrapy.utils.iterators.xmliter now supports namespaced node names (#861, #4746)

  • Request objects can now have about: URLs, which can work when using a headless browser (#4835)

Documentation

Quality assurance

Scrapy 2.3.0 (2020-08-04)

Highlights:

Deprecation removals

  • Removed the following classes and their parent modules from scrapy.linkextractors:

    • htmlparser.HtmlParserLinkExtractor

    • regex.RegexLinkExtractor

    • sgml.BaseSgmlLinkExtractor

    • sgml.SgmlLinkExtractor

    Use LinkExtractor instead (#4356, #4679)

Deprecations

  • The scrapy.utils.python.retry_on_eintr function is now deprecated (#4683)

New features

Bug fixes

Documentation

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 startproject command 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:

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

New features

Bug fixes

Documentation

Quality assurance

Scrapy 2.1.0 (2020-04-24)

Highlights:

Backward-incompatible changes

  • AssertionError exceptions 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 AssertionError exception from Scrapy, update your code to catch the corresponding new exception.

    (#4440)

Deprecation removals

  • The LOG_UNSERIALIZABLE_REQUESTS setting is no longer supported, use SCHEDULER_DEBUG instead (#4385)

  • The REDIRECT_MAX_METAREFRESH_DELAY setting is no longer supported, use METAREFRESH_MAXDELAY instead (#4385)

  • The ChunkedTransferMiddleware middleware has been removed, including the entire scrapy.downloadermiddlewares.chunked module; chunked transfers work out of the box (#4431)

  • The spiders property has been removed from Crawler, use CrawlerRunner.spider_loader or instantiate SPIDER_LOADER_CLASS with your settings instead (#4398)

  • The MultiValueDict, MultiValueDictKeyError, and SiteNode classes have been removed from scrapy.utils.datatypes (#4400)

Deprecations

  • The FEED_FORMAT and FEED_URI settings have been deprecated in favor of the new FEEDS setting (#1336, #3858, #4507)

New features

  • A new setting, FEEDS, allows configuring multiple output feeds with different settings each (#1336, #3858, #4507)

  • The crawl and runspider commands now support multiple -o parameters (#1336, #3858, #4507)

  • The crawl and runspider commands now support specifying an output format by appending :<format> to the output file (#1336, #3858, #4507)

  • The new Response.ip_address attribute gives access to the IP address that originated a response (#3903, #3940)

  • A warning is now issued when a value in allowed_domains includes 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)

  • None values in allowed_domains no longer cause a TypeError exception (#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

Scrapy 2.0.1 (2020-03-18)

Scrapy 2.0.0 (2020-03-03)

Highlights:

Backward-incompatible changes

Deprecation removals

  • The Scrapy shell no longer provides a sel proxy object, use response.selector instead (#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.FilteringLinkExtractor is deprecated, use scrapy.linkextractors.LinkExtractor instead (#4045)

  • The noconnect query string argument of proxy URLs is deprecated and should be removed from proxy URLs (#4198)

  • The next method of scrapy.utils.python.MutableChain is deprecated, use the global next() function or MutableChain.__next__ instead (#4153)

New features

Bug fixes

  • The crawl command now also exits with exit code 1 when an exception happens before the crawling starts (#4175, #4207)

  • LinkExtractor.extract_links no 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)

  • Request no longer accepts strings as url simply because they have a colon (#2552, #4094)

  • The correct encoding is now used for attach names in MailSender (#4229, #4239)

  • RFPDupeFilter, the default DUPEFILTER_CLASS, no longer writes an extra \r character on each line in Windows, which made the size of the requests.seen file unnecessarily large on that platform (#4283)

  • Z shell auto-completion now looks for .html files, not .http files, and covers the -h command-line switch (#4122, #4291)

  • Adding items to a scrapy.utils.datatypes.LocalCache object without a limit defined no longer raises a TypeError exception (#4123)

  • Fixed a typo in the message of the ValueError exception raised when scrapy.utils.misc.create_instance() gets both settings and crawler set to None (#4128)

Documentation

Quality assurance

Changes to scheduler queue classes

The following changes may impact any custom queue classes of all types:

  • The push method no longer receives a second positional parameter containing request.priority * -1. If you need that value, get it from the first positional parameter, request, instead, or use the new priority() method in scrapy.core.scheduler.ScrapyPriorityQueue subclasses.

The following changes may impact custom priority queue classes:

  • In the __init__ method or the from_crawler or from_settings class methods:

    • The parameter that used to contain a factory function, qfactory, is now passed as a keyword parameter named downstream_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 the JOBDIR value for disk queues.

    • The parameter for disk queues that contains data from the previous crawl, startprios or slot_startprios, is now passed as a keyword parameter named startprios.

    • The serialize parameter is no longer passed. The disk queue class must take care of request serialization on its own before writing to disk, using the request_to_dict() and request_from_dict() functions from the scrapy.utils.reqser module.

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 replaced qfactory, must be instantiated differently.

      qfactory was instantiated with a priority value (integer).

      Instances of downstream_queue_cls should be created using the new ScrapyPriorityQueue.qfactory or DownloaderAwarePriorityQueue.pqfactory methods.

    • The new key parameter displaced the startprios parameter 1 position to the right.

  • The following class attributes have been added:

    • crawler

    • downstream_queue_cls (details above)

    • key (details above)

  • The serialize attribute 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, returns request.priority * -1.

    It is used in push() to make up for the removal of its priority parameter.

  • The spider attribute has been removed. Use crawler.spider instead.

The following changes affect specifically the DownloaderAwarePriorityQueue class and may affect subclasses:

  • A new pqueues attribute offers a mapping of downloader slot names to the corresponding instances of downstream_queue_cls.

(#3884)

Scrapy 1.8.4 (2024-02-14)

Security bug fixes:

Scrapy 1.8.3 (2022-07-25)

Security bug fix:

  • When HttpProxyMiddleware processes a request with proxy metadata, and that proxy metadata includes proxy credentials, HttpProxyMiddleware sets the Proxy-Authorization header, but only if that header is not already set.

    There are third-party proxy-rotation downloader middlewares that set different proxy metadata 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 HttpProxyMiddleware and any third-party proxy-rotation downloader middleware.

    These third-party proxy-rotation downloader middlewares could change the proxy metadata of a request to a new value, but fail to remove the Proxy-Authorization header from the previous value of the proxy metadata, causing the credentials of one proxy to be sent to a different proxy.

    To prevent the unintended leaking of proxy credentials, the behavior of HttpProxyMiddleware is now as follows when processing a request:

    • If the request being processed defines proxy metadata that includes credentials, the Proxy-Authorization header is always updated to feature those credentials.

    • If the request being processed defines proxy metadata without credentials, the Proxy-Authorization header 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-Authorization header.

    • If the request has no proxy metadata, or that metadata is a falsy value (e.g. None), the Proxy-Authorization header is removed.

      It is no longer possible to set a proxy URL through the proxy metadata but set the credentials through the Proxy-Authorization header. Set proxy credentials through the proxy metadata instead.

Scrapy 1.8.2 (2022-03-01)

Security bug fixes:

  • When a Request object with cookies defined gets a redirect response causing a new Request object to be scheduled, the cookies defined in the original Request object are no longer copied into the new Request object.

    If you manually set the Cookie header on a Request object and the domain name of the redirect URL is not an exact match for the domain of the URL of the original Request object, your Cookie header is now dropped from the new Request object.

    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.com and any subdomain) by defining the shared domain suffix (e.g. example.com) as the cookie domain when defining your cookies. See the documentation of the Request class for more information.

  • When the domain of a cookie, either received in the Set-Cookie header of a response or defined in a Request object, 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. the http_user and http_pass spider 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_domain spider 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 the Authorization header of your requests.

    If you really want your spider to send the same HTTP authentication credentials to any domain, set the http_auth_domain spider attribute to None.

    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:

Backward-incompatible changes

  • Python 3.4 is no longer supported, and some of the minimum requirements of Scrapy have also changed:

    (#3892)

  • JSONRequest is now called JsonRequest for 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_logging and tls_ciphers (#2111, #3392, #3442, #3450)

  • ItemLoader now 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')).

    (#3804, #3819, #3897, #3976, #3998, #4036)

See also Deprecation removals below.

New features

Bug fixes

Documentation

Deprecation removals

  • scrapy.xlib has been removed (#4015)

Deprecations

  • The LevelDB storage backend (scrapy.extensions.httpcache.LeveldbCacheStorage) of HttpCacheMiddleware is deprecated (#4085, #4092)

  • Use of the undocumented SCRAPY_PICKLED_SETTINGS_TO_OVERRIDE environment variable is deprecated (#3910)

  • scrapy.item.DictItem is deprecated, use Item instead (#3999)

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)

  • Code cleanup (#3391, #3907, #3946, #3950, #4023, #4031)

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)

Enforce lxml 4.3.5 or lower for Python 3.4 (#3912, #3918).

Scrapy 1.7.2 (2019-07-23)

Fix Python 2 support (#3889, #3893, #3896).

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

  • 429 is now part of the RETRY_HTTP_CODES setting by default

    This change is backward incompatible. If you don’t want to retry 429, you must override RETRY_HTTP_CODES accordingly.

  • Crawler, CrawlerRunner.crawl and CrawlerRunner.create_crawler no longer accept a Spider subclass instance, they only accept a Spider subclass now.

    Spider subclass instances were never meant to work, and they were not working as one would expect: instead of using the passed Spider subclass instance, their from_crawler method was called to generate a new instance.

  • Non-default values for the SCHEDULER_PRIORITY_QUEUE setting may stop working. Scheduler priority queue classes now need to handle Request objects instead of arbitrary Python data structures.

  • An additional crawler parameter has been added to the __init__ method of the Scheduler class. 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

Bug fixes

Documentation

Deprecation removals

The following deprecated APIs have been removed (#3578):

  • scrapy.conf (use Crawler.settings)

  • From scrapy.core.downloader.handlers:

    • http.HttpDownloadHandler (use http10.HTTP10DownloadHandler)

  • scrapy.loader.ItemLoader._get_values (use _get_xpathvalues)

  • scrapy.loader.XPathItemLoader (use ItemLoader)

  • scrapy.log (see Logging)

  • From scrapy.pipelines:

    • files.FilesPipeline.file_key (use file_path)

    • images.ImagesPipeline.file_key (use file_path)

    • images.ImagesPipeline.image_key (use file_path)

    • images.ImagesPipeline.thumb_key (use thumb_path)

  • From both scrapy.selector and scrapy.selector.lxmlsel:

  • From scrapy.selector.csstranslator:

  • From Selector:

    • _root (both the __init__ method argument and the object property, use root)

    • extract_unquoted (use getall)

    • select (use xpath)

  • From SelectorList:

    • extract_unquoted (use getall)

    • select (use xpath)

    • x (use xpath)

  • scrapy.spiders.BaseSpider (use Spider)

  • From Spider (and subclasses):

    • DOWNLOAD_DELAY (use download_delay)

    • set_crawler (use from_crawler())

  • scrapy.spiders.spiders (use SpiderLoader)

  • scrapy.telnet (use scrapy.extensions.telnet)

  • From scrapy.utils.python:

    • str_to_unicode (use to_unicode)

    • unicode_to_str (use to_bytes)

  • scrapy.utils.response.body_or_str

The following deprecated settings have also been removed (#3578):

Deprecations

  • The queuelib.PriorityQueue value for the SCHEDULER_PRIORITY_QUEUE setting is deprecated. Use scrapy.pqueues.ScrapyPriorityQueue instead.

  • process_request callbacks passed to Rule that do not accept two arguments are deprecated.

  • The following modules are deprecated:

  • The scrapy.utils.datatypes.MergeDict class is deprecated for Python 3 code bases. Use ChainMap instead. (#3878)

  • The scrapy.utils.gz.is_gzipped function is deprecated. Use scrapy.utils.gz.gzip_magic_number instead.

Other changes

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_error and request_reached_downloader signals; from_crawler support for feed exporters, feed storages and dupefilters.

  • scrapy.contracts fixes 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_crawler support 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_crawler support is added to dupefilters (#2956); this allows to access e.g. settings or a spider from a dupefilter.

  • item_error is fired when an error happens in a pipeline (#3256);

  • request_reached_downloader is 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

scrapy.contracts improvements

  • Exceptions in contracts code are handled better (#3377);

  • dont_filter=True is used for contract requests, which allows to test different callbacks with the same URL (#3381);

  • request_cls attribute 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 url argument in Response.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 --help mentions 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

Deprecation removals

Compatibility shims for pre-1.0 Scrapy module names are removed (#3318):

  • scrapy.command

  • scrapy.contrib (with all submodules)

  • scrapy.contrib_exp (with all submodules)

  • scrapy.dupefilter

  • scrapy.linkextractor

  • scrapy.project

  • scrapy.spider

  • scrapy.spidermanager

  • scrapy.squeue

  • scrapy.stats

  • scrapy.statscol

  • scrapy.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:

  • Deprecated scrapy.interfaces.ISpiderManager is removed; please use scrapy.interfaces.ISpiderLoader.

  • Deprecated CrawlerSettings class is removed (#3327).

  • Deprecated Settings.overrides and Settings.defaults attributes are removed (#3327, #3359).

Other improvements, cleanups

  • All Scrapy tests now pass on Windows; Scrapy testing suite is executed in a Windows environment on CI (#3315).

  • Python 3.7 support (#3326, #3150, #3547).

  • Testing and CI fixes (#3526, #3538, #3308, #3311, #3309, #3305, #3210, #3299)

  • scrapy.http.cookies.CookieJar.clear accepts “domain”, “path” and “name” optional arguments (#3231).

  • additional files are included to sdist (#3495);

  • code style fixes (#3405, #3304);

  • 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_PORT out 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:

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 parse command now allows to set custom request meta via --meta argument.

  • 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_AGENT if you relied on old value.

  • Logging of settings overridden by custom_settings is 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 m4v extension by default, this is change in behavior.

  • 522 and 524 status codes are added to RETRY_HTTP_CODES (#2851)

New features

  • Support <link> tags in Response.follow (#2785)

  • Support for ptpython REPL (#2654)

  • Google Cloud Storage support for FilesPipeline and ImagesPipeline (#2923).

  • New --meta option 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.MailSender now 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 m4v extension by default

  • Better log messages for responses over DOWNLOAD_WARNSIZE and DOWNLOAD_MAXSIZE limits (#2927)

  • Show warning when a URL is put to Spider.allowed_domains instead 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_AGENT if 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 cryptography for Debian Jessie tox test env (#2848)

  • Add verification to check if Request callback is callable (#2766)

  • Port extras/qpsclient.py to Python 3 (#2849)

  • Use getfullargspec under the scenes for Python 3 to stop DeprecationWarning (#2862)

  • Update deprecated test aliases (#2876)

  • Fix SitemapSpider support for alternate links (#2853)

Docs

  • Added missing bullet point for the AUTOTHROTTLE_TARGET_CONCURRENCY setting. (#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)

  • Spelling mistake and typos (#2828, #2837, #2884, #2924)

  • Clarify CSVFeedSpider.headers documentation (#2826)

  • Document DontCloseSpider exception and clarify spider_idle (#2791)

  • Update “Releases” section in README (#2764)

  • Fix rst syntax in DOWNLOAD_FAIL_ON_DATALOSS docs (#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)

  • Up-to-date example of project structure (#2964, #2976)

  • A better example of ItemExporters usage (#2989)

  • Document from_crawler methods 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=False in scrapy.linkextractors.LinkExtractor (#2537, fixes #1941 and #1982): warning, this is technically backward-incompatible

  • Enable memusage extension by default (#2539, fixes #2187); this is technically backward-incompatible so please check if you have any non-default MEMUSAGE_*** options set.

  • EDITOR environment variable now takes precedence over EDITOR option 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_url is deprecated (#1728, fixes #1495).

New Features

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: gzip at HttpCompressionMiddleware stage (#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_follow in 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 self arguments in default project middleware template (#2595)

  • Remove redundant slot.add_request() call in ExecutionEngine (#2617)

  • Catch more specific os.error exception in scrapy.pipelines.files.FSFilesStore (#2644)

  • Change “localhost” test server certificate (#2720)

  • Remove unused MEMUSAGE_REPORT setting (#2576)

Documentation

  • Binary mode is required for exporters (#2564, fixes #2553)

  • Mention issue with FormRequest.from_response() due to bug in lxml (#2572)

  • Use single quotes uniformly in templates (#2596)

  • Document ftp_user and ftp_password meta 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__ from SelectorList docs (#2683)

  • Mention how to disable request filtering in documentation of DUPEFILTER_CLASS setting (#2714)

  • Add sphinx_rtd_theme to docs setup readme (#2668)

  • Open file in text mode in JSON item writer example (#2729)

  • Clarify allowed_domains example (#2670)

Scrapy 1.3.3 (2017-03-10)

Bug fixes

  • Make SpiderLoader raise ImportError again by default for missing dependencies and wrong SPIDER_MODULES. These exceptions were silenced as warnings since 1.3.0. A new setting is introduced to toggle between warning or exception if needed ; see SPIDER_LOADER_WARN_ONLY for details.

Scrapy 1.3.2 (2017-02-13)

Bug fixes

  • Preserve request class when converting to/from dicts (utils.reqser) (#2510).

  • Use consistent selectors for author field in tutorial (#2551).

  • Fix TLS compatibility in Twisted 17+ (#2558)

Scrapy 1.3.1 (2017-02-08)

New features

  • Support 'True' and 'False' string values for boolean settings (#2519); you can now do something like scrapy 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_TIMEOUT setting (#2496).

  • Fix view command ; it was a regression in v1.3.0 (#2503).

  • Fix tests regarding *_EXPIRES settings with Files/Images pipelines (#2460).

  • Fix name of generated pipeline class when using basic project template (#2466).

  • Fix compatibility with Twisted 17+ (#2496, #2528).

  • Fix scrapy.Item inheritance on Python 3.6 (#2511).

  • Enforce numeric values for components order in SPIDER_MIDDLEWARES, DOWNLOADER_MIDDLEWARES, EXTENSIONS and SPIDER_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 formid argument on FormRequest.from_response() (#2497).

  • Add .rst extension to README files (#2507).

  • Mention LevelDB cache storage backend (#2525).

  • Use yield in sample callback code (#2533).

  • Add note about HTML entities decoding with .re()/.re_first() (#1704).

  • Typos (#2512, #2534, #2531).

Cleanups

  • Remove redundant check in MetaRefreshMiddleware (#2542).

  • Faster checks in LinkExtractor for allow/deny patterns (#2538).

  • Remove dead code supporting old Twisted versions (#2544).

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

  • MailSender now accepts single strings as values for to and cc arguments (#2272)

  • scrapy fetch url, scrapy shell url and fetch(url) inside Scrapy shell now follow HTTP redirections by default (#2290); See fetch and shell for details.

  • HttpErrorMiddleware now logs errors with INFO level instead of DEBUG; 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 using LOG_SHORT_NAMES set to True.

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 version

  • ChunkedTransferMiddleware is 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

  • Fix a cryptic traceback when a pipeline fails on open_spider() (#2011)

  • Fix embedded IPython shell variables (fixing #396 that re-appeared in 1.2.0, fixed in #2418)

  • A couple of patches when dealing with robots.txt:

    • handle (non-standard) relative sitemap URLs (#2390)

    • handle non-ASCII URLs and User-Agents in Python 2 (#2373)

Documentation

  • Document "download_latency" key in Request’s meta dict (#2033)

  • Remove page on (deprecated & unsupported) Ubuntu packages from ToC (#2335)

  • A few fixed typos (#2346, #2369, #2369, #2380) and clarifications (#2354, #2325, #2414)

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)

  • startproject command now generates a sample middlewares.py file (#2335)

  • Add more dependencies’ version info in scrapy version verbose output (#2404)

  • Remove all *.pyc files from source distribution (#2386)

Scrapy 1.2.1 (2016-10-21)

Bug fixes

  • Include OpenSSL’s more permissive default ciphers when establishing TLS/SSL connections (#2314).

  • Fix “Location” HTTP header decoding on non-ASCII URL redirects (#2321).

Documentation

  • Fix JsonWriterPipeline example (#2302).

  • Various notes: #2330 on spider names, #2329 on middleware methods processing order, #2327 on getting multi-valued HTTP headers as lists.

Other changes

  • Removed www. from start_urls in built-in spider templates (#2299).

Scrapy 1.2.0 (2016-10-03)

New Features

  • New FEED_EXPORT_ENCODING setting to customize the encoding used when writing items to a file. This can be used to turn off \uXXXX escapes in JSON output. This is also useful for those wanting something else than UTF-8 for XML or CSV output (#2034).

  • startproject command now supports an optional destination directory to override the default one based on the project name (#2005).

  • New SCHEDULER_DEBUG setting to log requests serialization failures (#1610).

  • JSON encoder now supports serialization of set instances (#2058).

  • Interpret application/json-amazonui-streaming as TextResponse (#1503).

  • scrapy is 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 .scrapy data directory now work outside projects (#1581). Warning: this is technically backward incompatible, though we consider this a bug fix.

  • Selector does not allow passing both response and text anymore (#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 CrawlSpider with scrapy parse (#2225).

  • Fix for invalid JSON and XML files when spider yields no items (#872).

  • Implement flush() for StreamLogger avoiding 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

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

  • Class attributes for subclasses of ImagesPipeline and FilesPipeline work as they did before 1.1.1 (#2243, fixes #2198)

Documentation

Scrapy 1.1.2 (2016-08-18)

Bug fixes

  • Introduce a missing IMAGES_STORE_S3_ACL setting to override the default ACL policy in ImagesPipeline when uploading images to S3 (note that default ACL policy is “private” – instead of “public-read” – since Scrapy 1.1.0)

  • IMAGES_EXPIRES default 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 body when choosing response class (#2001, fixes #2000)

  • Do not fail on canonicalizing URLs with wrong netlocs (#2038, fixes #2010)

  • a few fixes for HttpCompressionMiddleware (and SitemapSpider):

    • Do not decode HEAD responses (#2008, fixes #1899)

    • Handle charset parameter in gzip Content-Type header (#2050, fixes #2049)

    • Do not decompress gzip octet-stream responses (#2065, fixes #2063)

  • Catch (and ignore with a warning) exception when verifying certificate against IP-address hosts (#2094, fixes #2092)

  • Make FilesPipeline and ImagesPipeline backward compatible again regarding the use of legacy class attributes for customization (#1989, fixes #1985)

New features

  • Enable genspider command outside project folder (#2052)

  • Retry HTTPS CONNECT TunnelError by default (#1974)

Documentation

  • FEED_TEMPDIR setting 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)

  • Grammar fixes (#2054, #2120)

  • 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).

    • FormRequest.from_response improvements (#1382, #1137).

    • Added setting AUTOTHROTTLE_TARGET_CONCURRENCY and improved AutoThrottle docs (#1324).

    • Added response.text to 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_STORE and HTTPCACHE_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_METHOD setting.

  • These bug fixes may require your attention:

    • Don’t retry bad requests (HTTP 400) by default (#1289). If you need the old behavior, add 400 to RETRY_HTTP_CODES.

    • Fix shell files argument handling (#1710, #1550). If you try scrapy shell index.html it will try to load the URL http://index.html, use scrapy shell ./index.html to 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_OBEY in settings.py file 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 FilesPipeline or ImagesPipeline), the default ACL policy is now “private” instead of “public” Warning: backward incompatible!. You can use FILES_STORE_S3_ACL to 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:

    • Support for bpython and configure preferred Python shell via SCRAPY_PYTHON_SHELL (#1100, #1444).

    • Support URLs without scheme (#1498) Warning: backward incompatible!

    • Bring back support for relative file path (#1710, #1550).

  • Added MEMUSAGE_CHECK_INTERVAL_SECONDS setting 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).

  • RedirectMiddleware now skips the status codes from handle_httpstatus_list on spider attribute or in Request’s meta key (#1334, #1364, #1447).

  • Form submission:

    • now works with <button> elements too (#1469).

    • an empty string is now used for submit buttons without a value (#1472)

  • Dict-like settings now have per-key priorities (#1135, #1149 and #1586).

  • Sending non-ASCII emails (#1662)

  • CloseSpider and SpiderState extensions 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).

  • .pps links 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_TEMPDIR setting (#1847).

  • FilesPipeline and ImagesPipeline settings are now instance attributes instead of class attributes, enabling spider-specific behaviors (#1891).

  • JsonItemExporter now formats opening and closing square brackets on their own line (first and last lines of output file) (#1950).

  • If available, botocore is used for S3FeedStorage, S3DownloadHandler and S3FilesStore (#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_bytes and to_unicode, deprecated str_to_unicode and unicode_to_str functions (#778).

  • binary_is_text is introduced, to replace use of isbinarytext (but with inverse return value) (#1851)

  • The optional_features set has been removed (#1359).

  • The --lsprof command line option has been removed (#1689). Warning: backward incompatible, but doesn’t break user code.

  • The following datatypes were deprecated (#1720):

    • scrapy.utils.datatypes.MultiValueDictKeyError

    • scrapy.utils.datatypes.MultiValueDict

    • scrapy.utils.datatypes.SiteNode

  • The previously bundled scrapy.xlib.pydispatch library was deprecated and replaced by pydispatcher.

Relocations

Bugfixes

  • Scrapy does not retry requests that got a HTTP 400 Bad Request response anymore (#1289). Warning: backward incompatible!

  • Support empty password for http_proxy config (#1274).

  • Interpret application/x-json as TextResponse (#1333).

  • Support link rel attribute with multiple values (#1201).

  • Fixed scrapy.FormRequest.from_response when there is a <base> tag (#1564).

  • Fixed TEMPLATES_DIR handling (#1575).

  • Various FormRequest fixes (#1595, #1596, #1597).

  • Makes _monkeypatches more robust (#1634).

  • Fixed bug on XMLItemExporter with non-string fields in items (#1738).

  • Fixed startproject command in macOS (#1635).

  • Fixed PythonItemExporter and 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.txt is 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)

  • FIX: RetryMiddleware is now robust to non-standard HTTP status codes (#1857)

  • FIX: Filestorage HTTP cache was checking wrong modified time (#1875)

  • DOC: Support for Sphinx 1.4+ (#1893)

  • DOC: Consistency in selectors examples (#1869)

Scrapy 1.0.5 (2016-02-04)

Scrapy 1.0.4 (2015-12-30)

Scrapy 1.0.3 (2015-08-11)

Scrapy 1.0.2 (2015-08-06)

Scrapy 1.0.1 (2015-07-01)

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-djangoitem

scrapy.webservice

scrapy-jsonrpc

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.contrib.closespider

  • scrapy.contrib.corestats

  • scrapy.contrib.debug

  • scrapy.contrib.feedexport

  • scrapy.contrib.httpcache

  • scrapy.contrib.logstats

  • scrapy.contrib.memdebug

  • scrapy.contrib.memusage

  • scrapy.contrib.spiderstate

  • scrapy.contrib.statsmailer

  • scrapy.contrib.throttle

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)

  • FEED_EXPORT_FIELDS option (#1159, #1224)

  • 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)

  • Selectorlist extract first (#624, #1145)

  • 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)

  • Be more responsive with IO operations (#1074 and #1075)

  • 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)

  • Move base classes to their packages (#1218, #1233)

  • Module relocation (#1181, #1210)

  • 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)

  • Move Test cases under project root dir (#827, #841)

  • 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

  • Item multi inheritance fix (#353, #1228)

  • 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_dir helper in SpiderState extension. (#805)

  • rename “sflo” local variables to less cryptic “log_observer” (#775)

Scrapy 0.24.6 (2015-04-20)

Scrapy 0.24.5 (2015-02-25)

Scrapy 0.24.4 (2014-08-09)

Scrapy 0.24.3 (2014-08-09)

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

  • Improve Scrapy top-level namespace (#494, #684)

  • Add selector shortcuts to responses (#554, #690)

  • Add new lxml based LinkExtractor to replace unmaintained SgmlLinkExtractor (#559, #761, #763)

  • Cleanup settings API - part of per-spider settings GSoC project (#737)

  • Add UTF8 encoding header to templates (#688, #762)

  • Telnet console now binds to 127.0.0.1 by default (#699)

  • Update Debian/Ubuntu install instructions (#509, #549)

  • 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/filtered and offsite/domains stats (#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)

  • Add content-type check to http compression mw (#193, #660)

  • 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)

  • Make scrapy.version_info a tuple of integers (#681, #692)

  • 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_fingerprint function (#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_dropped signal (#724)

  • Improve scrapy check contracts command (#733, #752)

  • Document spider.closed() shortcut (#719)

  • Document request_scheduled signal (#746)

  • Add a note about reporting security issues (#697)

  • Add LevelDB http cache storage backend (#626, #500)

  • Sort spider list output of scrapy list command (#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 a reference to unexistent engine attribute (#593, #594)

  • 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)

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_STORAGE to scrapy.contrib.httpcache.DbmCacheStorage

  • Proxy https:// urls using CONNECT method (#392, #397)

  • Add 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 RFPDupeFilter class easily subclassable (#533)

  • Improve test coverage and forthcoming Python 3 support (#525)

  • Promote startup info on settings and middleware to INFO level (#520)

  • Support partials in get_func_args util (#506, #504)

  • 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-gzip in default Accept-Encoding header (#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)

  • Multiple fixes to memory stats (#531, #530, #529)

  • 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)

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

  • New Selector’s API including CSS selectors (#395 and #426),

  • Request/Response url/body attributes are now immutable (modifying them had been deprecated for a long time)

  • ITEM_PIPELINES is 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)

  • Paved the road for Python 3.3+ (#435, #436, #431, #452)

  • 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 w3lib and queuelib python 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 reset type 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 Scrapy shell bugs (#418, #407)

  • Fix invalid variable name in setup.py (#429)

  • Fix tutorial references (#387)

  • Improve request-response docs (#391)

  • Improve best practices docs (#399, #400, #401, #402)

  • Improve django integration docs (#404)

  • Document bindaddress request meta (commit 37c24e01d7)

  • Improve Request class documentation (#226)

Other

  • Dropped Python 2.6 support (#448)

  • Add cssselect python package as install dependency

  • Drop libxml2 and multi selector’s backend support, lxml is required from now on.

  • Minimum Twisted version increased to 10.0.0, dropped Twisted 8.0 support.

  • Running test suite now requires mock python library (#390)

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)

Scrapy 0.18.2 (released 2013-09-03)

  • Backport scrapy check command 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 HttpCompressionMiddleware using a flag setting (#359)

  • Support xml namespaces using iternodes parser in XMLFeedSpider (#12)

  • Support dont_cache request meta flag (#19)

  • Bugfix scrapy.utils.gz.gunzip broken by changes in python 2.7.4 (commit 4dc76e)

  • Bugfix url encoding on SgmlLinkExtractor (#24)

  • Bugfix TakeFirst processor 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)

  • Use HTTP1.1 as default downloader handler (#109 and #318)

  • 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)

  • Multiples improvements to DjangoItem (#217, #218, #221)

  • Extend Scrapy commands using setuptools entry points (#260)

  • Allow spider allowed_domains value to be set/tuple (#261)

  • Support settings.getdict (#269)

  • Simplify internal scrapy.core.scraper slot 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 --pdb option to scrapy command line tool

  • Added XPathSelector.remove_namespaces which 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)

Scrapy 0.16.2 (released 2012-11-09)

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 -o and -t to the runspider command

  • documented AutoThrottle extension and added to extensions installed by default. You still need to enable it with AUTOTHROTTLE_ENABLED

  • major 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 middlewares

  • dropped 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

  • lxml is now the default selectors backend instead of libxml2

  • ported FormRequest.from_response() to use lxml instead of ClientForm

  • removed modules: scrapy.xlib.BeautifulSoup and scrapy.xlib.ClientForm

  • SitemapSpider: 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 cookiejar Request meta key to support multiple cookie sessions per spider

  • decoupled 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_ENABLED setting, to control referer middleware

  • changed default user agent to: Scrapy/VERSION (+http://scrapy.org)

  • removed (undocumented) HTMLImageLinkExtractor class from scrapy.contrib.linkextractors.image

  • removed per-spider settings (to be replaced by instantiating multiple crawler objects)

  • USER_AGENT spider attribute will no longer work, use user_agent attribute instead

  • DOWNLOAD_TIMEOUT spider attribute will no longer work, use download_timeout attribute instead

  • removed ENCODING_ALIASES setting, as encoding auto-detection has been moved to the w3lib library

  • promoted DjangoItem to main contrib

  • LogFormatter method now return dicts(instead of strings) to support lazy formatting (#164, commit dcef7b0)

  • downloader handlers (DOWNLOAD_HANDLERS setting) now receive settings as the first argument of the __init__ method

  • replaced memory usage accounting with (more portable) resource module, removed scrapy.utils.memory module

  • removed signal: scrapy.mail.mail_sent

  • removed TRACK_REFS setting, now trackrefs is always enabled

  • DBM 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.started attribute

Scrapy 0.14.4

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 -o option to scrapy crawl, a shortcut for dumping scraped items into a file (or standard output using -)

  • Added support for passing custom settings to Scrapyd schedule.json api (r2779, r2783)

  • New ChunkedTransferMiddleware (enabled by default) to support chunked transfer encoding (r2769)

  • Add boto 2.0 support for S3 downloader handler (r2763)

  • Added marshal to formats supported by feed exports (r2744)

  • In request errbacks, offending requests are now received in failure.request attribute (r2738)

  • Big downloader refactoring to support per domain/ip concurrency limits (r2732)
  • 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_ENABLED setting to quickly enable/disable the redirect middleware (r2697)

  • Added RETRY_ENABLED setting to quickly enable/disable the retry middleware (r2694)

  • Added CloseSpider exception 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 LogStats extension 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 -e flag to genspider command 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_error signal (r2628)

  • Added COOKIES_ENABLED setting (r2625)

  • Stats are now dumped to Scrapy log (default value of STATS_DUMP setting has been changed to True). 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.json API to Scrapyd (r2571)

  • CsvItemExporter: added join_multivalued parameter (r2578)

  • Added namespace support to xmliter_lxml (r2552)

  • Improved cookies middleware by making COOKIES_DEBUG nicer 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 removed

    • old log lines Passed Item... were renamed to Scraped Item... lines and downgraded to DEBUG level

  • Reduced Scrapy codebase by striping part of Scrapy code into two new libraries:
    • w3lib (several functions from scrapy.utils.{http,markup,multipart,response,url}, done in r2584)

    • scrapely (was scrapy.contrib.ibl, done in r2586)

  • Removed unused function: scrapy.utils.request.request_info() (r2577)

  • Removed googledir project from examples/googledir. There’s now a new example project called dirbot available on GitHub: https://github.com/scrapy/dirbot

  • Removed 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_CLASS setting) (r2640)

  • Removed support for passing urls to scrapy crawl command (use scrapy parse instead) (r2704)

  • Removed deprecated Execution Queue (r2704)

  • Removed (undocumented) spider context extension (from scrapy.contrib.spidercontext) (r2780)

  • removed CONCURRENT_SPIDERS setting (use scrapyd maxproc instead) (r2789)

  • Renamed attributes of core components: downloader.sites -> downloader.slots, scraper.sites -> scraper.slots (r2717, r2718)

  • Renamed setting CLOSESPIDER_ITEMPASSED to CLOSESPIDER_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 item argument of the item_passed (#273)

  • Added verbose option to scrapy version command, 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 -c argument to scrapy shell command

  • Made libxml2 optional (#260)

  • New deploy command (#261)

  • Added CLOSESPIDER_PAGECOUNT setting (#253)

  • Added CLOSESPIDER_ERRORCOUNT setting (#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 server command to start a Scrapyd server of the current project

Changes to settings

  • added HTTPCACHE_ENABLED setting (False by default) to enable HTTP cache middleware

  • changed HTTPCACHE_EXPIRATION_SECS semantics: now zero means “never expire”.

Deprecated/obsoleted functionality

  • Deprecated runserver command in favor of server command which starts a Scrapyd server. See also: Scrapyd changes

  • Deprecated queue command in favor of using Scrapyd schedule.json API. See also: Scrapyd changes

  • Removed 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 scrapyd for 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_redirect request.meta key for avoiding redirects (#233)

  • Added dont_retry request.meta key for avoiding retries (#234)

Command-line tool changes

  • New scrapy command which replaces the old scrapy-ctl.py (#199) - there is only one global scrapy command now, instead of one scrapy-ctl.py per project - Added scrapy.bat script for running more conveniently from Windows

  • Added bash completion to command-line tool (#210)

  • Renamed command start to runserver (#209)

API changes

  • url and body attributes of Request objects are now read-only (#230)

  • Request.copy() and Request.replace() now also copies their callback and errback attributes (#231)

  • Removed UrlFilterMiddleware from scrapy.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.ScrapyManager class renamed to scrapy.crawler.Crawler

    • scrapy.core.manager.scrapymanager singleton moved to scrapy.project.crawler

  • Moved module: scrapy.contrib.spidermanager to scrapy.spidermanager

  • Spider Manager singleton moved from scrapy.spider.spiders to the spiders attribute of scrapy.project.crawler singleton.

  • moved Stats Collector classes: (#204)
    • scrapy.stats.collector.StatsCollector to scrapy.statscol.StatsCollector

    • scrapy.stats.collector.SimpledbStatsCollector to scrapy.contrib.statscol.SimpledbStatsCollector

  • default per-command settings are now specified in the default_settings attribute 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)

  • moved scrapy.core.signals module to scrapy.signals
    • backward compatibility kept (with deprecation warning)

  • moved scrapy.core.exceptions module to scrapy.exceptions
    • backward compatibility kept (with deprecation warning)

  • added handles_request() class method to BaseSpider

  • dropped scrapy.log.exc() function (use scrapy.log.err() instead)

  • dropped component argument of scrapy.log.msg() function

  • dropped scrapy.log.log_level attribute

  • Added from_settings() class methods to Spider Manager, and Item Pipeline Manager

Changes to settings

  • Added HTTPCACHE_IGNORE_SCHEMES setting to ignore certain schemes on !HttpCacheMiddleware (#225)

  • Added SPIDER_QUEUE_CLASS setting which defines the spider queue to use (#220)

  • Added KEEP_ALIVE setting (#220)

  • Removed SERVICE_QUEUE setting (#220)

  • Removed COMMANDS_SETTINGS_MODULE setting (#201)

  • Renamed REQUEST_HANDLERS to DOWNLOAD_HANDLERS and 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_ENCODING setting (r1956, documentation available)

  • Added RANDOMIZE_DOWNLOAD_DELAY setting (enabled by default) (r1923, doc available)

  • MailSender is 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_name to Spider.name (SEP-012, r1975)

  • Response.encoding is now the detected encoding (r1961)

  • HttpErrorMiddleware now returns None or raises an exception (r2006 | #157)

  • scrapy.command modules relocation (r2035, r2036, r2037)

  • Added ExecutionQueue for feeding spiders to scrape (r2034)

  • Removed ExecutionEngine singleton (r2039)

  • Ported S3ImagesStore (images pipeline) to use boto and threads (r2033)

  • Moved module: scrapy.management.telnet to scrapy.telnet (r2047)

Changes to default settings

  • Changed default SCHEDULER_ORDER to DFO (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_click argument to FormRequest.from_response() method (r1813, r1816)

  • Added clickdata argument to FormRequest.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.ScrapedItem class - use scrapy.item.Item instead (r1838)

  • Removed deprecated scrapy.xpath module - use scrapy.selector instead. (r1836)

  • Removed deprecated core.signals.domain_open signal - use core.signals.domain_opened instead (r1822)

  • log.msg() now receives a spider argument (r1822)
    • Old domain argument has been deprecated and will be removed in 0.9. For spiders, you should always use the spider argument and pass spider references. If you really want to pass a string, use the component argument instead.

  • Changed core signals domain_opened, domain_closed, domain_idle

  • Changed Item pipeline to use spiders instead of domains
    • The domain argument of process_item() item pipeline method was changed to spider, 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_name where you previously used domain.

  • Changed Stats API to use spiders instead of domains (r1849 | #113)
    • StatsCollector was changed to receive spider references (instead of domains) in its methods (set_value, inc_value, etc).

    • added StatsCollector.iter_spider_stats() method

    • removed StatsCollector.list_domains() method

    • Also, 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_name where you previously used domain. spider_stats contains exactly the same data as domain_stats.

  • CloseDomain extension moved to scrapy.contrib.closespider.CloseSpider (r1833)
    • Its settings were also renamed:
      • CLOSEDOMAIN_TIMEOUT to CLOSESPIDER_TIMEOUT

      • CLOSEDOMAIN_ITEMCOUNT to CLOSESPIDER_ITEMCOUNT

  • Removed deprecated SCRAPYSETTINGS_MODULE environment variable - use SCRAPY_SETTINGS_MODULE instead (r1840)

  • Renamed setting: REQUESTS_PER_DOMAIN to CONCURRENT_REQUESTS_PER_SPIDER (r1830, r1844)

  • Renamed setting: CONCURRENT_DOMAINS to CONCURRENT_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: DontCloseDomain to DontCloseSpider (r1859 | #120)

  • Renamed extension: DelayedCloseDomain to SpiderCloseDelay (r1861 | #121)

  • Removed obsolete scrapy.utils.markup.remove_escape_chars function - use scrapy.utils.markup.replace_escape_chars instead (r1865)

Scrapy 0.7

First release of Scrapy.