Spaces:
Running
Running
File size: 406 Bytes
6756892 d66e9c7 555d2a8 b476ae0 555d2a8 d66e9c7 555d2a8 d66e9c7 6756892 b476ae0 6756892 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
from streamlit_pdf_reader import pdf_reader
import pdfplumber
uploaded_files = st.file_uploader('Choose your .pdf file')
if uploaded_files is not None:
# To read file as bytes:
bytes_data = uploaded_files.read()
st.write(bytes_data)
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)
|