8 lines
331 B
Python
8 lines
331 B
Python
from asyncio.tasks import Task
|
|
from contextvars import ContextVar
|
|
from typing import List
|
|
|
|
request_keyword_var: ContextVar[str] = ContextVar("request_keyword", default="")
|
|
crawler_type_var: ContextVar[str] = ContextVar("crawler_type", default="")
|
|
comment_tasks_var: ContextVar[List[Task]] = ContextVar("comment_tasks", default=[])
|