摘要:
本文介绍对Linux服务器的服务进行压测时,使用jmeter serverAgent插件监控服务器资源。 1.插件准备 所需插件: JMeterPlugins-Extras.jar JMeterPlugins-Standard.jar ServerAgent-2.2.1 插件下载地址:https:/ 阅读全文
摘要:
转载自 https://my.oschina.net/u/3421709/blog/1542196 package jsonDemo; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import co 阅读全文
摘要:
一 使用jmap查看内存对象实例个数和内存 jmap -histo:live [pid] > xxx.log [admin@arch036088.sqa.cm4 ~]$ jps 18270 CandidateTaskCoreLoader 18336 CandidateTaskCoreLoader 2 阅读全文
摘要:
虚拟环境安装 pyinstaller pip install pyinstaller 打包exe命令:(具体的命令网上资料很多) # 打包1个py文件,并隐藏执行窗口 pyinstaller -F -w main.py # 打包1个py文件(-F),并隐藏执行窗口(-w),替换exe的ico图标(- 阅读全文
摘要:
import datetime t1 = datetime.datetime.strptime("2017-9-06 10:30:00", "%Y-%m-%d %H:%M:%S")t2 = datetime.datetime.strptime("2017-9-06 12:30:00", "%Y-%m 阅读全文
摘要:
一、time的常用方法: import time,datetime# 时间有三种展现方式:时间戳,时间元组,格式化的时间print(time.time())#当前时间戳print(int(time.time()))print(time.strftime('%Y-%m-%d %H:%M:%S'))#格 阅读全文
摘要:
=此页面列出了PyLint 1.1.0支持的所有消息,按消息文本排序。 还有一个按消息代码排序的所有代码列表。 E0001,F0001,W0511 (消息不同) E0103:循环中%r不正确 W1501:“ %s ”不是打开的有效模式。 E1101:%s %r没有%r成员 E1103:%s %r没有 阅读全文
摘要:
通过修改 阅读全文
摘要:
tomorrow是我最近在用的一个爬虫利器,该模块属于第三方的模块,使用起来非常的方便,只需要用其中的threads方法作为装饰器去修饰一个普通的函数,既可以达到并发的效果,本篇将用实例来展示tomorrow的强大之处。后面文章将对tomorrow的实现原理做进一步的分析。 1.安装第三方包 pip 阅读全文
摘要:
Excel是数据分析中最常用的工具,本篇文章通过python与excel的功能对比介绍如何使用python通过函数式编程完成excel中的数据处理及分析工作。在Python中pandas库用于数据处理 ,我们从1787页的pandas官网文档中总结出最常用的36个函数,通过这些函数介绍如何通过pyt 阅读全文