Last active
July 18, 2021 08:23
-
-
Save Abhayparashar31/4b405a6a6defe6d2b8798f74176fab53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import streamlit as st | |
| from textblob import TextBlob | |
| st.write(" Real Time Sentiment Analyzer ") | |
| input = st.text_input("Enter Your Review...") | |
| score = TextBlob(input).sentiment.polarity | |
| if score==0:st.write("Neutral π") | |
| elif score<0:st.write("Negative π«") | |
| elif score>0:st.write("Positive π") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment