Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

display pdf in html fastapi

from fastapi import FastAPI, UploadFile, File


app = FastAPI()


@app.post("/file")
async def upload_file(file: UploadFile = File(...)):
    # Do here your stuff with the file
    return {"filename": file.filename}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #display #pdf #html #fastapi
ADD COMMENT
Topic
Name
1+7 =