Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds shroom command and removes old ones #4246

Merged
merged 31 commits into from
Apr 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b194d62
fix: remove old commands
jose-donato Feb 15, 2023
b495adf
Merge branch 'develop' into feature/shroom
jose-donato Feb 15, 2023
f3d63d7
Merge branch 'develop' into feature/shroom
jmaslek Feb 20, 2023
8e23608
Merge branch 'develop' into feature/shroom
jmaslek Feb 21, 2023
076ccd3
Merge branch 'develop' into feature/shroom
jmaslek Feb 21, 2023
068d553
fix: merge and removed useless stuff
jose-donato Mar 29, 2023
67262e2
fix: ruff
jose-donato Mar 29, 2023
268f584
fix: ruff
jose-donato Mar 29, 2023
d743afe
fix: james suggestions
jose-donato Apr 11, 2023
e86878f
fix: merge with dev
jose-donato Apr 11, 2023
e18e105
Merge branch 'develop' into feature/shroom
jose-donato Apr 11, 2023
4c6647e
Merge branch 'develop' into feature/shroom
jmaslek Apr 11, 2023
de462b9
fix: added to csv
jose-donato Apr 12, 2023
57564fc
fix: generate sdk cmds
jose-donato Apr 12, 2023
5ea97ce
fix: merge and lint
jose-donato Apr 24, 2023
90da4e2
Merge pull request #4899 from OpenBB-finance/release/3.0.0
jmaslek Apr 26, 2023
a00d6ef
bump pywry
tehcoderer Apr 26, 2023
7cba702
Merge pull request #4906 from tehcoderer/hotfix/pywry-merge-fix
jmaslek Apr 26, 2023
839638b
fix rm command (#4890)
montezdesousa Apr 26, 2023
e7b8b38
Fix `crypto/defi/anchor` (#4892)
montezdesousa Apr 26, 2023
2558f94
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBBTer…
jmaslek Apr 26, 2023
61dffa0
fix windows pyinstaller subprocess fail if space in path
tehcoderer Apr 26, 2023
30d5e58
remove API_IEX_TOKEN
tehcoderer Apr 26, 2023
915dd1f
remove API_SENTIMENTINVESTOR_TOKEN
tehcoderer Apr 26, 2023
94a31f0
Merge pull request #4910 from tehcoderer/hotfix/windows-installer
jmaslek Apr 26, 2023
a949fd2
Merge branch 'main' of https://github.com/OpenBB-finance/OpenBBTermin…
jmaslek Apr 26, 2023
c570d0e
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBBTer…
jmaslek Apr 27, 2023
dc55a43
Merge branch 'develop' of https://github.com/OpenBB-finance/OpenBBTer…
jmaslek Apr 27, 2023
f8551dd
love you jose
jmaslek Apr 27, 2023
fffbfbd
make -h actually work
jmaslek Apr 27, 2023
b1ddb51
black ./
jmaslek Apr 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions openbb_terminal/core/sdk/controllers/crypto_sdk_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@ def onchain(self):
`lt_chart`: Prints table showing Trades on Decentralized Exchanges aggregated by DEX or Month\n
`prices`: Get token historical prices with volume and market cap, and average price. [Source: Ethplorer]\n
`prices_chart`: Display token historical prices with volume and market cap, and average price.\n
`query`: Get query data\n
`query_chart`: Display query results from shroom\n
`query_graph`: Helper methods for querying graphql api. [Source: https://bitquery.io/]\n
`th`: Get info about token historical transactions. [Source: Ethplorer]\n
`th_chart`: Display info about token history. [Source: Ethplorer]\n
Expand Down
4 changes: 4 additions & 0 deletions openbb_terminal/core/sdk/models/crypto_sdk_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,8 @@ class CryptoOnChain(Category):
`lt_chart`: Prints table showing Trades on Decentralized Exchanges aggregated by DEX or Month\n
`prices`: Get token historical prices with volume and market cap, and average price. [Source: Ethplorer]\n
`prices_chart`: Display token historical prices with volume and market cap, and average price.\n
`query`: Get query data\n
`query_chart`: Display query results from shroom\n
`query_graph`: Helper methods for querying graphql api. [Source: https://bitquery.io/]\n
`th`: Get info about token historical transactions. [Source: Ethplorer]\n
`th_chart`: Display info about token history. [Source: Ethplorer]\n
Expand Down Expand Up @@ -497,6 +499,8 @@ def __init__(self):
self.prices_chart = (
lib.crypto_onchain_ethplorer_view.display_token_historical_prices
)
self.query = lib.crypto_onchain_shroom_model.get_query_data
self.query_chart = lib.crypto_onchain_shroom_view.display_query
self.query_graph = lib.crypto_onchain_bitquery_model.query_graph
self.th = lib.crypto_onchain_ethplorer_model.get_token_history
self.th_chart = lib.crypto_onchain_ethplorer_view.display_token_history
Expand Down
1 change: 1 addition & 0 deletions openbb_terminal/core/sdk/models/forecast_sdk_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def __init__(self):

if not lib.FORECASTING_TOOLKIT_ENABLED:
# pylint: disable=C0415

from openbb_terminal.rich_config import console

console.print(lib.FORECASTING_TOOLKIT_WARNING)
Expand Down
1 change: 1 addition & 0 deletions openbb_terminal/core/sdk/models/portfolio_sdk_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ def __init__(self):

if not lib.OPTIMIZATION_TOOLKIT_ENABLED:
# pylint: disable=C0415

from openbb_terminal.rich_config import console

console.print(lib.OPTIMIZATION_TOOLKIT_WARNING)
Expand Down
Loading