#pip install streamlit
#streamlit run project.py
import streamlit as st
import pandas as pd
import numpy as np
st.title("Reviews' parser")
txt = st.text_area('Text to analyze', "Write your review here")
st.write('Positive:', txt.split(" "))
st.write('Negative:', txt.split(" "))