摘要: Python 多线程模块threading中Timer 定时任务的用法介绍,及相关实例。 阅读全文
posted @ 2018-02-08 23:36 Bingo-he 阅读(2717) 评论(0) 推荐(0) 编辑
摘要: 博客园文章添加阅读目录及CSS样式的方法总结。 阅读全文
posted @ 2018-02-07 14:40 Bingo-he 阅读(2882) 评论(4) 推荐(11) 编辑
摘要: Windows 命令行窗口cmd运行Python程序,展示中文乱码问题解决过程记录。 阅读全文
posted @ 2018-01-28 17:05 Bingo-he 阅读(12832) 评论(0) 推荐(2) 编辑
摘要: Python locust模块性能测试用法介绍及相关实例。 阅读全文
posted @ 2018-01-09 23:26 Bingo-he 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 使用Python的paramiko模块连接Linux服务器,远程执行命令,上传下载、文件。 阅读全文
posted @ 2018-01-02 10:34 Bingo-he 阅读(870) 评论(0) 推荐(0) 编辑
摘要: Python两个函数相互递归调用,实现在多维嵌套字典、列表、元组的JSON中获取数据。 阅读全文
posted @ 2017-12-22 12:39 Bingo-he 阅读(33570) 评论(18) 推荐(16) 编辑
摘要: 使用selenium中遇到的“can't access dead object”错误的解决过程记录。 阅读全文
posted @ 2017-11-29 20:36 Bingo-he 阅读(2092) 评论(0) 推荐(0) 编辑
摘要: “useradd: cannot open /etc/passwd”问题解决过程记录。 阅读全文
posted @ 2017-11-17 09:49 Bingo-he 阅读(17975) 评论(0) 推荐(0) 编辑
摘要: 使用Python的特殊函数__call__结合装饰器使用方法,实现准确计算函数运行时间。 阅读全文
posted @ 2017-10-28 14:07 Bingo-he 阅读(709) 评论(0) 推荐(0) 编辑
摘要: Python其实有3个方法,即静态方法(staticmethod),类方法(classmethod)和实例方法,三个方法运用得当,有利于组织代码、让命名空间更整洁、避免硬编码。 阅读全文
posted @ 2017-09-30 14:50 Bingo-he 阅读(822) 评论(0) 推荐(1) 编辑
摘要: Python简单实现爬取小说《天龙八部》,并webpy模块生成访问页面在本地访问过程记录。 阅读全文
posted @ 2017-09-27 21:47 Bingo-he 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 统计数组中各个元素出现的次数,并按照次数从大到小排序的Python及Linux命令实现。 阅读全文
posted @ 2017-09-25 20:31 Bingo-he 阅读(10201) 评论(0) 推荐(0) 编辑
摘要: 关于使用pycharm遇到只能使用unittest方式运行,无法直接选择Run原因介绍及解决方法。 阅读全文
posted @ 2017-08-07 20:03 Bingo-he 阅读(1707) 评论(0) 推荐(0) 编辑
摘要: 如果你在linux下工作,那用tail -f跟踪一个日志文件的输出内容应该是家常便饭了。本文主要介绍在动态跟踪日志的同时,把关键字高亮显示出来的方法。 阅读全文
posted @ 2017-07-27 18:07 Bingo-he 阅读(3625) 评论(0) 推荐(1) 编辑
摘要: redhat下安装MySQL-python 模块过程遇到的问题和解决方法记录。 阅读全文
posted @ 2017-07-26 16:57 Bingo-he 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 本文记录进行Selenium 自动化过程中,学习的使用ConfigParser类读取ini配置文件的方法。 阅读全文
posted @ 2017-07-19 11:16 Bingo-he 阅读(1440) 评论(0) 推荐(0) 编辑
摘要: 使用awk命令实现批量杀进程的方法记录。 阅读全文
posted @ 2017-06-16 17:09 Bingo-he 阅读(2084) 评论(0) 推荐(0) 编辑
摘要: Nginx 安装过程中遇到的一些问题及解决方法 、配置负载均衡及配置服务器更新不影响访问的全过程记录。 阅读全文
posted @ 2017-06-05 18:13 Bingo-he 阅读(1335) 评论(0) 推荐(0) 编辑
摘要: 性能测试之数据采集工具nmon的安装和使用方法记录,及报告内容参数含义说明。 阅读全文
posted @ 2017-06-05 15:57 Bingo-he 阅读(2696) 评论(0) 推荐(0) 编辑
摘要: Python \uxxxx无法转中文的原因分析及转换方法介绍。 阅读全文
posted @ 2017-06-03 16:41 Bingo-he 阅读(940) 评论(0) 推荐(0) 编辑
摘要: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe9原因分析及三种解决方法介绍。 阅读全文
posted @ 2017-06-03 15:13 Bingo-he 阅读(3461) 评论(0) 推荐(0) 编辑
摘要: 简易实现http接口测试自动化,邮件发送测试报告的实现思路及相关脚本。 阅读全文
posted @ 2017-06-02 23:58 Bingo-he 阅读(1736) 评论(0) 推荐(0) 编辑
摘要: Python&Shell 简易实现监控公司网站,邮件发送异常的实现思路及相关脚本介绍。 阅读全文
posted @ 2017-05-26 16:58 Bingo-he 阅读(1369) 评论(0) 推荐(0) 编辑