I know similar questions have been answered extensively, but here is a slightly different one.
I usually do:
URL='some_url'
requests.get(URL, auth=HTTPBasicAuth('userid','passwd'))
but now I am trying to download something from a website that requires only a password but no username. I have played around with None as userid but I still get <Response [403]>. Any ideas?