Registry / devops / openbb-tiingo

openbb-tiingo

JSON →
library1.6.1pypypi✓ verified 83d ago

Tiingo data provider extension for OpenBB Platform v4+. Provides historical price, intraday, and fundamental data. Current version 1.6.1, released quarterly with OpenBB releases.

pip install openbb-tiingo
INSTALL
IMPORT
SIG · OPENBB-TIINGO
O
openbb-tiingo
devopspythonv1.6.1
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.

OBBject
from openbb import obb
from openbb_tiingo import ...
Extensions are auto-loaded by openbb; do not import directly.

Authenticate with Personal Access Token, then fetch data. Provider='tiingo' activates the extension.

from openbb import obb import os obb.account.login(pat=os.environ.get('OPENBB_PAT', '')) # Fetch historical data df = obb.equity.price.historical('AAPL', provider='tiingo').to_dataframe() print(df.head())
Debug
Known issues
breakingOpenBB v4 rewritten; openbb-tiingo v1.x only works with OpenBB Platform v4+ (not v3).
fix
Use openbb-tiingo==0.x for OpenBB v3, or upgrade OpenBB to v4.
affects: openbb-tiingo >= 1.0.0
deprecatedOlder openbb-tiingo versions (pre-1.0) used CLI and direct imports from openbb_tiingo. Platform extensions are auto-loaded under obb namespace.
fix
Upgrade to latest and use from openbb import obb.
affects: <1.0
gotchaTiingo API token must be set as environment variable TIINGO_API_TOKEN or provided in parameters.
fix
Set TIINGO_API_TOKEN=your_token in your environment, or pass token='...' to commands.
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'openbb_tiingo'
Direct import of the extension package.
fix
Use 'from openbb import obb' and ensure openbb-tiingo is installed.
AttributeError: module 'openbb' has no attribute 'equity'
OpenBB v4 renamed paths; equity is now under obb.equity.price.historical.
fix
Use obb.equity.price.historical(...) not obb.stocks.load(...).
obb.equity.price.historical() got an unexpected keyword argument 'provider'
Provider argument not implemented in older openbb-tiingo versions or missing openbb-tiingo installation.
fix
Ensure openbb-tiingo is installed (pip install openbb-tiingo) and use provider='tiingo'.
Upgrade
Version history
1.6.1latest on PyPI · released May 26, 2026
Audit
Dependencies
openbbrequiredCore platform required; Tiingo is an extension.
Agent activity
2 hits · last 30 days
node
2
Resources

No resource links recorded.

openbb-tiingo — pip install openbb-tiingo · libregistry