Update app.py
Browse files
app.py
CHANGED
|
@@ -45,7 +45,7 @@ import urllib # the lib that handles the url stuff
|
|
| 45 |
|
| 46 |
target_url = 'https://huggingface.co/datasets/Seetha/Visualization/raw/main/AFLAC_Wyatt_notag.pdf'
|
| 47 |
if st.button('PDF1'):
|
| 48 |
-
data = urllib.urlopen(target_url)
|
| 49 |
st.write(data)
|
| 50 |
else:
|
| 51 |
st.write('Goodbye')
|
|
|
|
| 45 |
|
| 46 |
target_url = 'https://huggingface.co/datasets/Seetha/Visualization/raw/main/AFLAC_Wyatt_notag.pdf'
|
| 47 |
if st.button('PDF1'):
|
| 48 |
+
data = urllib.request.urlopen(target_url)
|
| 49 |
st.write(data)
|
| 50 |
else:
|
| 51 |
st.write('Goodbye')
|