Spaces:
Sleeping
Sleeping
File size: 10,173 Bytes
5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 d8195e6 5b20ee3 d8195e6 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 d8195e6 5b20ee3 d8195e6 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 299003f 5b20ee3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | import os
import streamlit as st
import requests
import pandas as pd
import nltk
from wordcloud import WordCloud
import matplotlib.pyplot as plt
from sklearn.feature_extraction.text import CountVectorizer, ENGLISH_STOP_WORDS
from sklearn.decomposition import LatentDirichletAllocation
from datetime import datetime, timedelta
# Download VADER lexicon (if not already downloaded)
nltk.download('vader_lexicon')
from nltk.sentiment.vader import SentimentIntensityAnalyzer
# Global VADER instance
sia = SentimentIntensityAnalyzer()
# Environment variable for the API key
API_KEY = os.getenv("FMP_API_KEY")
# Maximum pages to fetch
MAX_PAGES = 3
# Store stateful data
if "all_run" not in st.session_state:
st.session_state.all_run = False
if "symbol_run" not in st.session_state:
st.session_state.symbol_run = False
if "selected_symbol" not in st.session_state:
st.session_state.selected_symbol = "AAPL"
if "selected_date" not in st.session_state:
st.session_state.selected_date = datetime.now().date() - timedelta(days=30)
if "selected_topics_all" not in st.session_state:
st.session_state.selected_topics_all = 10
if "selected_topics_symbol" not in st.session_state:
st.session_state.selected_topics_symbol = 10
#############################
# Utility Functions
#############################
def process_press_releases_df(df: pd.DataFrame) -> pd.DataFrame:
"""
Add a sentiment score using VADER for each press release row.
Returns the updated DataFrame.
"""
if df.empty:
return df
df["sentiment"] = df["text"].apply(lambda x: sia.polarity_scores(x)["compound"])
return df
def generate_wordcloud(df: pd.DataFrame):
"""
Generate and display a word cloud from the 'text' column.
"""
all_text = " ".join(df["text"].dropna().tolist())
if not all_text:
st.write("No text found for generating a word cloud.")
return
wc = WordCloud(width=800, height=400, background_color="white").generate(all_text)
fig, ax = plt.subplots(figsize=(10, 5))
ax.imshow(wc, interpolation="bilinear")
ax.axis("off")
st.pyplot(fig)
def run_topic_modeling(df: pd.DataFrame, n_topics=10, n_top_words=10):
"""
Perform topic modeling using LDA. Display top words for each topic.
"""
texts = df["text"].dropna().tolist()
if not texts:
st.write("No text available for topic modeling.")
return
# Extend default English stop words with common press release terms.
custom_stop_words = list(ENGLISH_STOP_WORDS.union({
"said", "reuters", "inc", "llc", "corp", "co", "company", "news", "press", "release"
}))
vectorizer = CountVectorizer(stop_words=custom_stop_words)
X = vectorizer.fit_transform(texts)
lda = LatentDirichletAllocation(n_components=n_topics, random_state=42)
lda.fit(X)
# Build a dictionary of topic names -> top words
topics = {}
for topic_idx, topic in enumerate(lda.components_):
top_features_ind = topic.argsort()[:-n_top_words - 1:-1]
top_features = [vectorizer.get_feature_names_out()[i] for i in top_features_ind]
topics[f"Topic {topic_idx+1}"] = top_features
st.write("### Topic Modeling Results")
for topic_label, words in topics.items():
st.write(f"**{topic_label}:** {', '.join(words)}")
#############################
# PAGE 1: Press Releases Live Feed
#############################
@st.cache_data(show_spinner=False)
def fetch_press_releases_all() -> pd.DataFrame:
"""
Fetch recent press releases from multiple companies across several pages.
Returns a combined DataFrame.
"""
frames = []
for page in range(MAX_PAGES):
url = f"https://financialmodelingprep.com/api/v3/press-releases?page={page}&apikey={API_KEY}"
try:
response = requests.get(url)
response.raise_for_status()
data = response.json()
if not data:
break
frames.append(pd.DataFrame(data))
except Exception:
# Fail gracefully without naming the data source
return pd.DataFrame()
if frames:
df = pd.concat(frames, ignore_index=True)
if "date" in df.columns:
df["date"] = pd.to_datetime(df["date"])
return df
return pd.DataFrame()
def run_all_press_releases():
st.write("**Press Releases Live Feed**")
st.write(
"Here, you will see the latest press releases aggregated from various companies. "
"Explore the table for publication dates, text content, and automated sentiment. "
"Use the Word Cloud and Topic Modeling below to uncover common themes."
)
df = fetch_press_releases_all()
if df.empty:
st.error("No press releases found.")
return
# Process text for sentiment
df = process_press_releases_df(df)
st.dataframe(df, use_container_width=True)
st.subheader("Word Cloud")
generate_wordcloud(df)
st.subheader("Topic Modeling")
run_topic_modeling(df, n_topics=st.session_state.selected_topics_all)
#############################
# PAGE 2: Press Releases by Company
#############################
@st.cache_data(show_spinner=False)
def fetch_press_releases_by_symbol(symbol: str) -> pd.DataFrame:
"""
Fetch recent press releases for a single company symbol across several pages.
Returns a combined DataFrame.
"""
frames = []
for page in range(MAX_PAGES):
url = f"https://financialmodelingprep.com/api/v3/press-releases/{symbol}?page={page}&apikey={API_KEY}"
try:
response = requests.get(url)
response.raise_for_status()
data = response.json()
if not data:
break
frames.append(pd.DataFrame(data))
except Exception:
# Fail gracefully without naming the data source
return pd.DataFrame()
if frames:
df = pd.concat(frames, ignore_index=True)
if "date" in df.columns:
df["date"] = pd.to_datetime(df["date"])
return df
return pd.DataFrame()
def run_symbol_press_releases(symbol: str, start_date, n_topics):
st.write("**Press Releases by Company**")
st.write(
f"Browse recent press releases for **{symbol}**, starting from {start_date}. "
"View release text, publication dates, and sentiment analysis. "
"Below, discover prevalent words and recurring topics for these press releases."
)
df = fetch_press_releases_by_symbol(symbol)
if df.empty:
st.error(f"No press releases found for {symbol}.")
return
# Filter by user-chosen date
if "date" in df.columns:
df = df[df["date"].dt.date >= start_date]
# Process text for sentiment
df = process_press_releases_df(df)
st.dataframe(df, use_container_width=True)
st.subheader("Word Cloud")
generate_wordcloud(df)
st.subheader("Topic Modeling")
run_topic_modeling(df, n_topics=n_topics)
#############################
# MAIN APP
#############################
def main():
st.set_page_config(page_title="Press Releases", layout="wide")
st.title("Press Releases Analysis")
st.write(
"Explore recent press releases from multiple companies or focus on a single company. "
"Each page provides a table of press releases, sentiment analysis, a word cloud, and topic modeling."
)
# Sidebar navigation
with st.sidebar.expander("Navigation and Options", expanded=True):
page = st.radio(
"Select Page",
("Press Releases Live Feed", "Press Releases by Company"),
help="Choose between a broad overview or a single company's releases."
)
if page == "Press Releases Live Feed":
st.session_state.selected_topics_all = st.number_input(
"Number of Topics for Live Feed",
value=st.session_state.selected_topics_all,
min_value=1,
max_value=20,
help="Choose how many topics you want to see in the topic model."
)
if st.button("Run"):
st.session_state.all_run = True
elif page == "Press Releases by Company":
symbol = st.text_input(
"Ticker Symbol",
value=st.session_state.selected_symbol,
help="Type the company's ticker symbol."
)
st.session_state.selected_symbol = symbol
start_date = st.date_input(
"Start Date",
value=st.session_state.selected_date,
help="Only press releases on or after this date will appear."
)
st.session_state.selected_date = start_date
st.session_state.selected_topics_symbol = st.number_input(
"Number of Topics for Company",
value=st.session_state.selected_topics_symbol,
min_value=1,
max_value=20,
help="Choose how many topics you want to see in the topic model."
)
if st.button("Run"):
st.session_state.symbol_run = True
# Main body content
if page == "Press Releases Live Feed":
st.header("Press Releases Live Feed")
if st.session_state.all_run:
run_all_press_releases()
else:
st.info("Pick how many topics to show, then click 'Run Press Releases Live Feed'.")
elif page == "Press Releases by Company":
st.header("Press Releases by Company")
if st.session_state.symbol_run:
run_symbol_press_releases(
st.session_state.selected_symbol,
st.session_state.selected_date,
st.session_state.selected_topics_symbol
)
else:
st.info("Enter a ticker symbol, date, and number of topics, then click 'Run Press Releases by Company'.")
if __name__ == "__main__":
main()
hide_streamlit_style = """
<style>
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
</style>
"""
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|