[Python脚本] 登陆论坛账号


               
               
               
               
               
                #!/usr/bin/python
import urllib2
auth = urllib2.HTTPBasicAuthHandler()
auth.add_password('realm', 'host', 'myID', 'myPassword')
opener = urllib2.build_opener(auth, urllib2.CacheFTPHandler)
urllib2.install_opener(opener)
data = urllib2.urlopen('http://...........')
print data.read()