Spaces:
Sleeping
Sleeping
File size: 686 Bytes
9ec2d3e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
from fastapi import FastAPI, File, UploadFile
from fastapi.responses import HTMLResponse
app = FastAPI()
# HTML form for file upload
html_content = """
<!DOCTYPE html>
<html>
<head>
<title>File Upload</title>
</head>
<body>
<h2>Upload a File</h2>
<form action="/uploadfile/" method="post" enctype="multipart/form-data">
<input name="file" type="file">
<input type="submit">
</form>
</body>
</html>
"""
@app.get("/", response_class=HTMLResponse)
async def read_root():
return html_content
@app.post("/uploadfile/")
async def upload_file(file: UploadFile = File(...)):
return {"filename": file.filename}
|