This commit is contained in:
dsyoon
2023-08-27 21:05:59 +09:00
parent 0d69ead097
commit e7012c8fa3
6 changed files with 208 additions and 15 deletions

View File

@@ -39,7 +39,7 @@ class HTS_etf (HTS):
def connect2StockDB(self):
self.conn_stock = sqlite3.connect(os.path.join(self.RESOURCE_PATH, "stock.db"))
self.conn_stock = sqlite3.connect(os.path.join(self.RESOURCE_PATH, "resources/stock.db"))
self.cursor_stock = self.conn_stock.cursor()
return