700946b28a
fix: 修复程序一些异常 bug refactor: 优化部分代码逻辑
4 lines
191 B
Python
4 lines
191 B
Python
from contextvars import ContextVar
|
|
|
|
request_keyword_var: ContextVar[str] = ContextVar("request_keyword", default="")
|
|
crawler_type_var: ContextVar[str] = ContextVar("crawler_type", default="") |