1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import sys
- import codecs
- import traceback
- import re
- import pandas as pd
- import random
- import os
- import redis
- import time
- import json
- import fire
- import dataset
- import pymysql
- pymysql.install_as_MySQLdb()
- def run_once():
- db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
- lst = ['倉儲管理 神助移動貨架','倉儲管理 神助貨架','倉儲 管理']
-
-
-
-
-
- obj = random.choice(lst)
- kw = obj
- domain = 'jiatetea.tw'
- print(kw, domain)
- os.chdir('C:\/Users\/s1301\/PycharmProjects\/kw_tools\/INNNews')
- intval = os.system(f'python3 general_clickbot_local.py get --kw="{kw}" --domain="{domain}"')
-
- print('執行完成genetal_clickbot')
-
- if intval == -1:
- print('-1')
- sys.exit()
- db.close()
- def run_specific():
- db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
-
- lst = []
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- cursor = db.query('select term, domain from seo.selected_kw where client="美麗馨"')
- for c in cursor:
- lst.append([c['term'], c['domain']])
- obj = random.choice(lst)
- kw = obj[0]
- domain = obj[1]
- print(kw, domain)
- intval = os.system(f'python3 general_clickbot_local.py get --kw="{kw}" --domain="{domain}"')
- print('執行完成genetal_clickbot')
-
- if intval == -1:
- print('-1')
- sys.exit()
- db.close()
-
- while True:
-
- run_specific()
- time.sleep(random.randint(120,150))
|