From 1ff9a4828ba4c43343e36b2f1935363c067e5c84 Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Tue, 14 Jun 2016 19:33:56 +0200 Subject: [PATCH] Do not commit on any HTML parsing speed assumption with BS4+lxml --- docs/faq.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index af6103828..82e1f3422 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -35,8 +35,7 @@ for parsing HTML responses in Scrapy callbacks. You just have to feed the response's body into a ``BeautifulSoup`` object and extract whatever data you need from it. -Here's an example spider using BeautifulSoup API, with ``lxml`` as the HTML parser -(so you get the same parsing speed as with scrapy/parsel selectors):: +Here's an example spider using BeautifulSoup API, with ``lxml`` as the HTML parser:: from bs4 import BeautifulSoup