mirror of https://github.com/scrapy/scrapy.git
Merge pull request #1848 from aron-bordin/small_doc_style_fixes
small doc style fixes
This commit is contained in:
commit
ebef6d7c6d
|
|
@ -33,7 +33,7 @@ Scrapy is supported under Python 2.7 only.
|
|||
Python 2.6 support was dropped starting at Scrapy 0.20.
|
||||
|
||||
Does Scrapy work with Python 3?
|
||||
---------------------------------
|
||||
-------------------------------
|
||||
|
||||
No, but there are plans to support Python 3.3+.
|
||||
At the moment, Scrapy works with Python 2.7.
|
||||
|
|
@ -57,8 +57,6 @@ focus on the real problems we need to solve.
|
|||
We'd be proud if Scrapy serves as an inspiration for other projects. Feel free
|
||||
to steal from us!
|
||||
|
||||
.. _Django: https://www.djangoproject.com/
|
||||
|
||||
Does Scrapy work with HTTP proxies?
|
||||
-----------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ Password to use for SMTP authentication, along with :setting:`MAIL_USER`.
|
|||
.. setting:: MAIL_TLS
|
||||
|
||||
MAIL_TLS
|
||||
---------
|
||||
--------
|
||||
|
||||
Default: ``False``
|
||||
|
||||
|
|
@ -173,7 +173,7 @@ Enforce using STARTTLS. STARTTLS is a way to take an existing insecure connectio
|
|||
.. setting:: MAIL_SSL
|
||||
|
||||
MAIL_SSL
|
||||
---------
|
||||
--------
|
||||
|
||||
Default: ``False``
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ the same media to that queue. This avoids downloading the same media more than
|
|||
once when it's shared by several items.
|
||||
|
||||
Using the Files Pipeline
|
||||
=========================
|
||||
========================
|
||||
|
||||
The typical workflow, when using the :class:`FilesPipeline` goes like
|
||||
this:
|
||||
|
|
@ -104,7 +104,7 @@ behaviour, see :ref:`topics-media-pipeline-override`.
|
|||
.. _topics-media-pipeline-enabling:
|
||||
|
||||
Enabling your Media Pipeline
|
||||
=============================
|
||||
============================
|
||||
|
||||
.. setting:: IMAGES_STORE
|
||||
.. setting:: FILES_STORE
|
||||
|
|
@ -175,7 +175,7 @@ Additional features
|
|||
===================
|
||||
|
||||
File expiration
|
||||
----------------
|
||||
---------------
|
||||
|
||||
.. setting:: IMAGES_EXPIRES
|
||||
.. setting:: FILES_EXPIRES
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@ Request objects
|
|||
|
||||
request_with_cookies = Request(url="http://www.example.com",
|
||||
cookies={'currency': 'USD', 'country': 'UY'})
|
||||
|
||||
2. Using a list of dicts::
|
||||
|
||||
request_with_cookies = Request(url="http://www.example.com",
|
||||
|
|
|
|||
|
|
@ -342,7 +342,7 @@ Whether to enable DNS in-memory cache.
|
|||
.. setting:: DNSCACHE_SIZE
|
||||
|
||||
DNSCACHE_SIZE
|
||||
----------------
|
||||
-------------
|
||||
|
||||
Default: ``10000``
|
||||
|
||||
|
|
@ -351,7 +351,7 @@ DNS in-memory cache size.
|
|||
.. setting:: DNS_TIMEOUT
|
||||
|
||||
DNS_TIMEOUT
|
||||
----------------
|
||||
-----------
|
||||
|
||||
Default: ``60``
|
||||
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ request_scheduled
|
|||
:type spider: :class:`~scrapy.spiders.Spider` object
|
||||
|
||||
request_dropped
|
||||
-----------------
|
||||
---------------
|
||||
|
||||
.. signal:: request_dropped
|
||||
.. function:: request_dropped(request, spider)
|
||||
|
|
|
|||
Loading…
Reference in New Issue