fix: synology py38 compatibility and KIS validation deps

This commit is contained in:
2026-06-21 23:09:55 +09:00
parent c76f763e64
commit febd85d95e
8 changed files with 308 additions and 19 deletions
+2 -3
View File
@@ -3,11 +3,10 @@ from __future__ import annotations
import json
import re
import sqlite3
from datetime import datetime
from datetime import datetime, timedelta, timezone
from functools import lru_cache
from pathlib import Path
from typing import Any
from zoneinfo import ZoneInfo
import yaml
@@ -15,7 +14,7 @@ import yaml
ROOT = Path(__file__).resolve().parents[2]
DEFAULT_DB = ROOT / "outputs" / "snapshot_admin" / "snapshot_admin.db"
DEFAULT_SEED_JSON = ROOT / "GatherTradingData.json"
KST = ZoneInfo("Asia/Seoul")
KST = timezone(timedelta(hours=9))
SETTINGS_TABLE = "settings"
SNAPSHOT_TABLE = "account_snapshot"