Skip to main content

Render beautiful, customizable OpenAPI documentation with Scalar — directly from Python.

Project description

🚀 Scalar DOC

A powerful, customizable, and fully native way to render OpenAPI documentation using Scalar API Reference — directly from Python 🐍.

Demo

✨ Why Scalar DOC?

scalar-doc is a lightweight Python package for generating beautiful, interactive API documentation from OpenAPI specs using the blazing-fast and modern Scalar.

Unlike static alternatives or bulky exporters, Scalar DOC delivers:

  • 100% native Python — no Node.js or frontend tooling required

  • 🎨 Fully customizable UI — control layout, themes, and behavior

  • 🔌 Compatible with any OpenAPI source — JSON files, URLs, or Python dicts from tools like:

  • ⚙️ Zero-config or full control — use sensible defaults or fine-tune every detail

  • 🧰 CLI support — generate docs straight from the terminal (see below)


📦 Installation

pip install scalar-doc

⚙️ Usage

🚀 With FastAPI (or any OpenAPI dict)

from fastapi import FastAPI, responses
from scalar_doc import ScalarDoc

DESCRIPTION = """
# Sidebar Section

## Sidebar SubSection

### Title

Content
"""
from fastapi import FastAPI, responses

from scalar_doc import ScalarDoc

DESCRIPTION = """
# Sidebar Section

## Sidebar SubSection

### Title

Content
"""

app = FastAPI(
    title="Test",
    description=DESCRIPTION,
    docs_url=None,
    redoc_url=None,
)
docs = ScalarDoc.from_spec(spec=app.openapi_url, mode="url")


@app.post("/foo")
def post_foo(a: str):
    return a + " - ok"


@app.get("/docs", include_in_schema=False)
def get_docs():
    docs_html = docs.to_html()
    return responses.HTMLResponse(docs_html)

Run your app and access /docs to see Scalar in action! ✨


🧰 Programmatic Usage (Python)

from scalar_doc import ScalarDocs, ScalarConfiguration

# From URL
docs = ScalarDocs.from_spec("https://api.example.com/openapi.json", mode="url")
docs.set_title("My API Docs")

# Optional: configure appearance/behavior
docs.set_configuration(ScalarConfiguration(hide_sidebar=True))

# Export to HTML
docs.to_file("docs/index_from_url.html")

# From local JSON file
with open("openapi.json", "r", encoding="utf-8") as f:
    docs.set_spec(f.read(), mode="json")
    docs.to_file("docs/index_from_file.html")

Then open the generated HTML in your browser!


💻 CLI Usage

You can also use Scalar DOC via command-line:

scalar-doc path/to/openapi.json --mode json --output docs.html

Or from a remote OpenAPI spec:

scalar-doc https://api.example.com/openapi.json --output docs.html

Customization via CLI is coming soon — stay tuned!


🎨 Customization Options

Fine-tune your docs' look and behavior using:

  • Theme — Light/dark color schemes, logo, favicon
  • Header — Logo (light/dark), external links
  • Configuration — Toggle visibility of models, sidebar, search, examples, etc.

See the ScalarConfiguration, ScalarTheme, and ScalarHeader classes for full control.

🎵 Spotify-style Example

from scalar_doc import (
    ScalarColorSchema,
    ScalarConfiguration,
    ScalarDoc,
    ScalarHeader,
    ScalarTheme,
)

spotify_docs = ScalarDoc.from_spec(
    "https://raw.githubusercontent.com/sonallux/spotify-web-api/refs/heads/main/official-spotify-open-api.yml"
)

spotify_docs.set_title("Spotify")
spotify_docs.set_header(
    ScalarHeader(
        logo_url="https://storage.googleapis.com/pr-newsroom-wp/1/2023/09/Spotify_Logo_RGB_Green.png",
        logo_url_dark="https://storage.googleapis.com/pr-newsroom-wp/1/2023/09/Spotify_Logo_RGB_White.png",
        links={"Spotify": "https://spotify.com"},
    )
)
spotify_docs.set_configuration(
    ScalarConfiguration(
        hide_download_button=True,
        show_models=False,
        expand_table_of_contents=True,
        schema_style="table",
    )
)
spotify_docs.set_theme(
    ScalarTheme(
        favicon_url="https://upload.wikimedia.org/wikipedia/commons/1/19/Spotify_logo_without_text.svg",
        color_scheme_light=ScalarColorSchema(
            color_1="#191414",
            color_2="#3e3e3e",
            color_3="#1DB954",
            background_1="#ffffff",
            background_2="#f0f0f0",
            background_3="#e6e6e6",
            color_accent="#1DB954",
            background_accent="#d2fbe3",
            link_color="#1DB954",
            code="#2b2b2b",
        ),
        color_scheme_dark=ScalarColorSchema(
            color_1="#ffffff",
            color_2="#aaaaaa",
            color_3="#1DB954",
            background_1="#191414",
            background_2="#121212",
            background_3="#282828",
            color_accent="#1DB954",
            background_accent="#1DB95433",
            link_color="#1DB954",
            code="#1DB954",
        ),
    )
)

📚 References

This library is not affiliated with Scalar, but proudly uses their open-source engine with ❤️ and proper attribution.


🤝 Contributing

Found a bug? Have an idea? Want to help improve the library?

Pull requests and issues are warmly welcome!

⚠️ Heads up: Some advanced features like ScalarConfiguration toggles are still being polished and may not reflect immediately in output. Fixes are planned for the next release.


📄 License

MIT License. See LICENSE for details.

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

scalar_doc-0.1.6.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scalar_doc-0.1.6-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file scalar_doc-0.1.6.tar.gz.

File metadata

  • Download URL: scalar_doc-0.1.6.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.10 Linux/6.11.0-1014-azure

File hashes

Hashes for scalar_doc-0.1.6.tar.gz
Algorithm Hash digest
SHA256 1a744347d3008b6186522fcbfe3cb4db37f1526c0a09b96b9a64cda19a35b643
MD5 1c4534f224ed8972463a7eec1943d4f3
BLAKE2b-256 d9623073d73a19a7c1953c65b4b077c184832a482aaf4aa9432939cdaa6ad078

See more details on using hashes here.

File details

Details for the file scalar_doc-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: scalar_doc-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.10 Linux/6.11.0-1014-azure

File hashes

Hashes for scalar_doc-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 6c3847c80285f55b9c49edb0be6fc0d610632f5bdbe6998a4f9e1641b27f3d8a
MD5 9e474b857bf39184e5de34283ed6adbd
BLAKE2b-256 9225d5ddbc882b8e63ec7dc6406baffea9db37686045d108f4243ad7e04e64a9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page