mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-09-16 23:07: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="")
|