Colin Delahunty

Results 207 comments of Colin Delahunty

Not sure but I can take lead on it. I am going to start a new PR because this has so many conflicts.

> * What happens when I do a fresh install (both Python and Installer), does it overwrite these files? E.g. will I still lose all my API keys? It checks...

It is important to note that since some of the functions this uses are conditional on whether the given terminal is an installer, this will not be fully tested until...

``` USER_DATA_DIR = Path(str(Path.home()) + "/OpenBBUserData") if not os.path.exists(USER_DATA_DIR): os.mkdir(USER_DATA_DIR) USER_HOME = Path(os.path.expanduser("~")) ENV_FILE_DIR = Path(str(Path.home()) + "/.openbb_terminal") if not os.path.exists(ENV_FILE_DIR): os.mkdir(ENV_FILE_DIR) ENV_FILE = ENV_FILE_DIR.joinpath(".env") if not ENV_FILE.is_file(): with open(str(ENV_FILE),...

Looks great Paul! Only change I need is that adding the limit argument does not change the amount of output.

That does help, is there any way to block this stuff as well?

I should have follow up. I currently have this: "logger": False, # "enable_progress_bar": False, "enable_model_summary": False, And im still getting a lot of output. However, this looks like its more...

Thank you for all of this!!

Great find guys! I got this over to our web development guy and he is updating!