上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页
摘要: 安装 教程:https://cuiqingcai.com/31102.html 自己在安装过程中遇到的错误: RuntimeError: Tesseract library not found in LIBPATH: [] 可以直接使用whl 文件来安装: 1.下载whl文件地址:https://g 阅读全文
posted @ 2022-11-23 22:58 chuangzhou 阅读(528) 评论(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 阅读(1042) 评论(0) 推荐(0)
摘要: https://www.scootersoftware.com/download.php 阅读全文
posted @ 2022-11-22 15:28 chuangzhou 阅读(17) 评论(0) 推荐(0)
摘要: 目录学习资料基本使用参数设置POST 请求ClientSessionTCPConnectorClientTimeout并发限制异步爬虫问题更新Cookie 学习资料 1.https://github.com/aio-libs/aiohttp 2.官网:https://docs.aiohttp.org 阅读全文
posted @ 2022-11-20 20:48 chuangzhou 阅读(606) 评论(0) 推荐(0)
摘要: 目录入门常用函数asyncio.create_taskasyncio.gather()loop.all_tasks绑定回调函数Semaphore多任务协程await关键字案例异常学习资料: 入门 ''' 1.event_loop: 事件循环,相当于一个无限循环,可以把一些函数注册到这个时间循环上,当 阅读全文
posted @ 2022-11-20 15:00 chuangzhou 阅读(139) 评论(0) 推荐(0)
摘要: https://www.jb51.net/article/248328.htm 阅读全文
posted @ 2022-11-16 08:55 chuangzhou 阅读(15) 评论(0) 推荐(0)
摘要: 2022-11-15 21:46:20,261 INFO [get_data.py(get_product_mode:46)] - 当前page >:255 Traceback (most recent call last): File "D:\jlc_auto_test\fa_search_tes 阅读全文
posted @ 2022-11-16 08:51 chuangzhou 阅读(1825) 评论(0) 推荐(0)
摘要: from apscheduler.schedulers.blocking import BlockingScheduler from datetime import datetime def test_tick(): print(f'time is {datetime.now()}') if __n 阅读全文
posted @ 2022-11-15 20:12 chuangzhou 阅读(54) 评论(0) 推荐(0)
摘要: 扫操作如下: >>> a = (1,) >>> b, =a >>> b 1 hhhhhhhhhhhhhhhhh 阅读全文
posted @ 2022-11-13 15:51 chuangzhou 阅读(25) 评论(0) 推荐(0)
摘要: python中的逻辑操作符and 和or,也叫惰性求值,由于是惰性,只要确定了值就不往后解析代码了。 and 两种用法: 表达式 exp1 and exp2:用法同java 的 && 字面量值 >>> a = '' and [] and None >>> a '' >>> a = 2 and '' 阅读全文
posted @ 2022-11-13 15:28 chuangzhou 阅读(187) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页