Spaces:
Running
Running
Update trend_crawl.py
Browse files- trend_crawl.py +6 -10
trend_crawl.py
CHANGED
@@ -22,16 +22,12 @@ complete_starttime = time.time()
|
|
22 |
#driver_path = os.path.join(script_dir, 'chromedriver')
|
23 |
|
24 |
def setup_driver():
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
service = ChromeService(ChromeDriverManager().install())
|
32 |
-
|
33 |
-
driver = webdriver.Chrome(service=service, options=chrome_options)
|
34 |
-
return driver
|
35 |
|
36 |
def process_selenium_row(index, selenium_rows, driver):
|
37 |
"""Extract dynamic data using Selenium by clicking on the row."""
|
|
|
22 |
#driver_path = os.path.join(script_dir, 'chromedriver')
|
23 |
|
24 |
def setup_driver():
|
25 |
+
options = webdriver.ChromeOptions()
|
26 |
+
options.add_argument('--headless')
|
27 |
+
options.add_argument('--no-sandbox')
|
28 |
+
options.add_argument('--disable-dev-shm-usage')
|
29 |
+
wd = webdriver.Chrome(options=options)
|
30 |
+
return wd
|
|
|
|
|
|
|
|
|
31 |
|
32 |
def process_selenium_row(index, selenium_rows, driver):
|
33 |
"""Extract dynamic data using Selenium by clicking on the row."""
|