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

improve exit message #2448

Merged
merged 4 commits into from
Aug 29, 2022
Merged
Changes from all commits
Commits
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
26 changes: 17 additions & 9 deletions openbb_terminal/terminal_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,31 @@ def print_goodbye():
# "...when offered a flight to the moon, nobody asks about what seat."

console.print(
"OpenBB Terminal is the result of a strong community building an "
"[param]investment research platform for everyone.[/param]\n\n"
"Join us on [cmds]https://openbb.co/discord[/cmds], "
"show your appreciation on [cmds]https://twitter.com/openbb_finance[/cmds],\n"
"ask support on [cmds]https://openbb.co/support[/cmds], "
"or even request a feature on [cmds]https://openbb.co/request-a-feature[/cmds]\n"
"[param]The OpenBB Terminal is the result of a strong community building an "
"investment research platform for everyone, anywhere.[/param]\n"
)

console.print(
"[bold]Fill in our 2-minute survey so we better understand how we can improve the terminal "
"at [cmds]https://openbb.co/survey[/cmds][/bold]\n"
"We are always eager to welcome new contributors and you can find our open jobs here:\n"
"[cmds]https://www.openbb.co/company/careers#open-roles[/cmds]\n"
)

console.print(
"Heard about our[param] discord bot[/param] yet? Check it out here https://openbb.co/products/bot \n"
"Join us : [cmds]https://openbb.co/discord[/cmds]\n"
"Follow us : [cmds]https://twitter.com/openbb_finance[/cmds]\n"
"Ask support : [cmds]https://openbb.co/support[/cmds]\n"
"Request a feature : [cmds]https://openbb.co/request-a-feature[/cmds]\n"
)

console.print(
"[bold]Fill in our 2-minute survey so we better understand how we can improve the OpenBB Terminal "
"at [cmds]https://openbb.co/survey[/cmds][/bold]\n"
)

console.print(
"[param]In the meantime access investment research from your chatting platform using the OpenBB Bot[/param]\n"
"Try it today, for FREE: [cmds]https://openbb.co/products/bot[/cmds]\n"
)
logger.info("END")


Expand Down