Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
import streamlit as st
|
2 |
from gtts import gTTS
|
3 |
from io import BytesIO
|
|
|
|
|
4 |
|
5 |
x = st.slider('Select a value')
|
6 |
slider_reply = x, 'squared is', x * x
|
|
|
1 |
import streamlit as st
|
2 |
from gtts import gTTS
|
3 |
from io import BytesIO
|
4 |
+
import pdfminer
|
5 |
+
from pdfminer.high_level import extract_pages
|
6 |
|
7 |
x = st.slider('Select a value')
|
8 |
slider_reply = x, 'squared is', x * x
|