python实现自动登录


Posted in Python onSeptember 17, 2018

利用python,可以实现填充网页表单,从而自动登录WEB门户。

(注意:以下内容只针对python3)

环境准备:

(1)安装python
(2)安装splinter,下载源码 python setup install

#coding=utf-8
import time
from splinter import Browser
 
def login_mail(url):
  browser = Browser()
  #login 163 email websize
  browser.visit(url)
  #wait web element loading
  #fill in account and password
  browser.find_by_id('username').fill('你的用户名称')
  browser.find_by_id('password').fill('你的密码')
  #click the button of login
  browser.find_by_id('loginBtn').click()
  time.sleep(5)
  #close the window of brower
  browser.quit()
 
if __name__ == '__main__':
  mail_addr ='http://reg.163.com/'
  login_mail(mail_addr)

Tips:

(1)如果需要修改web的html属性,可以使用:js

browser.execute_script('document.getElementById("Html属性ID").value = "在此提供默认值"')

(2)browser = Browser()

不指定的情况下,浏览器驱动是火狐(Firefox),可以指定其他:browser = Browser(‘chrome'),需要下载对应的驱动程序

1.python3浏览页面

#coding=utf-8
import urllib.request
import time
#在请求加上头信息,伪装成浏览器访问
headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0'}
chaper_url='http://XXX'
 
vist_num=1
while vist_num<1000:
 if vist_num%50==0:
  time.sleep(5)
 print("This is the 【 "+str(vist_num)+" 】次尝试")
 req = urllib.request.Request(url=chaper_url, headers=headers) 
 urllib.request.urlopen(req).read() #.decode('utf-8')
 vist_num+=1

2.python 多线程

#coding=utf-8
import threading #导入threading包
from time import sleep
import time
 
def fun1(): 
  print ("Task 1 executed." )
  time.sleep(3)
  print ("Task 1 end." )
 
def fun2():
  print ("Task 2 executed." )
  time.sleep(5)
  print ("Task 2 end." )
  
threads = [] 
t1 = threading.Thread(target=fun1) 
threads.append(t1)
t2 = threading.Thread(target=fun2)
threads.append(t2)
 
for t in threads:
  # t.setDaemon(True) 
  t.start()

3.利用python下载百度图片

#coding=utf-8
import urllib.request
import re
 
def getHtml(url):
  page = urllib.request.urlopen(url)
  html = page.read()
  return html
 
def getImg(html):
  reg = r'src="(.+?\.jpg)"'
  imgre = re.compile(reg)
  html=html.decode('utf-8')
  imglist = re.findall(imgre,html)
  x = 0
  for imgurl in imglist:
    urllib.request.urlretrieve(imgurl,'%s.jpg' % x)
    x+=1
    print(str(x))

html = getHtml("http://image.baidu.com/channel?c=%E6%91%84%E5%BD%B1&t=%E5%85%A8%E9%83%A8&s=0")
 
print(getImg(html))

效果:

python实现自动登录

官网:链接地址

官方示例程序:链接地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python实现在无须过多援引的情况下创建字典的方法
Sep 25 Python
Python函数返回值实例分析
Jun 08 Python
Python入门教程之运算符与控制流
Aug 17 Python
Python的时间模块datetime详解
Apr 17 Python
python递归打印某个目录的内容(实例讲解)
Aug 30 Python
Python构建网页爬虫原理分析
Dec 19 Python
Python3之简单搭建自带服务器的实例讲解
Jun 04 Python
Python实现的爬取豆瓣电影信息功能案例
Sep 15 Python
Python单元测试与测试用例简析
Nov 09 Python
爬虫代理池Python3WebSpider源代码测试过程解析
Dec 20 Python
Python pandas读取CSV文件的注意事项(适合新手)
Jun 20 Python
Python图像处理库PIL详细使用说明
Apr 06 Python
python发送告警邮件脚本
Sep 17 #Python
python实现zabbix发送短信脚本
Sep 17 #Python
python通过zabbix api获取主机
Sep 17 #Python
Python从ZabbixAPI获取信息及实现Zabbix-API 监控的方法
Sep 17 #Python
python实现Zabbix-API监控
Sep 17 #Python
centos6.8安装python3.7无法import _ssl的解决方法
Sep 17 #Python
Python从使用线程到使用async/await的深入讲解
Sep 16 #Python
You might like
php版微信公众平台开发之验证步骤实例详解
2016/09/23 PHP
php如何把表单内容提交到数据库
2019/07/08 PHP
Yii框架组件的事件机制原理与用法分析
2020/04/07 PHP
firefox中用javascript实现鼠标位置的定位
2007/06/17 Javascript
innertext , insertadjacentelement , insertadjacenthtml , insertadjacenttext 等区别
2007/06/29 Javascript
JavaScript为对象原型prototype添加属性的两种方式
2010/08/01 Javascript
json2.js的初步学习与了解
2011/10/06 Javascript
导入extjs、jquery 文件时$使用冲突问题解决方法
2014/01/14 Javascript
JavaScript 实现完美兼容多浏览器的复制功能代码
2015/04/28 Javascript
利用js实现禁止复制文本信息
2015/06/03 Javascript
JavaScript实现自动生成网页元素功能(按钮、文本等)
2015/11/21 Javascript
Jquery修改image的src属性,图片不加载问题的解决方法
2016/05/17 Javascript
微信小程序 获取相册照片实例详解
2016/11/16 Javascript
使用bat打开多个cmd窗口执行gulp、node
2017/02/17 Javascript
JS简单生成随机数(随机密码)的方法
2017/05/11 Javascript
webpack 模块热替换原理
2018/04/09 Javascript
layui导出所有数据的例子
2019/09/10 Javascript
手写Vue弹窗Modal的实现代码
2019/09/11 Javascript
[01:04:48]VGJ.S vs TNC Supermajor 败者组 BO3 第一场 6.6
2018/06/07 DOTA
用vue.js组件模拟v-model指令实例方法
2019/07/05 Python
python 字典的打印实现
2019/09/26 Python
pytorch 自定义卷积核进行卷积操作方式
2019/12/30 Python
python 已知平行四边形三个点,求第四个点的案例
2020/04/12 Python
Omio西班牙:全欧洲低价大巴、火车和航班搜索和比价
2017/02/11 全球购物
环法自行车赛官方商店:Le Tour de France
2017/08/27 全球购物
具有防紫外线功能的高性能钓鱼服装:Hook&Tackle
2018/08/16 全球购物
Sperry澳大利亚官网:源自美国帆船鞋创始品牌
2019/07/29 全球购物
StudentUniverse英国:学生航班、酒店和旅游
2019/08/25 全球购物
Python里面search()和match()的区别
2016/09/21 面试题
知识竞赛活动方案
2014/02/18 职场文书
党的群众路线整改落实情况汇报
2014/10/28 职场文书
培训班通知
2015/04/25 职场文书
怎样写家长意见
2015/06/04 职场文书
公司人事管理制度
2015/08/05 职场文书
小学课改工作总结
2015/08/13 职场文书
利用Python网络爬虫爬取各大音乐评论的代码
2021/04/13 Python