PierreCugnet commited on
Commit
b3e4112
1 Parent(s): b0d355a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import streamlit as st
2
  import os
3
 
4
- airline_tweet = st.text_input('English airline comment', '@AmericanAirline My flight was great!')
 
5
  st.write('The sentence is', airline_tweet)
6
 
1
  import streamlit as st
2
  import os
3
 
4
+ st.title('Welcome to my twitter airline sentiment analysis !', anchor='center')
5
+ airline_tweet = st.text_input('Enter your english airline tweet here:', '@AmericanAirline My flight was great!')
6
  st.write('The sentence is', airline_tweet)
7