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

NameTypeDescriptionDefaultOptional
start_dateUnion[date, str]Start date of the data, in YYYY-MM-DD format.NoneTrue
end_dateUnion[date, str]End date of the data, in YYYY-MM-DD format.NoneTrue

Returns

OBBject
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

NameTypeDescription
dateUnion[date, str]The date of the data.
tablestrTable name for the data.
symbolstrSymbol representing the entity requested in the data.
orderintPresented order of the data, relative to the table.
titlestrTitle of the data.
valueUnion[int, float]Value of the data.
unitstrUnit or scale of the data.