Commit 2e640f97 authored by lixiaofang's avatar lixiaofang

add

parent f6de495a
This diff is collapsed.
...@@ -203,9 +203,9 @@ def get_comments(): ...@@ -203,9 +203,9 @@ def get_comments():
for i in data: for i in data:
list_guanshui.append(i) list_guanshui.append(i)
num1 = random.randint(0, 50) num1 = random.randint(0, 200)
num2 = random.randint(50, 70) num2 = random.randint(200, 400)
num3 = random.randint(70, len(list_guanshui)) num3 = random.randint(400, len(list_guanshui))
comment1 = list_guanshui[num1 - 1] comment1 = list_guanshui[num1 - 1]
comment2 = list_guanshui[num2 - 1] comment2 = list_guanshui[num2 - 1]
...@@ -260,10 +260,10 @@ def get_offline_comment(): ...@@ -260,10 +260,10 @@ def get_offline_comment():
list_guanshui = [] list_guanshui = []
for i in data: for i in data:
list_guanshui.append(i) list_guanshui.append(i)
num1 = random.randint(0, 500) num1 = random.randint(0, 200)
num2 = random.randint(500, 1000) num2 = random.randint(200, 300)
num3 = random.randint(1000, 1500) num3 = random.randint(300, 400)
num4 = random.randint(1500, len(list_guanshui)) num4 = random.randint(400, len(list_guanshui))
comment1 = list_guanshui[num1 - 1] comment1 = list_guanshui[num1 - 1]
comment2 = list_guanshui[num2 - 1] comment2 = list_guanshui[num2 - 1]
......
...@@ -15,7 +15,7 @@ def get_star_user_id(numtime1, numtime2): ...@@ -15,7 +15,7 @@ def get_star_user_id(numtime1, numtime2):
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 user_id,id FROM topic WHERE is_online=1 and (content_level =4 or content_level =5) and create_time > '%s' and create_time < '%s' " % ( "SELECT user_id,id FROM topic WHERE is_online=1 and content_level in (4,5) and create_time > '%s' and create_time < '%s' " % (
numtime1, numtime2)) numtime1, numtime2))
data = cursor.fetchall() data = cursor.fetchall()
user_id_list = list(data) user_id_list = list(data)
......
...@@ -15,7 +15,7 @@ def get_star_useid(numtime1, numtime2): ...@@ -15,7 +15,7 @@ def get_star_useid(numtime1, numtime2):
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 (content_level =4 or content_level =5) and create_time > '%s' and create_time < '%s'" % ( "SELECT distinct(user_id) FROM topic WHERE is_online=1 and content_level in (4,5) and create_time > '%s' and create_time < '%s'" % (
numtime1, numtime2)) numtime1, numtime2))
data = cursor.fetchall() data = cursor.fetchall()
user_id = list(data) user_id = list(data)
...@@ -39,21 +39,14 @@ def get_star_useid(numtime1, numtime2): ...@@ -39,21 +39,14 @@ def get_star_useid(numtime1, numtime2):
if __name__ == "__main__": if __name__ == "__main__":
try: try:
time_list = [1, 2, 3, 4, 5, 6, 7] numtime1, numtime2 = time_convs(8, 0)
for i in time_list: user_id = get_star_useid(numtime1, numtime2)
numtime1, numtime2 = time_convs(i + 1, i - 1) for j in user_id and user_id:
user_id = get_star_useid(numtime1, numtime2) id = int(j[0])
try: for i in range(1):
for j in user_id and user_id: cookies = login()
id = int(j[0]) if cookies is not None:
for i in range(1): Urge(cookies, id)
# time.sleep(random.randint(10, 50))
cookies = login()
if cookies is not None:
Urge(cookies, id)
except:
pass
except: except:
logging.error("catch exception,main:%s" % traceback.format_exc()) logging.error("catch exception,main:%s" % traceback.format_exc())
...@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2): ...@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2):
cursor = pc.cursor() cursor = pc.cursor()
cursor.execute( cursor.execute(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '%s' and create_time < '%s'" % ( "SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '%s' and create_time < '%s'" % (
numtime1, numtime2)) numtime1, numtime2))
data = cursor.fetchall() data = cursor.fetchall()
user_id = list(data) user_id = list(data)
...@@ -39,24 +39,24 @@ def get_data(numtime1, numtime2): ...@@ -39,24 +39,24 @@ def get_data(numtime1, numtime2):
if __name__ == "__main__": if __name__ == "__main__":
try: try:
time_list = [1, 2, 3, 4, 5, 6, 7] time_list = [1, 2, 3, 4, 5, 6, 7]
for i in time_list: numtime1, numtime2 = time_convs(8, 0)
numtime1, numtime2 = time_convs(i + 1, i - 1) logging.info("get numtime1:%s" % numtime1)
logging.info("get numtime1:%s" % numtime1) logging.info("get numtime2:%s" % numtime2)
user_id = get_data(numtime1, numtime2) user_id = get_data(numtime1, numtime2)
urge_num = random.randint(0, 1) # urge_num = random.randint(0,1)
if urge_num == 1: urge_num = 1
for i in range(urge_num): if urge_num == 1:
try: for i in range(urge_num):
for j in user_id and user_id: try:
id = int(j[0]) for j in user_id and user_id:
# time.sleep(random.randint(10, 50)) id = int(j[0])
cookies = login() # time.sleep(random.randint(10, 50))
if cookies is not None: cookies = login()
Urge(cookies, id) if cookies is not None:
except: Urge(cookies, id)
pass except:
pass
except: except:
logging.error("catch exception,main:%s" % traceback.format_exc()) logging.error("catch exception,main:%s" % traceback.format_exc())
...@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2): ...@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2):
cursor = pc.cursor() cursor = pc.cursor()
cursor.execute( cursor.execute(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '%s' and create_time < '%s'" % ( "SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '%s' and create_time < '%s'" % (
numtime1, numtime2)) numtime1, numtime2))
data = cursor.fetchall() data = cursor.fetchall()
user_id = list(data) user_id = list(data)
...@@ -46,7 +46,7 @@ if __name__ == "__main__": ...@@ -46,7 +46,7 @@ if __name__ == "__main__":
numtime1, numtime2 = time_convs(i + 1, i - 1) numtime1, numtime2 = time_convs(i + 1, i - 1)
logging.info("get numtime1:%s" % numtime1) logging.info("get numtime1:%s" % numtime1)
user_id = get_data(numtime1, numtime2) user_id = get_data(numtime1, numtime2)
urge_num = random.randint(0, 1) urge_num = 1
if urge_num == 1: if urge_num == 1:
for i in range(urge_num): for i in range(urge_num):
try: try:
......
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