上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: https://www.cnblogs.com/bingninger/p/16054622.html 阅读全文
posted @ 2022-04-20 21:33 东方不败--Never 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1 import requests 2 import json 3 from pyquery import PyQuery as pq 4 5 url = 'http://www.icbc.com.cn/ICBCDynamicSite2/LBS/nets/netsappointreal.aspx' 阅读全文
posted @ 2022-04-17 19:09 东方不败--Never 阅读(52) 评论(0) 推荐(0) 编辑
摘要: js 的base64 加密转成Python 1 import requests 2 import execjs 3 import json 4 import base64 5 import time 6 7 url='http://webapi.cninfo.com.cn/api/sysapi/p_ 阅读全文
posted @ 2022-04-16 18:18 东方不败--Never 阅读(2589) 评论(0) 推荐(0) 编辑
摘要: 一、jmeter 报告的生成 二、Jmeter+Ant+Jenkins 接口自动化平台的搭建 1、安装Ant 2、配置文件、Ant 生成报告 3、报告的优化 Ant编译并生成报告 4、持续性集成Jenkins 5、定时任务 阅读全文
posted @ 2022-04-16 17:33 东方不败--Never 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 识别验证码 1 import ddddocr 2 def ocr(path): 3 ocr = ddddocr.DdddOcr() 4 with open(path, 'rb') as f: 5 img_bytes = f.read() 6 res = ocr.classification(img_ 阅读全文
posted @ 2022-04-09 15:24 东方不败--Never 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 如果页面是gbk编码,就采用以下方式解决 1 r = requests.get(url=url,headers=headers) 2 r.encoding='gbk' 3 html = r.text 阅读全文
posted @ 2022-04-09 14:41 东方不败--Never 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 一、排序 1 ls=[3,2,5,1] 2 # 方法一: 3 def bubble(ls): 4 for i in range(0,len(ls)): 5 for j in range(i+1,len(ls)): 6 if ls[i]>ls[j]: 7 ls[i],ls[j]=ls[j],ls[i] 阅读全文
posted @ 2021-12-28 09:32 东方不败--Never 阅读(33) 评论(0) 推荐(0) 编辑
摘要: vue2.js 下载地址:https://unpkg.com/vue@2.2.1/dist/vue.js vue-router.js 下载地址:https://unpkg.com/vue-router@3.5.3/dist/vue-router.js es6:https://es6.ruanyife 阅读全文
posted @ 2021-12-19 09:21 东方不败--Never 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 聊一聊使用airtest-selenium做Web自动化的常见问题 https://mp.weixin.qq.com/s/ZQREHBVTPlvWYHVjBR9AFw Selenium快速上手实战 | 上篇 https://mp.weixin.qq.com/s/Fw5O8dXQ3bAX8UoyWuW 阅读全文
posted @ 2021-12-16 10:51 东方不败--Never 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1 import pandas as pd 2 import re #正则表达式 3 import seaborn as sns 4 from matplotlib import pyplot as plt 5 import jieba #分词 6 import jieba.analyse 7 im 阅读全文
posted @ 2021-12-10 13:30 东方不败--Never 阅读(178) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页