test
Browse files
app.py
CHANGED
@@ -69,4 +69,5 @@ with col1:
|
|
69 |
with col2:
|
70 |
if uploaded_file is not None:
|
71 |
# Display the pdf
|
72 |
-
|
|
|
|
69 |
with col2:
|
70 |
if uploaded_file is not None:
|
71 |
# Display the pdf
|
72 |
+
bytes_data = uploaded_file.getvalue()
|
73 |
+
pdf_viewer(input=bytes_data, width=700)
|