Commit 0e988cf9 authored by lixiaofang's avatar lixiaofang

add

parent f888c5ae
This diff is collapsed.
...@@ -73,7 +73,6 @@ if __name__ == "__main__": ...@@ -73,7 +73,6 @@ if __name__ == "__main__":
if cook is not None: if cook is not None:
click(cook, rand_id) click(cook, rand_id)
time.sleep(100)
except: except:
logging.error("catch exception,main:%s" % traceback.format_exc()) logging.error("catch exception,main:%s" % traceback.format_exc())
...@@ -84,7 +84,7 @@ if __name__ == "__main__": ...@@ -84,7 +84,7 @@ if __name__ == "__main__":
if cook is not None: if cook is not None:
reply(cook, rand_id, comment) reply(cook, rand_id, comment)
time.sleep(300)
except: except:
logging.error("catch exception,main :%s" % traceback.format_exc()) logging.error("catch exception,main :%s" % traceback.format_exc())
...@@ -10,12 +10,13 @@ from auto_request import login, time_convs, follow ...@@ -10,12 +10,13 @@ from auto_request import login, time_convs, follow
from auto_request import host, user, port, db, passwd from auto_request import host, user, port, db, passwd
def get_data(numtime): def get_data(numtime1, numtime2):
try: try:
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=3306) pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=3306)
cursor = pc.cursor() cursor = pc.cursor()
cursor.execute( cursor.execute(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%'" % numtime) "SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '%s' and create_time < '%s'" % (
numtime1, numtime2))
data = cursor.fetchall() data = cursor.fetchall()
user_id = list(data) user_id = list(data)
topic_id_list = [] topic_id_list = []
...@@ -45,7 +46,7 @@ if __name__ == "__main__": ...@@ -45,7 +46,7 @@ if __name__ == "__main__":
if time_list[i] != 11: if time_list[i] != 11:
numtime = time_convs(time_list[i]) numtime = time_convs(time_list[i] + 1, time[i] - 1)
user_id = get_data(numtime) user_id = get_data(numtime)
...@@ -66,6 +67,7 @@ if __name__ == "__main__": ...@@ -66,6 +67,7 @@ if __name__ == "__main__":
if cookies is not None: if cookies is not None:
follow(cookies, id) follow(cookies, id)
time.sleep(300)
except: except:
logging.error("catch exception,main:%s" % traceback.format_exc()) logging.error("catch exception,main:%s" % traceback.format_exc())
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