|
@@ -137,8 +137,12 @@ for c in cursor:
|
|
|
break
|
|
|
|
|
|
|
|
|
-cursor=db.query('select kw,page,domain from seo_clickjobs where category="'+category+'" order by rand()')
|
|
|
-
|
|
|
+cursor=db.query('select kw,page,domain from seo_clickjobs where category="'+category+'" or category="hhh-vip" order by rand()')
|
|
|
+lst=[]
|
|
|
for c in cursor:
|
|
|
- run_once( (c['kw'],c['page'],c['domain']) )
|
|
|
+ lst.append((c['kw'],c['page'],c['domain']))
|
|
|
+
|
|
|
+while True:
|
|
|
+ l=random.choice(lst)
|
|
|
+ run_once( l )
|
|
|
time.sleep(0.001)
|