How do you open https url in Python?
import urllib2
url = "https://user:password@domain.com/path/
f = urllib2.urlopen(url)
print f.read()
gives:
httplib.InvalidURL: nonnumeric port: 'password@domain.com'
Thanks in advance, Etam.
|
How do you open https url in Python?
gives:
Thanks in advance, Etam. |
|||
|
|
Please read about the urllib2 password manager and the basic authentication handler as well as the digest authentication handler. http://docs.python.org/library/urllib2.html#abstractbasicauthhandler-objects http://docs.python.org/library/urllib2.html#httpdigestauthhandler-objects Your urllib2 script must actually provide enough information to do HTTP authentication. Usernames, Passwords, Domains, etc. |
|||
|
|
|
This has never failed me
|
|||
|
|
|
If you want to pass username and password information to |
|||
|
|
|
You cannot pass credentials to |
|||
|
|