Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
maker57sk
/
linkedin_analysis
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
maker57sk
commited on
Jun 23, 2022
Commit
edd3f4b
·
1 Parent(s):
bd4f8b6
created app file
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)