摘要:
在 python3 中,reversed 函数也能够逆转列表。 其实,在 python2.7 中就存在内置函数 reverse 可以用来翻转列表,不过在 python3 中已经删去该函数。 相比于 reverse 函数只能反转列表,reversed 函数则可以翻转多种序列,包括tuple、list、 阅读全文
摘要:
###from openpyxl.styles.colors import * 的失败调用问题,使用openpyxl 模块调用 进行颜色分配时,无法调用函数colors openpyxl进行版本降低 2.6.1后,正常使用 ![](https://img2023.cnblogs.com/blog/2 阅读全文
摘要:
python_接口自动化测试框架地址 https://www.cnblogs.com/yinjia/p/9503408.html ui自动化测试地址 https://www.cnblogs.com/yinjia/p/9503407.html 数据库封装 config.ini [tester] nam 阅读全文
摘要:
##聚合报告列表项介绍 1、Label:请求的名称,就是脚本中Sampler的名称。 2、#Samples(样本):总共发给服务器的请求数量,如果模拟10个用户,每个用户迭代10次,那么总的请求数为:10*10 =100次。 3、Average(平均值):默认情况下是单个Request的平均响应时间 阅读全文
摘要:
性能测试指标:并发为500个 错误率不能超过1% 最大时间不能超过3s 阅读全文
摘要:
muggle_ocr 链接:https://pan.baidu.com/s/1w-sp-BQ1BCgOXYKRSo5nZg 提取码:mubp 下载完成之后,直接使用pip install语句即可: pip install muggle-ocr-1.0.3.tar.gz -i https://pypi 阅读全文
摘要:
学习地址 http://www.360doc.com/content/22/1114/08/78594709_1055831061.shtml DEMO items={"test":"这是测试"} @app.get("/item/{item_id}") def read_item(item_id:s 阅读全文
摘要:
Get请求 from fastapi import FastAPI app = FastAPI() @app.get("/items/{item_id}") async def read_root(item_id: int): return {"item_id": item_id} # 在最下面加上 阅读全文
摘要:
一、python3写一个http接口服务,给别人调用3 这次选择fastapi,FastAPI是一个现代的、快速(高性能)的web框架,用于基于标准Python类型提示使用Python 3.6+构建api。具有快速、快速编码、更少的错误、直观、简单、简便、健壮。简易而且本地win10能够跑起来。 二 阅读全文
摘要:
Streamlit库学习教程 https://jishuin.proginn.com/p/763bfbd6de76 Streamlit库中文手册 http://cw.hubwiz加上com/card/c/streamlit-manual/1/6/7/ Streamlit库官方文档 https://d 阅读全文