Mar-01-2018, 09:42 PM
So I'm trying to webscrape some info from a page with stock quotes. I'm getting an error 400, which only happens on this page - have tried a range of other sites.
My code look's like this:
Any ideas what would cause just this 1 page to give me an error?
My code look's like this:
1 2 3 |
from urllib.request import urlopen as uReg uClient = uReg(my_url) |