Sphinx extension for OpenAPI documentation
Project description
Sphinx Extension: OpenAPI
Description
This Sphinx extension allows for downloading updated OpenAPI json + yaml specs for use with the sphinxcontrib.redoc extension.
Setup
Add the following to your conf.py (includes redoc extension setup):
from pathlib import Path
html_context = {} # This is usually already defined for other themes/extensions
extensions = [
'sphinx_openapi',
'sphinxcontrib.redoc',
]
# -- OpenAPI Shared: Used in multiple extensions --------------------------
# Downloads json|yaml files to here
openapi_dir_path = Path("_static/specs").absolute().as_posix()
# openapi_stop_build_on_error = manifest_is_production_stage # Only stop if production, else just show errs
openapi_stop_build_on_error = True # TEST - DELETE ME
# Link here from rst with explicit ".html" ext (!) but NOT from a doctree
openapi_generated_file_posix_path = Path("content/-/api/index").as_posix() # Parses to forward/slashes/
# -- Extension: sphinx_openapi (OpenAPI Local Download/Updater) -----------
# Used in combination with the sphinxcontrib.redoc extension
# Use OpenAPI ext to download/update → redoc ext to generate
openapi_use_xbe_workarounds = True # We have some floating workarounds; TODO: Fix + Remove
openapi_spec_url_noext = "https://api.demo.goxbe.cloud/v1/openapi" # Swap this with your own
openapi_file_type = "json" # or yaml; we'll download them both but generate from only 1
openapi_use_xbe_workaround = True # We have some floating workarounds within the extension; TODO: Fix + remove
# -- Extension: sphinxcontrib.redoc --------------------------------------
# OpenAPI Docgen: Similar to sphinxcontrib-openapi, but +1 column for example responses
# (!) Prereq: OpenAPI Local Download (above)
# Doc | https://sphinxcontrib-redoc.readthedocs.io/en/stable
# Demo | https://sphinxcontrib-redoc.readthedocs.io/en/stable/api/github/
# (!) Works around a critical bug that default grabs old 1.x ver (that !supports OpenAPI 3+)
redoc_uri = "https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js"
# Intentional forward/slashes/ for html; eg: "_static/specs/openapi.json"
xbe_spec = Path(openapi_dir_path, "openapi.json")
redoc = [{
"name": "Xsolla Backend API",
"page": openapi_generated_file_posix_path, # content/-/api/index
"spec": Path("_static/specs/openapi.json"),
"embed": True, # Local file only (!) but embed is less powerful
"template": Path("_templates/redoc.j2"),
"opts": {
"lazy-rendering": True, # Formerly called `lazy`; almost required for giant docs
"required-props-first": True, # Useful, (!) but slower
"native-scrollbars": False, # Improves perf on big specs when False
"expand-responses": [], # "200", "201",
"suppress-warnings": False,
"hide-hostname": False,
"untrusted-spec": False,
},
}]
print(f'[conf.py::sphinxcontrib.redoc] Build from redoc[0].spec: {redoc[0]["spec"]}')
print(f'[conf.py::sphinxcontrib.redoc] Displaying at redoc[0].page: {redoc[0]["page"]}')
print("")
Requirements
- Python>=3.6
- Sphinx>=7
This may work with older versions, but has not been tested.
Entry Point
See setup(app) definition at sphinx_openapi.py.
Tested in
- Windows 11 via PowerShell 7
- Ubuntu 22.04 via ReadTheDocs (RTD) CI
- Python 3.10~3.12
- Sphinx 7~8
Notes
__init__.pyis required for both external pathing and to treat the directory as a pkg- @ XBE Docs devs: In conf.py, add
openapi_use_xbe_workarounds = True, for now, for WIP bug workarounds
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sphinx_openapi-1.0.8.tar.gz.
File metadata
- Download URL: sphinx_openapi-1.0.8.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4343ebedcf311ead7bfc1687272b75411eea649bcb81415198633af93f3a23de
|
|
| MD5 |
4d23ab3b99cc7b864c309d4b1caff258
|
|
| BLAKE2b-256 |
0d8cdd6ed623065333c5935cc9229ea9bcefae7a1ebe177eca6964a06a57ae8e
|
File details
Details for the file sphinx_openapi-1.0.8-py3-none-any.whl.
File metadata
- Download URL: sphinx_openapi-1.0.8-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82e31236fb6f82db233ddda2be5b9c7cc4901bad4d89a1276b90c9c00e0bde59
|
|
| MD5 |
8ceabf210ea60855ed4e6566b8038717
|
|
| BLAKE2b-256 |
d4a3350f5b32892ba9537cf09ac9177fc9327d450be4d29117bc0b3cd997535a
|