mirror of https://github.com/scrapy/scrapy.git
minor typo and grammar corrections to docs/faq
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40632
This commit is contained in:
parent
4a3ba6957b
commit
b59acb18ff
|
|
@ -3,7 +3,7 @@
|
|||
Frequently Asked Questions
|
||||
==========================
|
||||
|
||||
How does Scrapy compare to BeatifulSoul or lxml?
|
||||
How does Scrapy compare to BeautifulSoul or lxml?
|
||||
------------------------------------------------
|
||||
|
||||
`BeautifulSoup`_ and `lxml`_ are libraries for parsing HTML and XML. Scrapy is
|
||||
|
|
@ -13,9 +13,9 @@ extract data from it. Scrapy provides some mechanisms for extracting data
|
|||
feel more comfortable with them. After all, they're just parsing libraries
|
||||
which can be imported and used from any Python code.
|
||||
|
||||
To illustrate from another point of view, comparing `BeautifulSoup`_ or `lxml`_
|
||||
to Scrapy is like comparing `urllib`_ or `urlparse`_ to `Django`_ (a popular
|
||||
Python web framework).
|
||||
In other words, comparing `BeautifulSoup`_ or `lxml`_ to Scrapy is like
|
||||
comparing `urllib`_ or `urlparse`_ to `Django`_ (a popular Python web
|
||||
framework).
|
||||
|
||||
.. _BeautifulSoup: http://www.crummy.com/software/BeautifulSoup/
|
||||
.. _lxml: http://codespeak.net/lxml/
|
||||
|
|
@ -23,9 +23,9 @@ Python web framework).
|
|||
.. _urlparse: http://docs.python.org/library/urlparse.html
|
||||
.. _Django: http://www.djangoproject.com
|
||||
|
||||
Does Scrapy work in Python 3.0?
|
||||
-------------------------------
|
||||
Does Scrapy work with Python 3.0?
|
||||
---------------------------------
|
||||
|
||||
No, and there are no ongoing plans to port Scrapy to Python 3.0 yet. At the
|
||||
moment Scrapy requires Python 2.5 or 2.6 to work.
|
||||
No, and there is no plan to port Scrapy to Python 3.0 yet. At the moment Scrapy
|
||||
requires Python 2.5 or 2.6.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue