scrapy/docs
Adrián Chaves 28df50ddcc Minor edits around Optimization 2025-03-31 17:13:40 +02:00
..
_ext Upgrade Sphinx (#6624) 2025-01-22 18:09:42 +01:00
_static Support dark mode in the documentation (#6653) 2025-02-06 18:07:07 +01:00
_tests Remove trailing whitespace 2025-03-11 11:56:44 +01:00
intro Clean up from self-review 2025-03-27 14:03:39 +01:00
topics Minor edits around Optimization 2025-03-31 17:13:40 +02:00
utils IOError and other cleanup (#4716) 2023-06-21 20:08:53 +02:00
Makefile chore(docs): refactor config (#6623) 2025-01-20 12:18:30 +01:00
README.rst Typo: cleanup (verb) → clean up (#5538) 2022-06-20 11:54:05 +02:00
conf.py Merge branch 'minimal-async-seeds' into async-seeds 2025-03-28 15:54:23 +01:00
conftest.py adding black formatter to all the code 2022-11-29 11:30:46 -03:00
contributing.rst Restore old issue title reference 2025-03-26 19:44:29 +01:00
faq.rst Remove or post-pone the use of itemadapter.is_item, as a potentially expensive call (#6719) 2025-03-11 14:52:48 +01:00
index.rst WIP documentation improvements 2025-03-17 01:12:26 +01:00
news.rst Re-implement idle support 2025-03-31 15:18:38 +02:00
requirements.txt Remove enum-tools 2025-03-27 12:05:20 +01: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>