This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.
Douyin_Web_Live/main.py
2021-11-30 17:16:33 +08:00

10 lines
186 B
Python

import sys
from scripts import watcher, webdriver
if __name__ == '__main__':
webdriver.lunch(sys.argv[1])
w = watcher.Watcher(directory='/Users/geng/douyin_live')
w.run()