测试工具相关
文章平均质量分 51
python测试工具
LCY133
这个作者很懒,什么都没留下…
展开
-
modbus从机模拟软件:modbus Slave和modsim
modbusSlave和modsim的使用,原创 2022-06-29 17:12:09 · 4496 阅读 · 0 评论 -
python time函数的使用 获取文件的修改时间的时间戳和当前时间戳
获取当前时间时间戳:import timeprint(time.time())获取文件路径的操作:path = u"D:\python_code\ARM"for root, dir, files in os.walk(path): for file in files: full_path = os.path.join(root, file)其中os.walk(path)说明参见:https://www.cnblogs.com/machangwei-8/p/10725原创 2020-08-19 16:58:57 · 1147 阅读 · 1 评论 -
python 库pyserial的使用 多线程与类的操作
PC安装方式:pip install pyserial导入:import serialclass serialClass(object): def __init__(self,Com,BaudList,ParityList,DataBits,StopBits): self.Com = Com self.BaudRate = BaudList[0] self.Parity = ParityList[0] self.DataBits =原创 2020-08-19 00:45:24 · 1918 阅读 · 0 评论 -
python实践之json文件读取与修改某个值
最近做的工作中用到了python读取与修改json文件,在处理json文件时将对象看做字典 将数组看做列表,json就是对象中嵌套列表再嵌套对象的一个可递归的数据结构,处理起来比较麻烦,最初头疼,头疼了一会就想辙了,最终当然是想出辙来了,于是有了这篇文章。总共的步骤有3步:1 .读取json文件 ,将文件内容变为字典2.在字典中找到特定的值并且修改该位置3 将修改后的字典写入之前的json文件最重要而且最复杂的要数第2步其中用到的知识点是:嵌套类型的数据 也可以通过索引进行修改:譬如:原创 2020-08-06 09:45:12 · 10557 阅读 · 0 评论 -
python 语言TCP实践之ssh
import socketimport osimport timeserver = socket.socket()server.bind(('localhost',9999))server.listen()while True: conn,addr = server.accept() print('地址是',addr) while True: data = conn.recv(1024) if not data:原创 2020-08-04 00:54:07 · 160 阅读 · 0 评论