首页 > 代码库 > Python模拟登陆:模拟登陆电子科大信息门户测试

Python模拟登陆:模拟登陆电子科大信息门户测试

最近在学习Python的网络操作,网上有很多模拟登陆方法。这里做个笔记。 没有验证码的还是比较容易的。

#coding:utf-8
import re
import urllib
import urllib2
import cookielib
import os
import json
import sys
import time
from urllib import quote,unquote
from urllib2 import HTTPError
from urllib2 import URLError

#登陆模块
def Login():
    try :
        cj = cookielib.CookieJar();
        opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj));
        urllib2.install_opener(opener); 
        
        #打开获得 cookie
        info_URL = "http://portal.uestc.edu.cn/index.portal"
        info_Login_URL = "https://uis.uestc.edu.cn/amserver/UI/Login";     
        infoOPEN = urllib2.urlopen(info_URL)
        print 1
        #生成要发送的数据
        LoginData = http://www.mamicode.com/{>
经过测试成功

IDtoken1和IDtoken2填用户名和密码。其他不用变

linux下面 直接python spider.py 即可运行

Python模拟登陆:模拟登陆电子科大信息门户测试