chore: Suppress urllib3 SSL warnings in main.py
This commit is contained in:
parent
c610bc7d4a
commit
8d7ecb4f39
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user