scrapy/docs
bagratte 1312bcd007 minor corrections in documentation. 2015-04-19 18:58:15 +04:00
..
_ext added issue role to documentation 2012-08-31 18:39:30 -03:00
_static DOC remove css file which isno longer needed 2015-04-15 03:44:49 +05:00
experimental added documentation (experimental feature) 2013-03-06 06:36:23 +11:00
intro minor corrections in documentation. 2015-04-18 19:48:25 +04:00
topics minor corrections in documentation. 2015-04-19 18:58:15 +04:00
utils Added linkfix script to docs/utils 2015-03-18 19:41:26 -03:00
Makefile Add linkfix rule to docs Makefile 2015-03-18 20:00:03 -03:00
README DOC update docs readme file - sphinx >= 1.3 is now required. 2015-04-15 11:50:57 +05:00
conf.py DOC make local docs use the same theme as readthedocs.org 2015-04-15 03:43:30 +05:00
contributing.rst Fix some redirection links in documentation 2015-03-18 19:41:26 -03:00
faq.rst improve scrapy deploy documentation 2015-04-09 17:39:01 -03:00
index.rst improve scrapy deploy documentation 2015-04-09 17:39:01 -03:00
news.rst fix truncated 0.24.5 release notes. closes #1084 2015-03-18 20:46:28 -03:00
versioning.rst updated versioning doc according to recent changes 2012-01-05 11:50:28 -02:00

README

======================================
Scrapy documentation quick start guide
======================================

This file provides a quick guide on how to compile the Scrapy documentation.


Setup the environment
---------------------

To compile the documentation you need Sphinx Python library. To install it
and all its dependencies run

::

    pip install 'Sphinx >= 1.3'


Compile the documentation
-------------------------

To compile the documentation (to classic HTML output) run the following command
from this dir::

    make html

Documentation will be generated (in HTML format) inside the ``build/html`` dir.


View the documentation
----------------------

To view the documentation run the following command::

    make htmlview

This command will fire up your default browser and open the main page of your
(previously generated) HTML documentation.


Start over
----------

To cleanup all generated documentation files and start from scratch run::

    make clean

Keep in mind that this command won't touch any documentation source files.