Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,8 @@ if text:
|
|
8 |
out = transcriber(text)
|
9 |
st.json(out)
|
10 |
|
11 |
-
st.file_uploader("Choose a CSV file", accept_multiple_files=True)
|
12 |
bytes_data = uploaded_file.read()
|
13 |
st.write("filename:", uploaded_file.name)
|
14 |
-
st.write(bytes_data)
|
|
|
|
8 |
out = transcriber(text)
|
9 |
st.json(out)
|
10 |
|
11 |
+
uploaded_file = st.file_uploader("Choose a CSV file", accept_multiple_files=True)
|
12 |
bytes_data = uploaded_file.read()
|
13 |
st.write("filename:", uploaded_file.name)
|
14 |
+
st.write(bytes_data)
|
15 |
+
st.image(uploaded_file)
|