pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
443 B
23 lines
443 B
from fastapi import FastAPI
|
|
from fastapi.middleware.wsgi import WSGIMiddleware
|
|
from flask import Flask, request
|
|
from markupsafe import escape
|
|
|
|
flask_app = Flask(__name__)
|
|
|
|
|
|
@flask_app.route("/")
|
|
def flask_main():
|
|
name = request.args.get("name", "World")
|
|
return f"Hello, {escape(name)} from Flask!"
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/v2")
|
|
def read_main():
|
|
return {"message": "Hello World"}
|
|
|
|
|
|
app.mount("/v1", WSGIMiddleware(flask_app))
|
|
|