This article describes how to automatically log on to a 126 mailbox using Python. it involves Python's mailbox-related skills and has some reference value, for more information about how to automatically log on to the 126 mailbox using Python, see the example in this article. Share it with you for your reference. The specific implementation method is as follows:
Import sys, urllib2, urllib, cookielibimport recookie = cookielib. LWPCookieJar () opener = urllib2.build _ opener (urllib2.HTTPCookieProcessor (cookie) urllib2.install _ opener (opener) url = 'http: // entry.mail.126.com/cgi/login? Hid = 10010102 & lightweight = 1 & language = 0 & style = 11 'user _ agent = 'mozilla/4.0 (compatible; MSIE 5.5; Windows NT) 'headers = {'user-Agent': user_agent} values = {'bcookie ': '', 'domain': '2017. com ', 'Enter. x': 'login ', 'language': '0', 'pass':' ##### ', 'Style': '11', 'user ': 'guijia8427 '} data = urllib. urlencode (values) req = urllib2.Request (url, data, headers) response = urllib2.urlopen (req) the_page = respons E. read () sor = re. compile (r'sid = (. +) & funcid') s = sor. findall (the_page) url2 = 'http: // tg1a3.mail.126.com/coremail/fcg/ldapapp? Comment ', 'w') file. write (data2) file. close ()
I hope this article will help you with Python programming.