File size: 210 Bytes
415516b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st
from aggregator import get_articles_sentiment

st.title("Real time financial news fast sentiment")

results = get_articles_sentiment("AAPL", "Andreagus/fin_miniLM_16")

st.write(results)