Skip to main content

short_term_energy_outlook

Monthly short term (18 month) projections using EIA's STEO model.

Source: www.eia.gov/steo/

Examples

from openbb import obb
# Get the EIA's Short Term Energy Outlook.
obb.commodity.short_term_energy_outlook(provider='eia')
# Select the specific table of data from the STEO. Table 03d is World Crude Oil Production.
obb.commodity.short_term_energy_outlook(table=03d, provider='eia')

Parameters

start_date: Union[date, str]

Start date of the data, in YYYY-MM-DD format.

Optional: True


end_date: Union[date, str]

End date of the data, in YYYY-MM-DD format.

Optional: True


Returns

results: list[ShortTermEnergyOutlook]

Serializable results.


provider: Optional[Literal['eia']]

Provider name.


warnings: Optional[list[Warning_]]

list of warnings.


chart: Optional[Chart]

Chart object.


extra: dict[str, Any]

Extra info.


Data

date: Union[date, str]

The date of the data.

table: str

Table name for the data.

symbol: str

Symbol representing the entity requested in the data.

order: int

Presented order of the data, relative to the table.

title: str

Title of the data.

value: Union[int, float]

Value of the data.

unit: str

Unit or scale of the data.