Metadata-Version: 2.4
Name: sphinx-scrapy
Version: 0.5.0
Summary: Sphinx extension for documentation in the Scrapy ecosystem
Project-URL: Source, https://github.com/scrapy/sphinx-scrapy
Project-URL: Tracker, https://github.com/scrapy/sphinx-scrapy/issues
Project-URL: Release notes, https://github.com/scrapy/sphinx-scrapy/blob/main/CHANGES.rst
Author-email: Scrapy developers <opensource@zyte.com>
Maintainer-email: Scrapy developers <opensource@zyte.com>
License-Expression: BSD-3-Clause
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Scrapy
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Requires-Dist: sphinx
Description-Content-Type: text/x-rst

=============
sphinx-scrapy
=============

|version| |python_version|

.. |version| image:: https://img.shields.io/pypi/v/sphinx-scrapy.svg
   :target: https://pypi.org/pypi/sphinx-scrapy
   :alt: PyPI version

.. |python_version| image:: https://img.shields.io/pypi/pyversions/sphinx-scrapy.svg
   :target: https://pypi.org/pypi/sphinx-scrapy
   :alt: Supported Python versions

Sphinx_ extension for documentation in the Scrapy_ ecosystem.

.. _Sphinx: https://www.sphinx-doc.org/
.. _Scrapy: https://scrapy.org/


Features
========

-   Automatic configuration of intersphinx_ for Python_ and Scrapy_.

    Ready-to-use, easy-to-enable configuration for the following packages of
    the Scrapy_ ecosystem is also available:

    .. _intersphinx: https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html
    .. _Python: https://docs.python.org/

    | `attrs <https://www.attrs.org/en/stable/>`_
    | `cssselect <https://cssselect.readthedocs.io/en/latest>`_
    | `dateparser <https://dateparser.readthedocs.io/en/latest/>`_
    | `form2request <https://form2request.readthedocs.io/en/latest/>`_
    | `formasaurus <https://formasaurus.readthedocs.io/en/latest/>`_
    | `itemloaders <https://itemloaders.readthedocs.io/en/latest/>`_
    | `jinja <https://jinja.palletsprojects.com/en/latest/>`_
    | `lxml <https://lxml.de/apidoc/>`_
    | `packaging <https://packaging.pypa.io/en/stable/>`_
    | `parsel <https://parsel.readthedocs.io/en/latest/>`_
    | `pytest <https://docs.pytest.org/en/stable/>`_
    | `python-scrapinghub <https://python-scrapinghub.readthedocs.io/en/latest/>`_
    | `python-zyte-api <https://python-zyte-api.readthedocs.io/en/stable/>`_
    | `scrapy-poet <https://scrapy-poet.readthedocs.io/en/stable/>`_
    | `scrapy-spider-metadata <https://scrapy-spider-metadata.readthedocs.io/en/latest/>`_
    | `scrapy-zyte-api <https://scrapy-zyte-api.readthedocs.io/en/latest/>`_
    | `scrapy-zyte-smartproxy <https://scrapy-zyte-smartproxy.readthedocs.io/en/latest/>`_
    | `scrapyd <https://scrapyd.readthedocs.io/en/latest/>`_
    | `shub <https://shub.readthedocs.io/en/latest/>`_
    | `shub-image <https://shub-image.readthedocs.io/en/latest/>`_
    | `spidermon <https://spidermon.readthedocs.io/en/latest/>`_
    | `tenacity <https://tenacity.readthedocs.io/en/latest>`_
    | `twisted <https://docs.twisted.org/en/stable/>`_ (and `twistedapi <https://docs.twisted.org/en/stable/api/>`_)
    | `url-matcher <https://url-matcher.readthedocs.io/en/stable/>`_
    | `w3lib <https://w3lib.readthedocs.io/en/latest/>`_
    | `web-poet <https://web-poet.readthedocs.io/en/stable/>`_
    | `zyte <https://docs.zyte.com>`_
    | `zyte-common-items <https://zyte-common-items.readthedocs.io/en/latest>`_
    | `zyte-parsers <https://zyte-parsers.readthedocs.io/en/latest/>`_
    | `zyte-spider-templates <https://zyte-spider-templates.readthedocs.io/en/latest>`_

    To automatically configure intersphinx for any of those packages if
    installed, add to your ``conf.py`` file:

    .. code-block:: python

        scrapy_intersphinx_enable_installed = True

    You can also enable or disable the automatic intersphinx configuration of
    packages manually:

    .. code-block:: python

        scrapy_intersphinx_enable = [
            "parsel",
            "w3lib",
        ]
        scrapy_intersphinx_disable = [
            "scrapy",
        ]

-   Automatic configuration of Sphinx roles of the Scrapy documentation, so
    that you can easily link to Scrapy settings, request metadata keys, signals
    and commands:

    .. code-block:: rst

        :setting:`BOT_NAME`
        :setting:`LOG_LEVEL <scrapy:LOG_LEVEL>`
        :reqmeta:`download_slot`
        :signal:`spider_opened`
        :command:`crawl`


Setup
=====

#.  Install:

    .. code-block:: shell

        pip install sphinx-scrapy

#.  Add to your ``conf.py``:

    .. code-block:: python

        extensions = [
            "sphinx.ext.intersphinx",
            "sphinx_scrapy",
        ]


Release notes
=============

See `Release notes`_ for a list of releases and their changes.

.. _Release notes: https://github.com/scrapy/sphinx-scrapy/blob/main/CHANGES.rst
