123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import sys
- import codecs
- import traceback
- import requests
- import re
- import pandas as pd
- import random
- import urllib
- import json
- import gspread
- import datetime
- from gspread_pandas import Spread, Client
- from oauth2client.service_account import ServiceAccountCredentials
- import os
- import redis
- import time
- import fire
- import dataset
- db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
- lst=[]
- cursor = db.query('SELECT query FROM seo.hhh_gsc_imp where position >=2.5 and position <=8.5 order by rand();')
- for c in cursor:
- lst.append([c['query']])
- def run_once(pport, dockername):
- global lst
- obj = random.choice(lst)
- print(obj)
- kw = obj[0]
- domain = 'hhh.com.tw'
- print(kw,domain)
- s = f'python3 general_clickbot_hhh.py get --kw="{kw}" --domain="{domain}" --port={str(pport)}'
- intval = os.system(f'python3 general_clickbot_hhh.py get --kw="{kw}" --domain="{domain}" --port="{str(pport)}"')
-
- print('執行genetal_clickbot')
- if intval == -1:
- print('-1')
- sys.exit()
- class JParams(object):
-
- def get(self, port=9222):
- while True:
- try:
- os.system('docker container restart tiny4')
- os.system('docker container restart tiny5')
- os.system('docker container restart tiny6')
- time.sleep(1)
- run_once(9934, 'tiny4')
- run_once(9935, 'tiny5')
- run_once(9936, 'tiny6')
- time.sleep(20)
- except:
- os.system('docker container restart tiny4')
- time.sleep(15)
- if __name__ == '__main__':
- fire.Fire(JParams)
|