欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python爬虫_实现校园网自动重连脚本的教程

程序员文章站 2023-11-04 10:43:10
一、背景 最近学校校园网不知道是什么情况,总出现掉线的情况。每次掉线都需要我手动打开web浏览器重新进行账号密码输入,重新进行登录。系统的问题我没办法解决,但是可以写一个...

一、背景

最近学校校园网不知道是什么情况,总出现掉线的情况。每次掉线都需要我手动打开web浏览器重新进行账号密码输入,重新进行登录。系统的问题我没办法解决,但是可以写一个简单的python脚本用于自动登录校园网。每次掉线后,再打开任意网页就是这个页面。

python爬虫_实现校园网自动重连脚本的教程

二、实现代码

#-*- coding:utf-8 -*-
__author__ = 'pf'
import time
import requests
class login:
 #初始化
 def __init__(self):
  #检测间隔时间,单位为秒
  self.every = 10
 #模拟登录
 def login(self):
  print self.getcurrenttime(), u"拼命连网中..."
  url="http://222.24.19.190:8080/portal/pws?t=li"
  #消息头
  headers={
  'host':"222.24.19.190:8080",
  'user-agent':"mozilla/5.0 (windows nt 6.3; wow64; rv:53.0) gecko/20100101 firefox/53.0",
  'accept':"application/json, text/javascript, */*; q=0.01",
  'accept-language':"zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
  'accept-encoding':"gzip, deflate",
  'referer':"http://222.24.19.190:8080/portal/index_default.jsp",
  'content-type':"application/x-www-form-urlencoded",
  'x-requested-with':"xmlhttprequest",
  'content-length':"291",
  'connection':"close"
  }
  #提交的信息
  payload={
  'username':'1403810041',
  'userpwd':'mtk4ndey',
  'userurl':'http%3a%2f%2fwww.msn.com%3focid%3dwispr&userip=222.24.52.200',
  'portalproxyip':'222.24.19.190',
  'portalproxyport':'50200',
  'dcpwdneedencrypt':'1',
  'assigniptype':'0',
  'approoturl':'=http%3a%2f%2f222.24.19.190%3a8080%2fportal%2f',
  'manualurlencryptkey':'rtczgly2wjkfobfej0jf8a%3d%3d'
  }
  try:
   r=requests.post(url,headers=headers,data=payload)
   print self.getcurrenttime(),u'连上了...现在开始看连接是否正常'
  except:
   print("error")
 #判断当前是否可以连网
 def canconnect(self):
  try:
   q=requests.get("http://www.baidu.com")
   if(q.status_code==200):
    return true
   else:
    return false
  except:
   print 'error'
 #获取当前时间
 def getcurrenttime(self):
  return time.strftime('[%y-%m-%d %h:%m:%s]',time.localtime(time.time()))
 #主函数
 def main(self):
  print self.getcurrenttime(), u"hi,欢迎使用自动登陆系统"
  while true:
   self.login()
   while true:
    can_connect = self.canconnect()
    if not can_connect:
     print self.getcurrenttime(),u"断网了..."
     self.login()
    else:
     print self.getcurrenttime(), u"一切正常..."
    time.sleep(self.every)
   time.sleep(self.every)
login = login()
login.main()

三、解决步骤

首先需要一个用于抓包的工具。我们要抓取提交的数据以及提交到的url地址。我这里用的是firefox浏览器的httpfox插件。

python爬虫_实现校园网自动重连脚本的教程

用firefox浏览器打开登录页面,并且打开httpfox插件。在页面中输入账户名和密码点击上线后,注意一下httpfox中有一行记录的method是post。我们需要记录的就是其中的post data中的username和userpwd。以及headers中的数据。还有post到的url地址。

如图:

python爬虫_实现校园网自动重连脚本的教程

python爬虫_实现校园网自动重连脚本的教程

我这里使用了python中的requests库。

将获取到的url地址、username、userpwd、headers填入代码中对应的位置。

python爬虫_实现校园网自动重连脚本的教程

可以直接运行python程序,如图:

python爬虫_实现校园网自动重连脚本的教程

或者可以用pyinstaller库生成exe文件再运行,如图:

python爬虫_实现校园网自动重连脚本的教程

python爬虫_实现校园网自动重连脚本的教程

四、总结

我这里设置了一个死循环,让程序每隔10s检测一下是否能连上网,若可以连上则输出“一切正常”然后接着循环,若不能连上,则输出“断网了”然后重新连网。我们可以对程序设置开机自启动。这样,开机也就不需要再手动去连网了。

以上这篇python爬虫_实现校园网自动重连脚本的教程就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。