mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-09-15 14:17:54 +08:00
4 lines
117 B
Python
4 lines
117 B
Python
from contextvars import ContextVar
|
|
|
|
request_keyword_var: ContextVar[str] = ContextVar("request_keyword", default="")
|