scrapy/docs
Yohanna Lisnichuk b63ca6f834 docs: use the right notes directive 2022-12-15 13:20:45 -03:00
..
_ext Address some issues reported by Pylint (#5677) 2022-11-27 11:00:13 +01:00
_static HTML Conventions 2022-03-17 20:09:56 +01:00
_templates Rebranding, updated GA code 2021-04-01 11:11:28 +03:00
_tests Make developer-tools doctests pass 2019-11-25 12:32:35 +01:00
intro Merge branch 'master' into pathlib 2022-11-25 18:20:25 +05:00
topics docs: use the right notes directive 2022-12-15 13:20:45 -03:00
utils Address some issues reported by Pylint (#5677) 2022-11-27 11:00:13 +01:00
Makefile use pathlib 2022-10-17 17:40:10 -04:00
README.rst Typo: cleanup (verb) → clean up (#5538) 2022-06-20 11:54:05 +02:00
conf.py use pathlib 2022-10-17 17:40:10 -04:00
conftest.py Address some issues reported by Pylint (#5677) 2022-11-27 11:00:13 +01:00
contributing.rst Update test-standard link in contributing docs (#5631) 2022-09-20 18:47:20 +02:00
faq.rst removed the pywin32 docs section (#5370) 2022-03-10 14:54:33 +01:00
index.rst Update docs/index.rst 2022-07-27 23:12:43 +05:00
news.rst Fix the name of the Proxy-Authorization header in release notes (#5744) 2022-12-05 11:44:39 +01:00
requirements.txt Pin documentation requirements (#5536) 2022-06-20 11:46:13 +02:00
versioning.rst Fix typos 2021-10-11 22:32:42 +08:00

README.rst

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> </head>
orphan:

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 the following command from this dir

pip install -r requirements.txt

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 clean up all generated documentation files and start from scratch run:

make clean

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

Recreating documentation on the fly

There is a way to recreate the doc automatically when you make changes, you need to install watchdog (pip install watchdog) and then use:

make watch

Alternative method using tox

To compile the documentation to HTML run the following command:

tox -e docs

Documentation will be generated (in HTML format) inside the .tox/docs/tmp/html dir.

</html>