上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页
摘要: # 一些供学习的开源项目: ## 1.自动化测试 ### 接口自动化测试框架 本框架主要是基于 Python + pytest + allure + log + yaml + mysql + redis + 钉钉通知 + Jenkins 实现的接口自动化框架。 地址:https://gitee.co 阅读全文
posted @ 2022-09-26 13:33 hanfe1 阅读(202) 评论(0) 推荐(0) 编辑
摘要: http://www.esjson.com/ 阅读全文
posted @ 2022-09-22 18:17 hanfe1 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 今天给大家推荐一个变量命名的神器:Codelf 直接访问网页使用 我们可以直接访问 Codelf 网页,输入中文名或者英文名点击搜索就会有大量的变量名可供参考选择。 https://unbug.github.io/codelf/ 你还可以选择特定的编程语言。 在编辑器也是可以很方便的调用的,下面介绍 阅读全文
posted @ 2022-09-22 17:51 hanfe1 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 1.为什么需要数据类 1.1 ☹️内置数据类型的局限 假设我们现在遇到一个场景, 需要一个数据对象来保存一些运动员信息. 可以选择使用基本的数据类型tuple或者dict实现. 如:创建一个球员jordan, 信息包括球员姓名, 号码, 位置, 年龄. 使用tuple In [1]: jordan 阅读全文
posted @ 2022-09-22 17:29 hanfe1 阅读(651) 评论(0) 推荐(0) 编辑
摘要: python的types模块 1.types是什么: types模块中包含python中各种常见的数据类型,如IntType(整型),FloatType(浮点型)等等。 >>> import types >>> dir(types) ['BooleanType', 'BufferType', 'Bu 阅读全文
posted @ 2022-09-22 16:44 hanfe1 阅读(1437) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/poloyy/p/15170297.html 阅读全文
posted @ 2022-09-22 14:55 hanfe1 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://developer.aliyun.com/article/937427 https://blog.csdn.net/jinjiangongzuoshi/article/details/118185279 阅读全文
posted @ 2022-09-08 18:32 hanfe1 阅读(56) 评论(0) 推荐(0) 编辑
摘要: vim中,默认的多窗口打开,是横向分割窗口。 1、new 命令 :new “新建一个未命名窗口 :new name "新建一个名为name的窗口 2、split命令 横向分割窗口 :split name "在当前位置打开name窗口 将原来文件向下移动 :sp name "是split的缩写 与sp 阅读全文
posted @ 2022-09-07 18:24 hanfe1 阅读(407) 评论(0) 推荐(0) 编辑
摘要: import base64 from Crypto.Cipher import DES class DESCrypt: def __init__(self, key, mode, iv): self.key = key # 密钥 self.mode = mode # 模式 self.iv = iv 阅读全文
posted @ 2022-09-07 17:41 hanfe1 阅读(308) 评论(0) 推荐(0) 编辑
摘要: Tmux 是一个终端复用器(terminal multiplexer),非常有用,属于常用的开发工具。 本文介绍如何使用 Tmux。 一、Tmux 是什么? 1.1 会话与进程 命令行的典型使用方式是,打开一个终端窗口(terminal window,以下简称"窗口"),在里面输入命令。用户与计算机 阅读全文
posted @ 2022-09-07 17:13 hanfe1 阅读(216) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页