-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/websockets
- Loading branch information
Showing
39 changed files
with
7,058 additions
and
1,857 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
build/conda/installer/assets/openbb_platform_installer/openbb_platform_installer/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Placeholder for the OpenBB Platform Installer package.""" | ||
|
||
__version__ = "1.0.0" | ||
__version__ = "1.0.2" |
2 changes: 1 addition & 1 deletion
2
build/conda/installer/assets/openbb_platform_installer/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# If you will be using this as a template for your own package, please change the values accordingly. | ||
[tool.poetry] | ||
name = "openbb_platform_installer" # Change this to your package name | ||
version = "1.0.0" # Change this to your package version | ||
version = "1.0.2" # Change this to your package version | ||
description = "A meta package for installing the OpenBB Platform: Investment research for everyone, anywhere." # Change this to your description | ||
authors = ["OpenBB <[email protected]>"] # Change this to your name and email | ||
license = "AGPL-3.0-only" # This license must be compatible with the OpenBB license | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
openbb_platform/core/openbb_core/provider/standard_models/compare_groups.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,12 @@ | ||
"""Compare Groups Model.""" | ||
|
||
from typing import Optional | ||
|
||
from openbb_core.provider.abstract.data import Data | ||
from openbb_core.provider.abstract.query_params import QueryParams | ||
from pydantic import Field | ||
|
||
|
||
class CompareGroupsQueryParams(QueryParams): | ||
"""Compare Groups Query.""" | ||
|
||
group: Optional[str] = Field( | ||
default=None, | ||
description="The group to compare - i.e., 'sector', 'industry', 'country'. Choices vary by provider.", | ||
) | ||
metric: Optional[str] = Field( | ||
default=None, | ||
description="The type of metrics to compare - i.e, 'valuation', 'performance'. Choices vary by provider.", | ||
) | ||
|
||
|
||
class CompareGroupsData(Data): | ||
"""Compare Groups Data.""" | ||
|
||
name: str = Field(description="Name or label of the group.") |
18 changes: 18 additions & 0 deletions
18
openbb_platform/core/openbb_core/provider/standard_models/futures_info.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
"""Futures Info Standard Model.""" | ||
|
||
from openbb_core.provider.abstract.data import Data | ||
from openbb_core.provider.abstract.query_params import QueryParams | ||
from openbb_core.provider.utils.descriptions import DATA_DESCRIPTIONS | ||
from pydantic import Field | ||
|
||
|
||
class FuturesInfoQueryParams(QueryParams): | ||
"""Futures Info Query.""" | ||
|
||
# leaving this empty to let the provider create custom symbol docstrings. | ||
|
||
|
||
class FuturesInfoData(Data): | ||
"""Futures Instruments Data.""" | ||
|
||
symbol: str = Field(description=DATA_DESCRIPTIONS.get("symbol", "")) |
12 changes: 12 additions & 0 deletions
12
openbb_platform/core/openbb_core/provider/standard_models/futures_instruments.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"""Futures Instruments Standard Model.""" | ||
|
||
from openbb_core.provider.abstract.data import Data | ||
from openbb_core.provider.abstract.query_params import QueryParams | ||
|
||
|
||
class FuturesInstrumentsQueryParams(QueryParams): | ||
"""Futures Instruments Query.""" | ||
|
||
|
||
class FuturesInstrumentsData(Data): | ||
"""Futures Instruments Data.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.