From 1e2f419243c369ae0092a2884b26aa76b4003171 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Thu, 27 Nov 2025 15:27:41 +0100 Subject: [PATCH] tell the user when the database is downloading --- corrlib/tools.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/corrlib/tools.py b/corrlib/tools.py index c320150..14bfc05 100644 --- a/corrlib/tools.py +++ b/corrlib/tools.py @@ -20,7 +20,10 @@ def k2m(k): def get_file(path, file): - print("Loading data...") + if file == "backlogger.db": + print("Downloading database...") + else: + print("Downloading data...") dl.get(os.path.join(path, file), dataset=path) print("> downloaded file") \ No newline at end of file