From 98cf73653a2ac7081a0dc29cd32223371ede5ccc Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 2 Jul 2024 23:31:45 +0200 Subject: [PATCH] Reintroduce stocks, etf & crypto DB connections. --- app/main.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/main.py b/app/main.py index f7a8103..c394e74 100755 --- a/app/main.py +++ b/app/main.py @@ -107,6 +107,11 @@ with db_connection(INSTITUTE_DB) as cursor: cik_list = [row[0] for row in cursor.fetchall()] #------End Institute DB------------# +### TECH DEBT ### +con = sqlite3.connect('stocks.db') +etf_con = sqlite3.connect('etf.db') +crypto_con = sqlite3.connect('crypto.db') + load_dotenv() pb = PocketBase('http://127.0.0.1:8090')