一些工作中写过的脚本
写过的一些脚本
112479
112479
展开
-
python mac连点
python mac连点,适用mac和win系统原创 2022-09-01 18:08:03 · 614 阅读 · 0 评论 -
python抓取tb并汇总为excel
# coding=utf-8# 功能: 可选择忽略指定bug表单import requestsimport jsonimport timefrom openpyxl import Workbookclass TB: def __init__(self): self.get_current_time = int(time.time()) self.headers = { "password": "password" ...原创 2022-02-26 17:51:17 · 555 阅读 · 0 评论 -
selenium实践,破解极验第三代滑动验证码,80%成功率
# coding=utf-8from selenium import webdriverimport timeimport randomfrom PIL import Imagefrom PIL import ImageChopsimport operatorimport cv2from selenium.webdriver.common.action_chains ...原创 2018-06-20 20:37:00 · 2030 阅读 · 0 评论 -
python控制微信, 微信控制PC执行脚本
# coding=utf-8import wxpyimport os, traceback, timefrom selenium import webdriverdef wechat_login(): ''' 监控微信 :return: ''' bot = wxpy.Bot() # 消息接收监听器 @bot.register(...原创 2018-08-28 20:18:46 · 13891 阅读 · 1 评论 -
校验文件夹和子文件夹内的所有文件
校验文件夹和子文件夹内的所有文件原创 2022-01-15 11:28:48 · 521 阅读 · 0 评论 -
Learning Scrapy 笔记
1. 命令行在项目根目录,根据crawl模版创建名为test的spider,web指spider可爬取的域名url, scrapy提供了诸多模版 scrapy genspider –t crawl test web2. scrapy抓取中文结果默认是unicode,无法显示中文 在setting设置 FEED_EXPORT_ENCODING = 'utf-8'3. ...原创 2018-08-23 20:45:27 · 301 阅读 · 0 评论