Skip to content

Commit

Permalink
Update 002_Scraping_Future_Matches.py
Browse files Browse the repository at this point in the history
change chrometype module
  • Loading branch information
16bravo authored Feb 8, 2024
1 parent bb2bcec commit 4ca6328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/000_Web_Scraping/002_Scraping_Future_Matches.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from webdriver_manager.chrome import ChromeDriverManager
from webdriver_manager.core.utils import ChromeType
from webdriver_manager.core.os_manager import ChromeType
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
import pandas as pd
Expand Down Expand Up @@ -104,4 +104,4 @@ def convert_date(date_str):
df['date'] = pd.to_datetime(df['date'], format='%d/%m/%Y')
df = df.sort_values(by='date')

df.to_csv('data/fixtures.csv', index=False)
df.to_csv('data/fixtures.csv', index=False)

0 comments on commit 4ca6328

Please sign in to comment.