python实现自动登录
作者:语暖心扉 时间:2023-10-20 05:11:46
利用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))
效果:
官网:链接地址
官方示例程序:链接地址
来源:https://blog.csdn.net/zat111/article/details/45604029
标签:python,自动登录
0
投稿
猜你喜欢
Go语言驱动低代码应用引擎工具Yao开发管理系统
2024-04-30 09:56:59
通俗易懂详解Python基础五种下划线作用
2024-01-01 06:36:22
python random从集合中随机选择元素的方法
2023-07-05 08:29:45
原生JS与jQuery编写简单选项卡
2024-04-30 09:52:52
Python如何利用pandas读取csv数据并绘图
2022-08-26 22:05:25
python3.x zip用法小结
2023-08-13 05:25:05
Bootstrap-table自定义可编辑每页显示记录数
2024-04-29 13:12:30
vue-router实现嵌套路由的讲解
2024-04-27 16:09:31
Python机器学习之决策树算法实例详解
2022-10-06 07:24:37
Python利用PyQT5设置闹钟功能
2023-05-08 15:34:08
MySQL 创建多对多和一对一关系方法
2024-01-29 07:52:37
JavaScript数组方法-系统性总结详解
2024-04-28 09:38:49
解决windows下python3使用multiprocessing.Pool出现的问题
2021-11-03 23:34:37
浅谈vue单一组件下动态修改数据时的全部重渲染
2024-04-27 15:51:55
关于Python与Golang语言的对比分析
2023-03-10 18:54:06
MySql用DATE_FORMAT截取DateTime字段的日期值
2024-01-14 02:48:22
golang 对私有函数进行单元测试的实例
2024-05-13 10:43:54
删除sqlserver数据库日志和没有日志的数据库恢复办法
2024-01-21 23:20:55
python3 使用OpenCV计算滑块拼图验证码缺口位置(场景示例)
2023-02-27 07:07:18
关于浮动的前世今生
2009-08-19 18:51:00