Harshavarma04 commited on
Commit
5d2636d
·
verified ·
1 Parent(s): 9cd3368

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1,7 +1,11 @@
1
- import streamlit as st
 
 
2
 
3
- from nltk.sentiment.vader import SentimentIntensityAnalyzer
4
  import nltk
 
 
5
  # Ensure the VADER lexicon is downloaded
6
  nltk.download('vader_lexicon')
7
 
 
1
+ git add app.py requirements.txt
2
+ git commit -m "Initial commit"
3
+ git push
4
 
5
+ import streamlit as st
6
  import nltk
7
+ from nltk.sentiment.vader import SentimentIntensityAnalyzer
8
+
9
  # Ensure the VADER lexicon is downloaded
10
  nltk.download('vader_lexicon')
11