✨ feat: .env 파일 로드 및 Slack 웹훅 알림 지원 추가
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 2m48s
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 2m48s
This commit is contained in:
@@ -14,7 +14,15 @@ import sys
|
||||
import time
|
||||
import json
|
||||
import logging
|
||||
import urllib.request
|
||||
from datetime import datetime
|
||||
|
||||
# .env 파일 자동 로드
|
||||
try:
|
||||
from dotenv import load_dotenv
|
||||
load_dotenv()
|
||||
except ImportError:
|
||||
pass
|
||||
from selenium import webdriver
|
||||
from selenium.webdriver.common.by import By
|
||||
from selenium.webdriver.chrome.service import Service
|
||||
@@ -32,6 +40,7 @@ CONFIG = {
|
||||
"BUY_COUNT": 1, # 구매 게임 수 (1~10)
|
||||
"HEADLESS": True, # True: 브라우저 창 숨김, False: 브라우저 창 표시
|
||||
"LOG_FILE": "lotto_log.json",
|
||||
"SLACK_WEBHOOK_URL": os.environ.get("SLACK_WEBHOOK_URL", ""),
|
||||
}
|
||||
|
||||
# 로깅 설정
|
||||
|
||||
Reference in New Issue
Block a user