Loading

摘要: python 项目中的依赖库,可以创建一个requirements.txt文件来管理。 allure-pytest=2.12.0 pytest=7.2.0 pytest-rerunfailures=10.3 pytest-sugar=0.9.6 # 安装 $ pip install -r requi 阅读全文
posted @ 2023-03-10 14:21 ABEELAN 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Mac Python 3.7 https://www.modb.pro/db/454999 安装 # 搜索仓库 $ brew search gdb # 安装 $ brew install gdb Error: python@3.10: the bottle needs the Apple Comma 阅读全文
posted @ 2023-03-10 14:19 ABEELAN 阅读(310) 评论(0) 推荐(0) 编辑
摘要: python 连接数据库操作 pymysql import pymysql def get_connect(): connect = pymysql.connect( host="xxx.com", port=3306, user="test", password="test1234", datab 阅读全文
posted @ 2023-03-10 14:18 ABEELAN 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 数据处理 pandas 数据读取 pd.read_csv:csv/tsv/txt 用逗号、tab 分隔的纯文本文件 pd.read_excel::微软 xls 或者 xlsx 文件 pd.read_sql:mysql 关系型数据库 pd.read_csv 读取纯文本文件 userId,movieId 阅读全文
posted @ 2023-03-10 14:17 ABEELAN 阅读(6) 评论(0) 推荐(0) 编辑
摘要: else 使用汇总。 问题 阅读别人代码,有点疑惑,精简后如下: def code_example(arg=None): for i in range(5): if arg: break else: print('else branch') 循环语句后面直接跟了 else 语句,未报错,程序正常运行 阅读全文
posted @ 2023-03-10 14:16 ABEELAN 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 递归学习,通过汉诺塔游戏加强理解! 递归 在一个函数内部调用自身本身,就是递归函数。 阶乘 5 的阶乘为:5*4*3*2*1 n 的阶乘为:1*2*3*…*(n-1) 所以其实就是n*(n-1)的循环,只有当n=1时,需要特殊处理。 # 递归实现,暂不考虑负数和零 def fact(n): if n 阅读全文
posted @ 2023-03-10 14:15 ABEELAN 阅读(25) 评论(0) 推荐(0) 编辑
摘要: # 安装包出现错误 $ pip install -r requirements.txt -i http://pypi.douban.com/simple/ ERROR: Could not find a version that satisfies the requirement pbr (from 阅读全文
posted @ 2023-03-10 14:14 ABEELAN 阅读(14) 评论(0) 推荐(0) 编辑
摘要: python 3.7 Mac 安装 psycopg2 $ pip install psycopg2 ... Error: pg_config executable not found. ... 出现报错:Error: pg_config executable not found. 解决 参考:htt 阅读全文
posted @ 2023-03-10 14:14 ABEELAN 阅读(27) 评论(0) 推荐(0) 编辑
摘要: yap-pro.sh # https://hub.docker.com/r/yapipro/yapi # 创建容器网络 docker network create yapi # 删除历史构建容器 docker rm -f yapi docker rm -f mongodb # 启动 mongoDB 阅读全文
posted @ 2023-03-10 14:08 ABEELAN 阅读(390) 评论(0) 推荐(0) 编辑
摘要: Yapi 是比较好用的接口管理平台,之前写过一篇关于搭建过程的文章。 YApi - 通过docker搭建接口管理平台 本篇文章,记录下使用过程中遇到的问题。 YAPI 安全漏洞解决方法 Yapi 使用的脚本执行沙箱存在安全漏洞问题,需要更换为更安全的沙箱 safeify。详情参考 yapi 安全漏洞 阅读全文
posted @ 2023-03-10 14:06 ABEELAN 阅读(402) 评论(0) 推荐(0) 编辑