Update main.py
Browse files
main.py
CHANGED
@@ -116,11 +116,12 @@ async def upload_file_on_server(file: UploadFile = File(...)):
|
|
116 |
# with open(file_path, "wb") as buffer:
|
117 |
# shutil.copyfileobj(file.file, buffer)
|
118 |
|
119 |
-
with open(file_path, "wb") as f:
|
120 |
-
|
121 |
|
122 |
# Return a response
|
123 |
-
return {"filename": file.filename, "message": "File uploaded successfully"}
|
|
|
124 |
|
125 |
|
126 |
## POST - /load_file
|
|
|
116 |
# with open(file_path, "wb") as buffer:
|
117 |
# shutil.copyfileobj(file.file, buffer)
|
118 |
|
119 |
+
# with open(file_path, "wb") as f:
|
120 |
+
# f.write(file.file.read())
|
121 |
|
122 |
# Return a response
|
123 |
+
#return {"filename": file.filename, "message": "File uploaded successfully"}
|
124 |
+
return file_path
|
125 |
|
126 |
|
127 |
## POST - /load_file
|