1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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
- #import pymysql
- #pymysql.install_as_MySQLdb()
- def run_once(pport, dockername):
- db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
- lst = []
- cursor = db.query('SELECT * FROM hhh.seo_designer')
- for c in cursor:
- lst.append([c['kw']])
- 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 tiny5')
- time.sleep(1)
- run_once(9926, 'tiny5')
- time.sleep(20)
- break
- except:
- os.system('docker container restart tiny5')
- time.sleep(15)
- if __name__ == '__main__':
- fire.Fire(JParams)
|