Skip to content

Commit 4b0098e

Browse files
authored
Merge pull request #3301 from cloudflare/dominik/sphinx-docs
Adds Sphinx config to generate Python SDK docs.
2 parents d189253 + 4dbaa80 commit 4b0098e

File tree

10 files changed

+179
-0
lines changed

10 files changed

+179
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_build
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = .
9+
BUILDDIR = _build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Python SDK docs markdown generator
2+
3+
This directory contains config files for Sphinx, which can generate docs based on the exported methods in asgi.py and workers.py. These files are a part of the Python SDK.
4+
5+
### Usage
6+
7+
8+
```
9+
python -m venv .venv
10+
source .venv/bin/activate
11+
pip install -r requirements-doc.txt
12+
make markdown
13+
```
14+
15+
You'll then find the markdown in _build/markdown/docs/workers.md.
16+
17+
Make a PR in the cloudflare-docs repo to update the appropriate files.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Configuration file for the Sphinx documentation builder.
2+
#
3+
# For the full list of built-in configuration values, see the documentation:
4+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
5+
6+
# -- Project information -----------------------------------------------------
7+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8+
9+
project = "Python Workers API"
10+
copyright = "2025, Cloudflare"
11+
author = "Cloudflare"
12+
13+
# -- General configuration ---------------------------------------------------
14+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
15+
16+
extensions = [
17+
"sphinx.ext.autodoc",
18+
"sphinx_markdown_builder",
19+
"sphinx.ext.autosummary",
20+
"myst_parser",
21+
]
22+
autodoc_mock_imports = ["js", "pyodide.http", "pyodide.ffi", "fastapi", "pyodide"]
23+
24+
25+
templates_path = ["_templates"]
26+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
27+
28+
29+
# -- Options for HTML output -------------------------------------------------
30+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
31+
32+
html_theme = "alabaster"
33+
html_static_path = ["_static"]
34+
35+
# Add the parent dir to the search path, so that the .py files can be accessed.
36+
import sys
37+
from pathlib import Path
38+
39+
sys.path.insert(0, str(Path.resolve(Path(".."))))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
asgi module
2+
===========
3+
4+
.. automodule:: asgi
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
SDK
2+
===
3+
4+
.. toctree::
5+
:maxdepth: 4
6+
7+
asgi
8+
workers
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
workers module
2+
==============
3+
4+
.. automodule:: workers
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.. Python Workers API documentation master file, created by
2+
sphinx-quickstart on Tue Jan 7 15:01:02 2025.
3+
You can adapt this file completely to your liking, but it should at least
4+
contain the root `toctree` directive.
5+
6+
Python Workers API documentation
7+
================================
8+
9+
Add your content using ``reStructuredText`` syntax. See the
10+
`reStructuredText <https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html>`_
11+
documentation for details.
12+
13+
14+
.. toctree::
15+
:maxdepth: 2
16+
:caption: Contents:
17+
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
@ECHO OFF
2+
3+
pushd %~dp0
4+
5+
REM Command file for Sphinx documentation
6+
7+
if "%SPHINXBUILD%" == "" (
8+
set SPHINXBUILD=sphinx-build
9+
)
10+
set SOURCEDIR=.
11+
set BUILDDIR=_build
12+
13+
%SPHINXBUILD% >NUL 2>NUL
14+
if errorlevel 9009 (
15+
echo.
16+
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
17+
echo.installed, then set the SPHINXBUILD environment variable to point
18+
echo.to the full path of the 'sphinx-build' executable. Alternatively you
19+
echo.may add the Sphinx directory to PATH.
20+
echo.
21+
echo.If you don't have Sphinx installed, grab it from
22+
echo.https://www.sphinx-doc.org/
23+
exit /b 1
24+
)
25+
26+
if "%1" == "" goto help
27+
28+
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
29+
goto end
30+
31+
:help
32+
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
33+
34+
:end
35+
popd
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
alabaster==1.0.0
2+
babel==2.16.0
3+
certifi==2024.12.14
4+
charset-normalizer==3.4.1
5+
docutils==0.21.2
6+
idna==3.10
7+
imagesize==1.4.1
8+
Jinja2==3.1.5
9+
markdown-it-py==3.0.0
10+
MarkupSafe==3.0.2
11+
mdit-py-plugins==0.4.2
12+
mdurl==0.1.2
13+
myst-parser==4.0.0
14+
packaging==24.2
15+
Pygments==2.19.1
16+
PyYAML==6.0.2
17+
requests==2.32.3
18+
snowballstemmer==2.2.0
19+
Sphinx==8.1.3
20+
sphinx-markdown-builder==0.6.7
21+
sphinxcontrib-applehelp==2.0.0
22+
sphinxcontrib-devhelp==2.0.0
23+
sphinxcontrib-htmlhelp==2.1.0
24+
sphinxcontrib-jsmath==1.0.1
25+
sphinxcontrib-qthelp==2.0.0
26+
sphinxcontrib-serializinghtml==2.0.0
27+
tabulate==0.9.0
28+
urllib3==2.3.0

0 commit comments

Comments
 (0)