|
@@ -22,6 +22,14 @@ def send_msg(kw):
|
|
|
params = {"message": "處理關鍵字: "+kw}
|
|
|
r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
|
|
|
|
|
|
+
|
|
|
+def empty_query(q):
|
|
|
+ global driver
|
|
|
+ googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
|
|
|
+ driver.get(googleurl)
|
|
|
+ time.sleep(3)
|
|
|
+
|
|
|
+
|
|
|
def process_query(q):
|
|
|
global driver
|
|
|
googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
|
|
@@ -49,15 +57,15 @@ def process_query(q):
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
qlist=['上築空間設計','豐聚室內裝修','富億空間設計','浩室設計','京璽國際','IS國際設計','優尼客','摩登雅舍','亞維空間設計','比沙列','富億設計','豐聚設計']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+qlist+=['合砌設計','羽筑空間設計','朱英凱室內設計','將作空間','藝谷空間','文儀室內裝修','維耕設計','亞維空間設計','比沙列','上築空間設計','京璽國際','IS國際設計','優尼客','摩登雅舍','玖柞設計','麻石設計','元典設計','大琚空間','惹雅國際','橙果創意','PLSB建境','聯寬室內裝修']
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -65,6 +73,15 @@ qlist=['上築空間設計','豐聚室內裝修','富億空間設計','浩室設
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
driver = webdriver.Remote(
|
|
|
|
|
|
|
|
@@ -75,12 +92,17 @@ driver.set_window_size(1400,1000)
|
|
|
|
|
|
while True:
|
|
|
q=random.choice(qlist)
|
|
|
-
|
|
|
- print(q)
|
|
|
- process_query(q)
|
|
|
- send_msg(q)
|
|
|
- intsleep=random.randint(20,40)
|
|
|
+ prob=random.randint(0,3)
|
|
|
+ if prob ==0:
|
|
|
+
|
|
|
+ print(q)
|
|
|
+ process_query(q)
|
|
|
+ send_msg(q)
|
|
|
+ else:
|
|
|
+ empty_query(q)
|
|
|
+
|
|
|
|
|
|
+ intsleep=random.randint(5,10)
|
|
|
|
|
|
time.sleep(intsleep)
|
|
|
|