scrapy/docs
Andy 1c9d308acc
Cover the deprecation and removal of response_httprepr in the release notes (#6216)
2024-02-05 12:52:01 +01:00
..
_ext sort imports with isort 2023-01-25 14:25:15 -06:00
_static HTML Conventions 2022-03-17 20:09:56 +01:00
_tests Update quotes.toscrape.com page copies (#6190) 2023-12-28 12:25:01 +01:00
intro Make shell switching more clear in the tutorial (#6128) 2023-11-03 10:02:18 +01:00
topics Attend PR comments 2024-01-31 12:29:43 -03:00
utils IOError and other cleanup (#4716) 2023-06-21 20:08:53 +02:00
Makefile Fixed Docs Makefile to open build/html/index.html in browser(#5878) 2023-03-28 23:23:32 +05:30
README.rst Typo: cleanup (verb) → clean up (#5538) 2022-06-20 11:54:05 +02:00
conf.py Change supported PyPy versions to 3.9 and 3.10. (#6087) 2023-10-06 11:27:02 +02:00
conftest.py adding black formatter to all the code 2022-11-29 11:30:46 -03:00
contributing.rst Update black reference in docs (#6192) 2023-12-29 12:32:51 +01:00
faq.rst make suggestion 2024-01-18 09:36:25 -05:00
index.rst More doc fixes. 2023-06-15 18:49:08 +04:00
news.rst Cover the deprecation and removal of response_httprepr in the release notes (#6216) 2024-02-05 12:52:01 +01:00
requirements.txt chore(docs): update `sphinx` dependencies (#6200) 2024-01-15 14:11:33 +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>