[Solved] Please change your browser settings or upgrade your browser ( urllib, python 3.6) [closed]


The site you are accessing requires javascript and cookies. Urllib only provides support for cookies (with cookie jar). To get around the need for javascript, check out a library like selenium, and use it with phantomjs.

pip install selenium

Selenium with phantomjs is more powerful then urllib, but you pay the penalty of it being a bit slower. Heres is some simple code to get off the ground with selenium and phantomjs:

from selenium import webdriver
driver = webdriver.PhantomJS()
driver.get("https://google.com/")
driver.quit()

For more information on how to do specific things with selenium, check out the documentation.

2

solved Please change your browser settings or upgrade your browser ( urllib, python 3.6) [closed]