Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ppsingh
/
annotation_dev
like
3
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
14ff9c4
annotation_dev
/
app.py
ppsingh
Update app.py
14ff9c4
over 2 years ago
raw
Copy download link
history
blame
163 Bytes
import
streamlit
as
st
import
pandas
as
pd
title = st.text_input(
'Movie title'
,
'Life of Brian'
)
data = pd.read_csv(
"test.csv"
)
for
line
in
data:
st.write(line)