[issue9725] urllib.request.FancyURLopener won't connect to pages requiring username and password

2021-05-07 Thread Senthil Kumaran
Senthil Kumaran added the comment: urllib.request.FancyURLopener has been deprecated since 3.3 https://docs.python.org/3/library/urllib.request.html#urllib.request.FancyURLopener This bug wont be fixed. The other higher level methods (urlopen) could used for basic authentication with usernam

[issue9725] urllib.request.FancyURLopener won't connect to pages requiring username and password

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue9725] urllib.request.FancyURLopener won't connect to pages requiring username and password

2014-06-28 Thread Mark Lawrence
Mark Lawrence added the comment: @Senthil can you follow up on this please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1 ___ Python tracker ___

[issue9725] urllib.request.FancyURLopener won't connect to pages requiring username and password

2011-12-20 Thread Joonas Kuorilehto
Changes by Joonas Kuorilehto : -- nosy: +joneskoo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue9725] urllib.request.FancyURLopener won't connect to pages requiring username and password

2010-10-04 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue9725] urllib.request.FancyURLopener won't connect to pages requiring username and password

2010-08-31 Thread Petr Machek
New submission from Petr Machek : Code: import urllib.request class MyOpener(urllib.request.FancyURLopener): prompt_user_passwd = lambda x, y, z: ("username", "password") opener = MyOpener() page = opener.open("http://riddle.p4x.ch/music";) print(page.readlines()) opener.open() call ends