Spaces:
Running
Running
from fastapi import FastAPI | |
from fastapi.middleware.gzip import GZipMiddleware | |
app = FastAPI() | |
app.add_middleware(GZipMiddleware, minimum_size=1000) | |
# Your existing routes | |
async def upload_file(file: UploadFile = File(...)): | |
file_path = os.path.join(UPLOAD_DIR, file.filename) | |
with open(file_path, "wb") as buffer: | |
shutil.copyfileobj(file.file, buffer) | |
return {"filename": file.filename} | |
async def download_file(filename: str): | |
file_path = os.path.join(UPLOAD_DIR, filename) | |
if os.path.exists(file_path): | |
return FileResponse(file_path, media_type='application/octet-stream', filename=filename) | |
return {"error": "File not found"} |