Spaces:
Running
Running
File size: 334 Bytes
6756892 d66e9c7 b476ae0 d66e9c7 6756892 b476ae0 6756892 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
from streamlit_pdf_reader import pdf_reader
uploaded_file = st.file_uploader('Choose your .pdf file', type="pdf")
if uploaded_file is not None:
print(uploaded_file.raw)
x = st.slider('Select a value')
url_1 = st.text_input(label="Enter research paper url",key="url_1")
st.write(x, 'squared is', x * x)
|