ysrakeshgupta commited on
Commit
31d7686
·
verified ·
1 Parent(s): 5baa00f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ st.set_page_config(
34
  st.header("File Insights🧊")
35
  uploaded_file = st.file_uploader("Upload csv file")
36
  if uploaded_file is not None:
37
- df = pd.read_csv(uploaded_file)
38
  st.write(df)
39
 
40
 
 
34
  st.header("File Insights🧊")
35
  uploaded_file = st.file_uploader("Upload csv file")
36
  if uploaded_file is not None:
37
+ df = pd.read_csv(uploaded_file, encoding = "utf-8")
38
  st.write(df)
39
 
40