Swagger2 support for FastAPI framework
Project description
fastapi_swagger2
Swagger2 support for FastAPI
Reason behind this library:
Few API GW services like Google Cloud API GW still support only Swagger 2.0 spec. Since FastAPI only supports OAS3, it is a challenge. Converting from OAS3 to Swagger 2.0 requires some manual steps which would hinder CI/CD.
Requirements
Python 3.9+
- 0.0.3 - FastAPI >= 0.79.0, <= 0.98.0
- 0.1.1 - FastAPI >= 0.99.0, <= 0.99.1
- 0.2.4 - FastAPI >= 0.100.0
- 0.2.7 - FastAPI >= 0.100.0, < 0.119.0 + Pydantic v1/v2
- 0.3.0 - FastAPI >= 0.119.0, <= 0.123.8 + Pydantic v1/v2
- 0.3.1 - FastAPI >= 0.123.9, <= 0.127.1 + Pydantic v1/v2 (Since FastAPI 0.126.1, Pydantic v1 is deprecated)
- 0.3.2 - FastAPI >= 0.128.0, <= 0.128.3
- 0.3.3 - FastAPI >= 0.128.4, <= 0.128.8 (FastAPI has dropped Python 3.9 support since 0.129.1)
- 0.3.4 - FastAPI >= 0.129.0 (last tested against 0.133.1)
Installation
$ pip install fastapi_swagger2
Development
$ uv sync --extra dev --extra test --extra all
Example
from typing import Union
from fastapi import FastAPI
from fastapi_swagger2 import FastAPISwagger2
app = FastAPI()
FastAPISwagger2(app)
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: Union[str, None] = None):
return {"item_id": item_id, "q": q}
This adds following endpoints:
- http://localhost:8000/swagger2.json
- http://localhost:8000/swagger2/docs
- http://localhost:8000/swagger2/redoc
Generate spec for CI/CD
import os
import yaml
from app.main import app
URL = os.environ["CLOUD_RUN_URL"]
app.servers.append(URL)
spec = app.swagger2()
spec['x-google-backend'] = {'address': URL}
print(yaml.dump(spec))
Development
$ uv sync --extra dev --extra test --extra all
Project details
Release history Release notifications | RSS feed
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 fastapi_swagger2-0.3.4.tar.gz.
File metadata
- Download URL: fastapi_swagger2-0.3.4.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6591db3605e68a5921dc6800df8d363887d3dfd59de1e3f1a2894ef5f242507f
|
|
| MD5 |
5428ca98bf20cd77ef43d349a8a8f789
|
|
| BLAKE2b-256 |
6fec1c4370dddf3aec1f0efe0693ecfe01346313c17c3bc4a50578a015403448
|
File details
Details for the file fastapi_swagger2-0.3.4-py3-none-any.whl.
File metadata
- Download URL: fastapi_swagger2-0.3.4-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f28e42fee3d0238b55405904333e0648f646c4a708b0fa969af59375f3cf23ad
|
|
| MD5 |
74e88b3d37f6b494d94ea9df47d8db28
|
|
| BLAKE2b-256 |
e4128ecfc6739870de2414b291b24ead7cdeb6b5196a86a2de946d3988a9a3cc
|