aminaj commited on
Commit
a19b0d7
·
verified ·
1 Parent(s): b481937

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +4 -3
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
- f.write(file.file.read())
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