Seetha commited on
Commit
1925cbb
·
1 Parent(s): 2991c0d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -14
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
- if st.button('AFLAC_Wyatt'):
54
- with open(file_path,"rb") as f:
55
- base64_pdf = base64.b64encode(f.read()).decode('utf-8')
56
- pdf_display = f'<iframe src="data:application/pdf;base64,{base64_pdf}" width="800" height="800" type="application/pdf"></iframe>'
57
- st.markdown(pdf_display, unsafe_allow_html=True)
58
- visual_display = f'<iframe src="https://seetha-aflac-wyat.hf.space" frameborder="0" width="1000" height="500"></iframe>'
59
- st.markdown(visual_display, unsafe_allow_html=True)
60
- elif st.button('USB_GOLNAZ_ALICE'):
61
- with open(file_path1,"rb") as f:
62
- base64_pdf = base64.b64encode(f.read()).decode('utf-8')
63
- pdf_display = f'<iframe src="data:application/pdf;base64,{base64_pdf}" width="800" height="800" type="application/pdf"></iframe>'
64
- st.markdown(pdf_display, unsafe_allow_html=True)
65
- visual_display = f'<iframe src="https://seetha-usb-golnaz-alice.hf.space" frameborder="0" width="1000" height="500"></iframe>'
66
- st.markdown(visual_display, unsafe_allow_html=True)
 
 
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)