chore: Suppress urllib3 SSL warnings in main.py

This commit is contained in:
Bobby (aider) 2025-02-08 20:16:58 -08:00
parent c610bc7d4a
commit 8d7ecb4f39

View File

@ -1,3 +1,7 @@
import warnings
from urllib3.exceptions import NotOpenSSLWarning
warnings.filterwarnings('ignore', category=NotOpenSSLWarning)
import datetime
from screener.data_fetcher import validate_date_range, fetch_financial_data, get_stocks_in_time_range
from screener.t_sunnyband import run_sunny_scanner