上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 41 下一页
摘要: 问题1:使用pytest-xdsit 插件运行后 logging 模块日志不会输出的问题 背景:自己写的日志打印模块,用pytest -n=auto 后日志就不会输出 # tools.set_loggging.py import logging.handlers import sys from co 阅读全文
posted @ 2022-11-30 20:49 chuangzhou 阅读(100) 评论(1) 推荐(0) 编辑
摘要: pytest_assertrepr_compare(op,left,right): class Foo: def __init__(self,value): self.value = value def test_foo_commpare(): f1 = Foo(1) f2 = Foo(2) ass 阅读全文
posted @ 2022-11-30 19:58 chuangzhou 阅读(52) 评论(0) 推荐(0) 编辑
摘要: whl 是什么? https://blog.csdn.net/fengbingchun/article/details/126910333 https://www.jb51.net/article/263575.htm 地址: https://www.lfd.uci.edu/~gohlke/pyth 阅读全文
posted @ 2022-11-29 11:42 chuangzhou 阅读(18) 评论(0) 推荐(0) 编辑
摘要: windows 安装mongodb 下载地址: https://www.mongodb.com/try/download/community tips: 不下载这个图形化工具,可能会很慢: 配置环境变量到Path E:\mongodb\bin 相关命令,需要以管理员身份执行: # 启动服务 net 阅读全文
posted @ 2022-11-26 17:34 chuangzhou 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 安装 教程:https://cuiqingcai.com/31102.html 自己在安装过程中遇到的错误: RuntimeError: Tesseract library not found in LIBPATH: [] 可以直接使用whl 文件来安装: 1.下载whl文件地址:https://g 阅读全文
posted @ 2022-11-23 22:58 chuangzhou 阅读(467) 评论(0) 推荐(0) 编辑
摘要: def query_by_msm_code(msm_code): conn = sqlite3.connect(BASE_PATH + '/' + 'search_prod.db') cur = conn.cursor() sql = "select jlc_code from code_info 阅读全文
posted @ 2022-11-22 21:56 chuangzhou 阅读(880) 评论(0) 推荐(0) 编辑
摘要: https://www.scootersoftware.com/download.php 阅读全文
posted @ 2022-11-22 15:28 chuangzhou 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 目录学习资料基本使用参数设置POST 请求ClientSessionTCPConnectorClientTimeout并发限制异步爬虫问题更新Cookie 学习资料 1.https://github.com/aio-libs/aiohttp 2.官网:https://docs.aiohttp.org 阅读全文
posted @ 2022-11-20 20:48 chuangzhou 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 目录入门常用函数asyncio.create_taskasyncio.gather()loop.all_tasks绑定回调函数Semaphore多任务协程await关键字案例异常学习资料: 入门 ''' 1.event_loop: 事件循环,相当于一个无限循环,可以把一些函数注册到这个时间循环上,当 阅读全文
posted @ 2022-11-20 15:00 chuangzhou 阅读(59) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/article/248328.htm 阅读全文
posted @ 2022-11-16 08:55 chuangzhou 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 41 下一页