本文實例講述了Python實現模擬登錄網易郵箱的方法。分享給大家供大家參考,具體如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#coding:utf-8 import urllib2,urllib import cookielib from bs4 import BeautifulSoup #設置代理IP proxy_support = urllib2.ProxyHandler({ 'http' : '120.197.234.164:80' }) #設置cookie cookie_support = urllib2.HTTPCookieProcessor(cookielib.LWPCookieJar()) opener = urllib2.build_opener(proxy_support,cookie_support,urllib2.HTTPHandler) urllib2.install_opener(opener) #開始的URL #hosturl = "http://www.renren.com" hosturl = "http://mail.163.com/" #接受表單數據的URL #posturl = "http://www.renren.com/ajaxLogin/login" posturl = "https://mail.163.com/entry/cgi/ntesdoor?df=mail163_letter&from=web&funcid=loginone&iframe=1&language=-1&passtype=1&product=mail163&net=e&style=-1&race=118_35_39_bj&[email protected]" #發(fā)送表單數據 postdata = urllib.urlencode( { "username" : "xxxxxxxxxxx" , "password" : "xxxxxxxxxxxxxxx" } ) #設置表頭 headers = { #'User-Agent':'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0/', #'Referer':'http://www.renren.com/' 'User-Agent' : "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0" , 'Referer' : 'http://mail.163.com/' } #生成HTTP請求 req = urllib2.Request( url = posturl, data = postdata, headers = headers ) print req page = urllib2.urlopen(req).read() print page listvalue = page.split( ";" ) url = listvalue[ 0 ].split( "op.location.href = " )[ 1 ] href = url[ 1 : - 1 ] print href soup = BeautifulSoup(urllib2.urlopen(href)) print soup.title |
推薦一篇不錯的文章:http://www.ythuaji.com.cn/article/100491.html
希望本文所述對大家Python程序設計有所幫助。
原文鏈接:https://blog.csdn.net/Gamer_gyt/article/details/48791137