Hi, I'm aiming to acces the OddsPortal website to scrape odds for statistical anlysis purposes. This is very important to me so I decide to upgrade my account to a paid version. Unfortunately, I can't access their Website https://www.oddsportal.com/ when using PA. I've tested my script locally and everything is doing well. Here is some piece of my code :
from pyvirtualdisplay import Display
import time
from selenium import webdriver
with Display():
driver = webdriver.Firefox()
driver.get("https://www.oddsportal.com/")
time. sleep(5)
driver.get_screenshot_as_file('odds_portal.png')
driver.quit()
On the screenshot, I can see that Firefox is unable to load the webpage saying that the connection has timed out ! I Start feeling disappointed ;( !