upload.py 820 B

12345678910111213141516171819202122232425
  1. from fastapi import FastAPI, File, UploadFile
  2. from pathlib import Path
  3. app = FastAPI()
  4. @app.post("/pushUpdate/{branch}/{version}/{os}")
  5. async def push_update(file: UploadFile, branch: str,version: str,os: str):
  6. nfile = Path(f'{branch}/{version}/{os}/{file.filename}')
  7. nfile.parent.mkdir(parents=True, exist_ok=True)
  8. print(f'{branch}/{version}/{os}/{file.filename}')
  9. with open(f'{branch}/{version}/{os}/{file.filename}',"w") as f :
  10. content = await file.read()
  11. f.write(content.decode())
  12. f.close()
  13. return {"filename": file.filename}
  14. @app.post("/uploadfile/")
  15. async def create_upload_file(file: UploadFile):
  16. with open(file.filename,"w") as f :
  17. content = await file.read()
  18. f.write(content.decode())
  19. f.close()
  20. return {"filename": file.filename}