Srastog commited on
Commit
6ce768b
·
verified ·
1 Parent(s): 35d6da2

Update app/main.py

Browse files
Files changed (1) hide show
  1. app/main.py +5 -8
app/main.py CHANGED
@@ -31,14 +31,11 @@ def home():
31
 
32
  @app.post("/upload/")
33
  def upload_csv(file:UploadFile=File(...)):
34
- try:
35
- global dataset
36
- dataset=pd.read_csv(file.file)
37
- file.file.close()
38
- return {"filename": file.filename}
39
- except:
40
- return {"message":"Pleae upload a CSV file"}
41
-
42
  @app.post("/train/")
43
  def training():
44
  if dataset is not None:
 
31
 
32
  @app.post("/upload/")
33
  def upload_csv(file:UploadFile=File(...)):
34
+ global dataset
35
+ dataset=pd.read_csv(file.file)
36
+ file.file.close()
37
+ return {"filename": file.filename}
38
+
 
 
 
39
  @app.post("/train/")
40
  def training():
41
  if dataset is not None: