10 lines
186 B
Python
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()
|