Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added the stock_peer function to the __init__.py file so it can be
imported directly from the package. This makes it easier for users
to access the function without importing submodules.

Added a missing comma to correctly separate the two list items ("social_sentiments", "earnings_surprises")
  • Loading branch information
rajithst committed Oct 5, 2025
commit 2bfa54dfa9c2f510af61292f2fb6510be46a2727
5 changes: 4 additions & 1 deletion fmpsdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
upgrades_downgrades,
price_target,
price_target_consensus,
stock_peers,
)
from .cryptocurrencies import (
available_cryptocurrencies,
Expand Down Expand Up @@ -201,7 +202,8 @@
"stock_screener",
"delisted_companies",
"stock_news",
"social_sentiments" "earnings_surprises",
"social_sentiments",
"earnings_surprises",
"sec_filings",
"press_releases",
"earning_calendar",
Expand Down Expand Up @@ -289,6 +291,7 @@
"upgrades_downgrades",
"price_target",
"price_target_consensus",
"stock_peers",
# bulk apis
"bulk_historical_eod",
"bulk_profiles",
Expand Down