import streamlit as st
from api import get_news, NewsRequest
from utils import text_to_speech
import base64
# Function to auto-play audio
def autoplay_audio(file_path):
with open(file_path, "rb") as audio_file:
audio_bytes = audio_file.read()
b64 = base64.b64encode(audio_bytes).decode()
audio_tag = f"""
"""
st.markdown(audio_tag, unsafe_allow_html=True)
# Streamlit UI
def main():
st.set_page_config(page_title="News Sentiment & Summarization", layout="wide")
# Sidebar UI
st.sidebar.markdown(
"
📰 News Finder
",
unsafe_allow_html=True
)
st.sidebar.write("Enter a company name to fetch the latest summarized news with sentiment analysis:")
company_name = st.sidebar.text_input("🔎 Company Name:")
fetch_button = st.sidebar.button("Fetch News")
st.sidebar.markdown("---")
sentiment_summary_placeholder = st.sidebar.empty()
st.markdown(
"
📢 News Sentiment & Summarization
",
unsafe_allow_html=True
)
if fetch_button and company_name:
response = get_news(NewsRequest(company=company_name))
articles = response.get("articles", [])
if not articles:
st.warning("No news found for this company.")
return
# Sentiment summary display
sentiments = [article['sentiment'] for article in articles]
positive = sentiments.count("Positive")
negative = sentiments.count("Negative")
neutral = sentiments.count("Neutral")
sentiment_summary_placeholder.markdown(f"""
📊 Sentiment Summary
✅ Positive: {positive}
⚠️ Neutral: {neutral}
❌ Negative: {negative}
""", unsafe_allow_html=True)
# Auto play audio summary of headlines
all_headlines = ". ".join([f"{idx + 1}. {article['title']}" for idx, article in enumerate(articles)])
audio_file = text_to_speech(all_headlines)
if audio_file:
autoplay_audio(audio_file)
st.write("## Latest News Articles")
# News cards
for idx, article in enumerate(articles, start=1):
sentiment_color = {
"Positive": "#4CAF50",
"Neutral": "#FFA500",
"Negative": "#FF4B4B"
}[article['sentiment']]
st.markdown(f"""
""", unsafe_allow_html=True)
elif not fetch_button:
st.info("Enter a company name in the sidebar and click 'Fetch News' to begin.")
if __name__ == "__main__":
main()