Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -38,30 +38,6 @@ import zipfile
|
|
38 |
import os
|
39 |
import subprocess
|
40 |
|
41 |
-
# Check Chrome version
|
42 |
-
chrome_version = subprocess.getoutput("google-chrome --version")
|
43 |
-
chrome_version_number = chrome_version.split()[-1] # Extract only the version number
|
44 |
-
|
45 |
-
# Construct the download URL
|
46 |
-
url = f"https://chromedriver.storage.googleapis.com/{chrome_version_number}/chromedriver_{platform.system().lower()}64.zip"
|
47 |
-
|
48 |
-
# Download ChromeDriver
|
49 |
-
response = requests.get(url)
|
50 |
-
|
51 |
-
# Check if the download was successful
|
52 |
-
if response.status_code == 200:
|
53 |
-
# Save the zip file
|
54 |
-
with open("chromedriver.zip", "wb") as file:
|
55 |
-
file.write(response.content)
|
56 |
-
|
57 |
-
# Unzip the downloaded file
|
58 |
-
with zipfile.ZipFile("chromedriver.zip", 'r') as zip_ref:
|
59 |
-
zip_ref.extractall("drivers") # Extract to a folder named 'drivers'
|
60 |
-
|
61 |
-
# Clean up the zip file
|
62 |
-
os.remove("chromedriver.zip")
|
63 |
-
else:
|
64 |
-
raise Exception(f"Failed to download ChromeDriver: {response.status_code} - {response.text}")
|
65 |
#Settings for using the driver without a UI
|
66 |
# Set up Chrome options
|
67 |
options = webdriver.ChromeOptions()
|
|
|
38 |
import os
|
39 |
import subprocess
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
#Settings for using the driver without a UI
|
42 |
# Set up Chrome options
|
43 |
options = webdriver.ChromeOptions()
|