mirror of
https://github.com/RYDE-WORK/MediaCrawler.git
synced 2026-01-23 00:04:43 +08:00
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="") |