Skip to content

Commit 5830f86

Browse files
committed
rebuild static
1 parent b27df0d commit 5830f86

File tree

3 files changed

+2
-112
lines changed

3 files changed

+2
-112
lines changed

openbb_platform/openbb/assets/reference.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33211,8 +33211,8 @@
3321133211
},
3321233212
"/fixedincome/government/tips_yields": {
3321333213
"deprecated": {
33214-
"flag": true,
33215-
"message": "This endpoint is deprecated; use `/fixedincome/bond_indices` instead. Deprecated in OpenBB Platform V4.2 to be removed in V4.5."
33214+
"flag": null,
33215+
"message": null
3321633216
},
3321733217
"description": "Get current Treasury inflation-protected securities yields.",
3321833218
"examples": "\nExamples\n--------\n\n```python\nfrom openbb import obb\nobb.fixedincome.government.tips_yields(provider='fred')\nobb.fixedincome.government.tips_yields(maturity=10, provider='fred')\n```\n\n",

openbb_platform/openbb/package/economy.py

-102
Original file line numberDiff line numberDiff line change
@@ -951,108 +951,6 @@ def country_profile(
951951
)
952952
)
953953

954-
@exception_handler
955-
@validate
956-
def country_profile(
957-
self,
958-
country: Annotated[
959-
Union[str, List[str]],
960-
OpenBBField(
961-
description="The country to get data. Multiple comma separated items allowed for provider(s): econdb."
962-
),
963-
],
964-
provider: Annotated[
965-
Optional[Literal["econdb"]],
966-
OpenBBField(
967-
description="The provider to use, by default None. If None, the priority list configured in the settings is used. Default priority: econdb."
968-
),
969-
] = None,
970-
**kwargs
971-
) -> OBBject:
972-
"""Get a profile of country statistics and economic indicators.
973-
974-
Parameters
975-
----------
976-
country : Union[str, List[str]]
977-
The country to get data. Multiple comma separated items allowed for provider(s): econdb.
978-
provider : Optional[Literal['econdb']]
979-
The provider to use, by default None. If None, the priority list configured in the settings is used. Default priority: econdb.
980-
latest : bool
981-
If True, return only the latest data. If False, return all available data for each indicator. (provider: econdb)
982-
use_cache : bool
983-
If True, the request will be cached for one day.Using cache is recommended to avoid needlessly requesting the same data. (provider: econdb)
984-
985-
Returns
986-
-------
987-
OBBject
988-
results : List[CountryProfile]
989-
Serializable results.
990-
provider : Optional[Literal['econdb']]
991-
Provider name.
992-
warnings : Optional[List[Warning_]]
993-
List of warnings.
994-
chart : Optional[Chart]
995-
Chart object.
996-
extra : Dict[str, Any]
997-
Extra info.
998-
999-
CountryProfile
1000-
--------------
1001-
country : str
1002-
1003-
population : Optional[int]
1004-
Population.
1005-
gdp_usd : Optional[float]
1006-
Gross Domestic Product, in billions of USD.
1007-
gdp_qoq : Optional[float]
1008-
GDP growth quarter-over-quarter change, as a normalized percent.
1009-
gdp_yoy : Optional[float]
1010-
GDP growth year-over-year change, as a normalized percent.
1011-
cpi_yoy : Optional[float]
1012-
Consumer Price Index year-over-year change, as a normalized percent.
1013-
core_yoy : Optional[float]
1014-
Core Consumer Price Index year-over-year change, as a normalized percent.
1015-
retail_sales_yoy : Optional[float]
1016-
Retail Sales year-over-year change, as a normalized percent.
1017-
industrial_production_yoy : Optional[float]
1018-
Industrial Production year-over-year change, as a normalized percent.
1019-
policy_rate : Optional[float]
1020-
Short term policy rate, as a normalized percent.
1021-
yield_10y : Optional[float]
1022-
10-year government bond yield, as a normalized percent.
1023-
govt_debt_gdp : Optional[float]
1024-
Government debt as a percent (normalized) of GDP.
1025-
current_account_gdp : Optional[float]
1026-
Current account balance as a percent (normalized) of GDP.
1027-
jobless_rate : Optional[float]
1028-
Unemployment rate, as a normalized percent.
1029-
1030-
Examples
1031-
--------
1032-
>>> from openbb import obb
1033-
>>> obb.economy.country_profile(provider='econdb', country='united_kingdom')
1034-
>>> # Enter the country as the full name, or iso code. If `latest` is False, the complete history for each series is returned.
1035-
>>> obb.economy.country_profile(country='united_states,jp', latest=False, provider='econdb')
1036-
""" # noqa: E501
1037-
1038-
return self._run(
1039-
"/economy/country_profile",
1040-
**filter_inputs(
1041-
provider_choices={
1042-
"provider": self._get_provider(
1043-
provider,
1044-
"economy.country_profile",
1045-
("econdb",),
1046-
)
1047-
},
1048-
standard_params={
1049-
"country": country,
1050-
},
1051-
extra_params=kwargs,
1052-
info={"country": {"econdb": {"multiple_items_allowed": True}}},
1053-
)
1054-
)
1055-
1056954
@exception_handler
1057955
@validate
1058956
def cpi(

openbb_platform/openbb/package/equity_fundamental.py

-8
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,6 @@ def balance(
420420
def balance_growth(
421421
self,
422422
symbol: Annotated[str, OpenBBField(description="Symbol to get data for.")],
423-
period: Annotated[
424-
str, OpenBBField(description="Time period of the data to return.")
425-
] = "annual",
426423
limit: Annotated[
427424
Optional[int],
428425
OpenBBField(description="The number of data entries to return."),
@@ -570,7 +567,6 @@ def balance_growth(
570567
},
571568
standard_params={
572569
"symbol": symbol,
573-
"period": period,
574570
"limit": limit,
575571
},
576572
extra_params=kwargs,
@@ -872,9 +868,6 @@ def cash(
872868
def cash_growth(
873869
self,
874870
symbol: Annotated[str, OpenBBField(description="Symbol to get data for.")],
875-
period: Annotated[
876-
str, OpenBBField(description="Time period of the data to return.")
877-
] = "annual",
878871
limit: Annotated[
879872
Optional[int],
880873
OpenBBField(description="The number of data entries to return."),
@@ -1004,7 +997,6 @@ def cash_growth(
1004997
},
1005998
standard_params={
1006999
"symbol": symbol,
1007-
"period": period,
10081000
"limit": limit,
10091001
},
10101002
extra_params=kwargs,

0 commit comments

Comments
 (0)