上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: import time from tomorrow import threads @threads(3) def print_thread(i): time.sleep(2) print(time.strftime("%H:%M:%S"),i,"执行完毕") list = { 'AAA', 'BBB 阅读全文
posted @ 2021-06-11 16:59 OTAKU_nicole 阅读(70) 评论(0) 推荐(0) 编辑
摘要: import requests url = 'https://www.***.com/downloadFile' r = requests.get(url) fp = open("test.xls", "wb") fp.write(r.content) fp.close() cookie略,根据实际 阅读全文
posted @ 2021-06-03 16:36 OTAKU_nicole 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 抓到页面请求可以看到这些,使用files,cookie省略,根据实际情况添加 import requests url = "https://www.***.com/uploadExcel.json" # => 打开上传文件并且加入文件相关参数 file = { 'excel': open(r'C:\ 阅读全文
posted @ 2021-06-03 14:53 OTAKU_nicole 阅读(217) 评论(0) 推荐(0) 编辑
摘要: import json str_Detail = '{"rowOne":"A","rowTwo":"B","rowThree":"C"}' print(str_Detail, type(str_Detail)) ''' {"rowOne":"A","rowTwo":"B","rowThree":"C 阅读全文
posted @ 2021-05-27 14:06 OTAKU_nicole 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 打开chrome浏览器的安装目录..\Google\Chrome\User Data\Default 删除Login Data , Login Data-journal两个文件 重启浏览器即可 阅读全文
posted @ 2021-05-21 13:39 OTAKU_nicole 阅读(4561) 评论(1) 推荐(0) 编辑
摘要: 由于之前测试环境坏了,重新安装碰到一些问题 ImportError: cannot import name 'PortScanner' from 'nmap' 解决方案,先卸载nmap、python-nmap、PortScanner后重新安装python-nmap==0.6.1 (版本没有仔细研究过 阅读全文
posted @ 2021-05-13 09:49 OTAKU_nicole 阅读(211) 评论(0) 推荐(0) 编辑
摘要: xlrd版本问题,xlsx另存为xls可暂时解决 阅读全文
posted @ 2021-05-13 09:48 OTAKU_nicole 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 启动:net start jenkins 停止:net stop jenkins 阅读全文
posted @ 2021-04-29 10:57 OTAKU_nicole 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Git+Jenkins配置(一)环境搭建 Git+Jenkins配置(二)jenkins中通过git拉取代码 Git+Jenkins配置(三)配置HTML报告 Git+Jenkins配置(四)自动发送邮件 输入邮箱配置后保存 修改任务配置 增加构建后操作步骤-Editable Email Notif 阅读全文
posted @ 2021-04-28 15:37 OTAKU_nicole 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Git+Jenkins配置(一)环境搭建 Git+Jenkins配置(二)jenkins中通过git拉取代码 Git+Jenkins配置(三)配置HTML报告 Git+Jenkins配置(四)自动发送邮件 需要先安装两个插件Groovy、HTML Publisher plugin 修改配置 增加构建 阅读全文
posted @ 2021-04-28 15:08 OTAKU_nicole 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页