|
@@ -17,6 +17,8 @@ def pickvideo():
|
|
|
whitelist = ["https://www.youtube.com/watch?v=7UGiKEc2JEU","https://www.youtube.com/watch?v=By63yTOiPFQ","https://www.youtube.com/watch?v=QzyTD949cVk","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=9lJ3gnqMT4o","https://www.youtube.com/watch?v=iA4__EcJE5I","https://www.youtube.com/watch?v=fx4fTBh9PFo","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=juJTjzi4DV0","https://www.youtube.com/watch?v=D9A8S1XaPnA","https://www.youtube.com/watch?v=tbdpEt65LRI","https://www.youtube.com/watch?v=Z4mts-HrBvU","https://www.youtube.com/watch?v=Hi-IY6R7_10","https://www.youtube.com/watch?v=e2jILHgLW10"]
|
|
|
return term, random.choice(whitelist)
|
|
|
|
|
|
+is_confidential = 1 #set to 1 if true
|
|
|
+
|
|
|
termlist = ["信義房屋","信義 房屋","信義房仲","信義 房仲"]
|
|
|
|
|
|
clickvideo = 2 # set to 1 to alert if video is found (DOES NOT CLICK!), requires whitelist
|
|
@@ -26,5 +28,5 @@ clickvideo = 2 # set to 1 to alert if video is found (DOES NOT CLICK!), requires
|
|
|
if clickvideo == 1 or clickvideo == 2:
|
|
|
while True:
|
|
|
kw, target = pickvideo()
|
|
|
- process_one(kw, target, clickvideo, 0)
|
|
|
+ process_one(kw, target, clickvideo, is_confidential)
|
|
|
time.sleep(10)
|