samueldomdey commited on
Commit
fce3dc7
·
1 Parent(s): 4506d29

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -77,4 +77,7 @@ def bulk_function(filename):
77
  df.to_csv(YOUR_FILENAME)
78
 
79
  # return dataframe for space output
80
- return df
 
 
 
 
77
  df.to_csv(YOUR_FILENAME)
78
 
79
  # return dataframe for space output
80
+ return df
81
+
82
+ gr.Interface(bulk_function, [gr.inputs.File(file_count="single", type="file", label="str", optional=False),],"dataframe",
83
+ ).launch(debug=True)