Update app.py
Browse files
app.py
CHANGED
|
@@ -49,6 +49,7 @@ text_list = []
|
|
| 49 |
#target_url = 'https://huggingface.co/datasets/Seetha/Visualization/raw/main/AFLAC_Wyatt_notag.pdf'
|
| 50 |
file_path = "AFLAC_Wyatt_notag.pdf"
|
| 51 |
file_path1 = "USB_Golnaz_Alice.pdf"
|
|
|
|
| 52 |
if st.button('AFLAC_Wyatt'):
|
| 53 |
with open(file_path,"rb") as f:
|
| 54 |
base64_pdf = base64.b64encode(f.read()).decode('utf-8')
|
|
|
|
| 49 |
#target_url = 'https://huggingface.co/datasets/Seetha/Visualization/raw/main/AFLAC_Wyatt_notag.pdf'
|
| 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')
|