Update main.py
Browse files
main.py
CHANGED
@@ -110,8 +110,8 @@ async def upload_file_on_server(file: UploadFile = File(...)):
|
|
110 |
# temp_file_path = temp_file.name # Get the path of the temporary file
|
111 |
# return temp_file_path
|
112 |
# Save the uploaded file to the temporary directory
|
113 |
-
file_path = os.path.join(data_dir, file.filename)
|
114 |
-
print(file_path)
|
115 |
|
116 |
# Save the uploaded file to a temporary location
|
117 |
# with open(file_path, "wb") as buffer:
|
@@ -122,7 +122,7 @@ async def upload_file_on_server(file: UploadFile = File(...)):
|
|
122 |
|
123 |
# Return a response
|
124 |
#return {"filename": file.filename, "message": "File uploaded successfully"}
|
125 |
-
return
|
126 |
|
127 |
|
128 |
## POST - /load_file
|
|
|
110 |
# temp_file_path = temp_file.name # Get the path of the temporary file
|
111 |
# return temp_file_path
|
112 |
# Save the uploaded file to the temporary directory
|
113 |
+
#file_path = os.path.join(data_dir, file.filename)
|
114 |
+
#print(file_path)
|
115 |
|
116 |
# Save the uploaded file to a temporary location
|
117 |
# with open(file_path, "wb") as buffer:
|
|
|
122 |
|
123 |
# Return a response
|
124 |
#return {"filename": file.filename, "message": "File uploaded successfully"}
|
125 |
+
return file.filename
|
126 |
|
127 |
|
128 |
## POST - /load_file
|