Spaces:
Sleeping
Sleeping
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> | |
""" | |
async def read_root(): | |
return html_content | |
async def upload_file(file: UploadFile = File(...)): | |
return {"filename": file.filename} | |