summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDidierRLopes <dro.lopes@campus.fct.unl.pt>2021-09-25 17:03:09 +0100
committerGitHub <noreply@github.com>2021-09-25 17:03:09 +0100
commit71b9e82f3645c25ba4f2c3e552d9cbced44f91bb (patch)
treef3778178d50c3e49e10096e22ec2edbc4cd13865
parent85f48b332e9c1a2519a8321084f0c1485a393131 (diff)
Add Econiverse to resources (#762)
* nitpicky * Add econiverse to resources
-rw-r--r--gamestonk_terminal/portfolio/brokers/bro_controller.py13
-rw-r--r--gamestonk_terminal/portfolio/portfolio_controller.py1
-rw-r--r--gamestonk_terminal/resources/resources_controller.py7
3 files changed, 14 insertions, 7 deletions
diff --git a/gamestonk_terminal/portfolio/brokers/bro_controller.py b/gamestonk_terminal/portfolio/brokers/bro_controller.py
index 066c0a340b3..f6851bc880c 100644
--- a/gamestonk_terminal/portfolio/brokers/bro_controller.py
+++ b/gamestonk_terminal/portfolio/brokers/bro_controller.py
@@ -36,6 +36,7 @@ class BrokersController:
"""Print help"""
help_string = """
>>BROKERS<<
+
What would you like to do?
cls clear screen
?/help show this menu again
@@ -43,13 +44,13 @@ What would you like to do?
quit quit to abandon program, logs out of brokers
Brokers:
- >ally Ally Invest Menu
- >alpaca Alpaca Menu
- >degiro Degiro Menu
- >rh Robinhood Menu
+> ally Ally Invest Menu
+> alpaca Alpaca Menu
+> degiro Degiro Menu
+> rh Robinhood Menu
Crypto Brokers:
- >cb Coinbase Pro Menu
+> cb Coinbase Pro Menu
"""
print(help_string)
@@ -164,7 +165,7 @@ def menu():
"does not take advantage of your data.\n"
" - HOWEVER, our project imports almost 200 different open source python modules. Therefore, it "
"is impossible for us to check the coding standards and security of each of these modules. "
- "Hence why adding this disclaimer here.\n"
+ "Hence why adding this disclaimer here."
)
bro_controller.print_help()
diff --git a/gamestonk_terminal/portfolio/portfolio_controller.py b/gamestonk_terminal/portfolio/portfolio_controller.py
index 5475d586ef8..4a5a7045177 100644
--- a/gamestonk_terminal/portfolio/portfolio_controller.py
+++ b/gamestonk_terminal/portfolio/portfolio_controller.py
@@ -49,7 +49,6 @@ class PortfolioController:
def print_help(self):
"""Print help"""
help_text = """
-
>> PORTFOLIO <<
What do you want to do?
diff --git a/gamestonk_terminal/resources/resources_controller.py b/gamestonk_terminal/resources/resources_controller.py
index 5d57f18c7f9..d556cb83de0 100644
--- a/gamestonk_terminal/resources/resources_controller.py
+++ b/gamestonk_terminal/resources/resources_controller.py
@@ -31,6 +31,7 @@ class ResourceCollectionController:
"edgar",
"fred",
"learn",
+ "econiverse",
]
CHOICES += CHOICES_COMMANDS
@@ -61,6 +62,7 @@ What do you want to do?
edgar online public database from SEC
fred economic research data
learn trading analysis, tips and resources
+ econiverse compilation of free knowledge and educational resources
"""
print(help_str)
@@ -141,6 +143,11 @@ What do you want to do?
webbrowser.open("https://moongangcapital.com/free-stock-market-resources/")
print("")
+ def call_econiverse(self, _):
+ """Process econiverse command"""
+ webbrowser.open("https://econiverse.github.io")
+ print("")
+
def menu():
"""Resource Collection Menu"""