Selaa lähdekoodia

client.py working

alexis 1 vuosi sitten
vanhempi
commit
cee8ed7d3c
2 muutettua tiedostoa jossa 7 lisäystä ja 3 poistoa
  1. 6 2
      client.py
  2. 1 1
      upload.py

+ 6 - 2
client.py

@@ -2,8 +2,12 @@ from fastapi import FastAPI
 from fastapi.responses import FileResponse
 
 
+import os
+
+
 app = FastAPI()
 
-@app.get("downloadUpdate/{branch}/{version}/{os}/{file}")
+@app.get("/downloadUpdate/{branch}/{version}/{os}/{file}")
 async def downloadUpdate(file: str, branch: str,version: str,os: str):
-    return FileResponse(path=f'{branch}/{version}/{os}/{file.filename}', filename=file.filename, media_type='text/yml')
+    file_path = f'{branch}/{version}/{os}/'
+    return FileResponse(path=file_path+file, filename=file)

+ 1 - 1
upload.py

@@ -4,7 +4,7 @@ from pathlib import Path
 
 
 app = FastAPI()
-
+#curl 'http://127.0.0.1:8000/pushUpdate/dev/0.1/linux -H 'accept: application/json' -H 'Content-Type: multipart/form-data' -F 'file=@updatefile.yml'
 @app.post("/pushUpdate/{branch}/{version}/{os}")
 async def push_update(file: UploadFile, branch: str,version: str,os: str):
     nfile = Path(f'{branch}/{version}/{os}/{file.filename}')