Commit 8a19b0e7 authored by lixiaofang's avatar lixiaofang

add

parent 444d924c
......@@ -7,7 +7,7 @@ import pandas as pd
import traceback
from log_settings import *
import logging
from auto_request import login, click,get_comments,reply
from auto_request import login, click, get_comments, reply
import threading
from auto_request import host, user, db, passwd
......@@ -18,24 +18,25 @@ if __name__ == "__main__":
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=3306)
cursor = pc.cursor()
cursor.execute(
"SELECT id,user_id FROM topic WHERE id = " + str(45456) + " and user_id in (select user_id from user_extra where is_shadow = 0)")
"SELECT id,user_id FROM topic WHERE id = " + str(
45456) + " and user_id in (select user_id from user_extra where is_shadow = 0)")
data = cursor.fetchall()
topic_id_list = list(data)
logging.info("Database version : %s " % topic_id_list)
pc.close()
topic_id_list=[87]
topic_id_list = [87]
exec_count = 0
if topic_id_list:
def fun_comment():
cookies = login()
if cookies:
comment_content = get_comments()
num =random.randint(0,3)
logging.info("get comment:%s" % comment_content)
num = random.randint(0, 2)
comment = comment_content[num]
logging.info("get comment:%s"%comment)
logging.info("get comment:%s" % comment)
reply(cookies, id, comment)
global timer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment