13 lines
256 B
Python
13 lines
256 B
Python
"""ASCII 启动入口(开发模式,需 Python)。"""
|
|
from douyin_collector_bootstrap import ensure_browser_ready
|
|
import collector_main
|
|
|
|
|
|
def main() -> None:
|
|
ensure_browser_ready()
|
|
collector_main.main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|