Update app.py
Browse files
app.py
CHANGED
@@ -50,20 +50,22 @@ text_list = []
|
|
50 |
file_path = "AFLAC_Wyatt_notag.pdf"
|
51 |
file_path1 = "USB_Golnaz_Alice.pdf"
|
52 |
col1, col2 = st.columns([1,1])
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
67 |
# data = urllib.request.urlopen(target_url)
|
68 |
# for line in data.read():
|
69 |
# st.write(line)
|
|
|
50 |
file_path = "AFLAC_Wyatt_notag.pdf"
|
51 |
file_path1 = "USB_Golnaz_Alice.pdf"
|
52 |
col1, col2 = st.columns([1,1])
|
53 |
+
with col1:
|
54 |
+
if st.button('AFLAC_Wyatt'):
|
55 |
+
with open(file_path,"rb") as f:
|
56 |
+
base64_pdf = base64.b64encode(f.read()).decode('utf-8')
|
57 |
+
pdf_display = f'<iframe src="data:application/pdf;base64,{base64_pdf}" width="800" height="800" type="application/pdf"></iframe>'
|
58 |
+
st.markdown(pdf_display, unsafe_allow_html=True)
|
59 |
+
visual_display = f'<iframe src="https://seetha-aflac-wyat.hf.space" frameborder="0" width="1000" height="500"></iframe>'
|
60 |
+
st.markdown(visual_display, unsafe_allow_html=True)
|
61 |
+
with col2:
|
62 |
+
elif st.button('USB_GOLNAZ_ALICE'):
|
63 |
+
with open(file_path1,"rb") as f:
|
64 |
+
base64_pdf = base64.b64encode(f.read()).decode('utf-8')
|
65 |
+
pdf_display = f'<iframe src="data:application/pdf;base64,{base64_pdf}" width="800" height="800" type="application/pdf"></iframe>'
|
66 |
+
st.markdown(pdf_display, unsafe_allow_html=True)
|
67 |
+
visual_display = f'<iframe src="https://seetha-usb-golnaz-alice.hf.space" frameborder="0" width="1000" height="500"></iframe>'
|
68 |
+
st.markdown(visual_display, unsafe_allow_html=True)
|
69 |
# data = urllib.request.urlopen(target_url)
|
70 |
# for line in data.read():
|
71 |
# st.write(line)
|