Fix SF #1703110, Incorrect example for add_password() (use uri, not host)

This commit is contained in:
Neal Norwitz 2007-04-24 04:54:24 +00:00
parent 6def78ae85
commit 112717dd0b
2 changed files with 8 additions and 2 deletions

View file

@ -817,7 +817,10 @@ Use of Basic HTTP Authentication:
import urllib2
# Create an OpenerDirector with support for Basic HTTP Authentication...
auth_handler = urllib2.HTTPBasicAuthHandler()
auth_handler.add_password('realm', 'host', 'username', 'password')
auth_handler.add_password(realm='PDQ Application',
uri='https://mahler:8092/site-updates.py',
user='klem',
passwd='kadidd!ehopper')
opener = urllib2.build_opener(auth_handler)
# ...and install it globally so it can be used with urlopen.
urllib2.install_opener(opener)