Registry / analytics / openbb-news

openbb-news

JSON →
library1.6.2pypypiunverified

OpenBB News Extension provides news data providers for the OpenBB Platform, allowing retrieval of financial news from sources like Benzinga, Bloomberg, and FMP. Version 1.6.2 requires Python >=3.10, <4.0. Releases follow OpenBB's monthly cadence.

pip install openbb-news
INSTALL
IMPORT
SIG · OPENBB-NEWS
O
openbb-news
analyticspythonv1.6.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

OpenBBNews
from openbb_news import OpenBBNews
from openbb_news import OpenBBNews

Initialize OpenBB with news extension and fetch recent news.

from openbb import obb # Set up API keys for Benzinga or FMP provider obb.user.credentials.BENZINGA_API_KEY = os.environ.get('BENZINGA_API_KEY', '') obb.user.credentials.FMP_API_KEY = os.environ.get('FMP_API_KEY', '') # Fetch news from Benzinga (by default) news = obb.news.all(limit=5) print(news.results)
Debug
Known issues
breakingOpenBB v4.0 changed the news API from `obb.news` to `obb.news.all()` and `obb.news.company()`. Also removed the old `openbb_news` module's direct access methods.
fix
Update imports to use the new OpenBB platform pattern: `from openbb import obb` then `obb.news.all(...)`.
affects: >=4.0.0
gotchaYou must have valid API keys for the news providers (Benzinga, FMP, etc.). The news commands will fail if the provider's API key is missing or invalid.
fix
Set provider-specific credentials via `obb.user.credentials.PROVIDER_API_KEY = 'key'`.
affects: all
deprecatedThe `openbb-news` extension is being phased out in favor of the built-in news providers in OpenBB Platform v4+. Check compatibility before upgrading.
fix
Consider using `obb.news.all()` directly from the platform without the extension, if your OpenBB version supports it.
affects: >=4.0.0
Upgrade
Version history
1.6.2latest on PyPI · released May 26, 2026
Audit
Dependencies
openbb-corerequiredCore OpenBB platform required for the extension to function
Agent activity
30 hits · last 30 days
node
28
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

openbb-news — pip install openbb-news · libregistry