📦 Initialize Geulbeot structure and merge Prompts & test projects

This commit is contained in:
2026-03-05 11:32:29 +09:00
commit 555a954458
687 changed files with 205247 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
def fetch_dnews_articles(base_url, start_page, end_page):
# Selenium WebDriver 설정
options = webdriver.ChromeOptions()
options.add_argument('--headless') # 브라우저가 뜨지 않게 설정
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
# ChromeDriver 경로 설정
chromedriver_path = 'D:/python_for crawling/webdriver/chromedriver-win64/chromedriver.exe' # ChromeDriver 경로 설정
service = ChromeService(executable_path=chromedriver_path)
driver = webdr