17 lines
364 B
Python
17 lines
364 B
Python
import json
|
|
|
|
from app import app
|
|
from fastapi.openapi.utils import get_openapi
|
|
|
|
with open("openapi.json", "w") as f:
|
|
json.dump(
|
|
get_openapi(
|
|
title=app.title,
|
|
version=app.version,
|
|
openapi_version=app.openapi_version,
|
|
description=app.description,
|
|
routes=app.routes,
|
|
),
|
|
f,
|
|
)
|