Commit c8ee123e authored by lixiaofang's avatar lixiaofang

add

parent e81c4e73
This diff is collapsed.
......@@ -7,7 +7,7 @@ import pandas as pd
import traceback
from log_settings import *
import logging
from auto_request import login, reply, click, get_comments, time_conv
from auto_request import login, reply, click, get_comments, time_conv,get_user_id
from auto_request import host, user, port, db, passwd
......@@ -16,13 +16,21 @@ def get_topic_id(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT user_id ,id FROM topic WHERE is_online =1 and create_time >= %s and user_id in (select user_id from user_extra where is_shadow = 0)",
"SELECT user_id ,id FROM topic WHERE is_online =1 and create_time >= %s",
(numtime))
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
topic_id = list(data)
user_list = get_user_id()
topic_id_list = []
if topic_id:
for i in topic_id:
if int(i[1]) not in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......
......@@ -4,7 +4,7 @@ import random
import traceback
from log_settings import *
import logging
from auto_request import login, click, time_convs
from auto_request import login, click, time_convs,get_user_id
from auto_request import host, user, port, db, passwd
......@@ -13,12 +13,19 @@ def get_data(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT distinct(user_id),id FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT user_id , id FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
topic_id = list(data)
user_list = get_user_id()
topic_id_list = []
if topic_id:
for i in topic_id:
if int(i[1]) in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......@@ -67,4 +74,3 @@ if __name__ == "__main__":
except:
logging.error("catch exception,main:%s" % traceback.format_exc())
# 2. 每日一次轮询,昨、2、3、4、5、6、7日新增帖的用户:[0-1]个马甲点赞。每天每人最多一个帖子点赞,不要100个帖子都0-1。
......@@ -5,7 +5,7 @@ import pymysql
import random
import traceback
import logging
from auto_request import login, click, time_convs
from auto_request import login, click, time_convs, get_user_id
from auto_request import host, user, port, db, passwd
......@@ -15,12 +15,20 @@ def get_data(numtime):
cursor = pc.cursor()
cursor.execute(
"SELECT user_id,id FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT user_id,id FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' " % numtime)
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
topic_id = list(data)
user_list = get_user_id()
topic_id_list = []
if topic_id:
for i in topic_id:
if int(i[1]) in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......
......@@ -16,8 +16,8 @@ def get_topic_id(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=3306)
cursor = pc.cursor()
cursor.execute(
# "SELECT user_id,id FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' " % numtime
"select id,user_id from topic where user_id = 241529801 or id = 241529809"
"SELECT user_id,id FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' " % numtime
# "select id,user_id from topic where user_id = 241529801 or id = 241529809"
)
data = cursor.fetchall()
topic_id = list(data)
......@@ -67,7 +67,7 @@ if __name__ == "__main__":
comment = get_comment()
logging.info("get comment:%s"%comment)
logging.info("get comment:%s" % comment)
for key, value in dicts.items():
......@@ -86,7 +86,6 @@ if __name__ == "__main__":
print(cook)
if cook is not None:
reply(cook, id, comment)
time.sleep(300)
......
......@@ -6,7 +6,7 @@ import random
import traceback
from log_settings import *
import logging
from auto_request import login, time_convs, follow
from auto_request import login, time_convs, follow, get_user_id
from auto_request import host, user, port, db, passwd
......@@ -15,22 +15,30 @@ def get_topic_new_user(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' " % numtime)
topic_data = cursor.fetchall()
cursor.execute(
"SELECT distinct(user_id) FROM group_user_role WHERE create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT distinct(user_id) FROM group_user_role WHERE create_time LIKE '%%%%%s%%%%'" % numtime)
new_user_data = cursor.fetchall()
topic_data = list(topic_data)
new_user_data = list(new_user_data)
user_id = []
for i in topic_data:
user_id.append(i)
for i in new_user_data:
user_id.append(i)
logging.info("Database version : %s " % user_id)
user_list = get_user_id()
topic_id_list = []
if topic_data:
for i in topic_data:
if int(i) in user_list:
topic_id_list.append(i)
if new_user_data:
for i in new_user_data:
if i in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......@@ -58,7 +66,5 @@ if __name__ == "__main__":
if cookies is not None:
follow(cookies, id)
time.sleep(300)
except:
logging.error("catch exception,main:%s" % traceback.format_exc())
......@@ -6,7 +6,7 @@ import random
import traceback
from log_settings import *
import logging
from auto_request import login, time_convs, follow
from auto_request import login, time_convs, follow,get_user_id
from auto_request import host, user, port, db, passwd
......@@ -16,12 +16,20 @@ def get_data(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
user_list = get_user_id()
topic_id_list = []
if user_id:
for i in user_id:
if int(i[1]) in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......
......@@ -10,6 +10,7 @@ import logging
from auto_request import login, time_conv, follow
from auto_request import host, user, port, db, passwd
##做不了
def get_follw_majia(numtime):
try:
......
......@@ -6,17 +6,16 @@ import random
import traceback
from log_settings import *
import logging
from auto_request import login, time_convs, follow
from auto_request import login, time_convs, follow, get_user_id
from auto_request import host, user, port, db, passwd
def get_commnet_id(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT user_id FROM reply WHERE create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT user_id FROM reply WHERE create_time LIKE '%%%%%s%%%%' " % numtime)
data_comment = cursor.fetchall()
......@@ -34,13 +33,13 @@ def get_commnet_id(numtime):
cursor.execute(
"SELECT user_id FROM group_user_role WHERE create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT user_id FROM group_user_role WHERE create_time LIKE '%%%%%s%%%%' " % numtime)
data_group_follow = cursor.fetchall()
cursor.execute(
"select user_id from account_user WHERE create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"select user_id from account_user WHERE create_time LIKE '%%%%%s%%%%'" % numtime)
data_new_user = cursor.fetchall()
......@@ -50,23 +49,33 @@ def get_commnet_id(numtime):
data3_id = list(data_new_user)
data_reply_reply = list(data_reply_reply)
user_list = get_user_id()
user_id = []
for i in data_id:
if i[0] is not None:
user_id.append(i)
if int(i[0]) not in user_list:
user_id.append(i)
for i in data1_id:
if i[0] is not None:
user_id.append(i)
if int(i[0]) not in user_list:
user_id.append(i)
for i in data2_id:
if i[0] is not None:
user_id.append(i)
if int(i[0]) not in user_list:
user_id.append(i)
for i in data3_id:
if i[0] is not None:
user_id.append(i)
if int(i[0]) not in user_list:
user_id.append(i)
for i in data_reply_reply:
if i[0] is not None:
user_id.append(i)
if int(i[0]) not in user_list:
user_id.append(i)
logging.info("Database version : %s " % user_id)
......
......@@ -6,32 +6,42 @@ import random
import traceback
from log_settings import *
import logging
from auto_request import login, time_conv, follow,get_cookies
from auto_request import login, time_conv, follow, get_cookies, get_user_id
from auto_request import host, user, port, db, passwd
def get_data(numtime):
try:
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute("select distinct(user_id) from account_user_auth where user_id not in (select user_id from pv_maidian where page_name ='home' and partiton_date >= %s ) and user_id in (select user_id from user_extra where is_shadow = 0)" ,(numtime))
cursor.execute(
"select distinct(user_id) from account_user_auth where user_id not in (select user_id from pv_maidian where page_name ='home' and partiton_date >= %s )",
(numtime))
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
user_list = get_user_id()
topic_id_list = []
if user_id:
for i in user_id:
if int(i) not in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
if __name__ == "__main__":
try:
numtime = time_conv(3)
user_id = get_data(numtime)
urge_num = random.randint(1,2)
urge_num = random.randint(1, 2)
for j in range(urge_num):
......@@ -41,17 +51,10 @@ if __name__ == "__main__":
time.sleep(random.randint(10, 40))
cook=login()
cook = login()
if cook is not None:
follow(cook, i)
time.sleep(300)
except:
logging.error("catch exception,main:%s" % traceback.format_exc())
......@@ -6,9 +6,8 @@ import random
import traceback
from log_settings import *
import logging
from auto_request import login, time_convs,follow
from auto_request import host,user,port,db,passwd
from auto_request import login, time_convs, follow, get_user_id
from auto_request import host, user, port, db, passwd
def get_data(numtime):
......@@ -16,12 +15,18 @@ def get_data(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"select distinct(user_id) from pv_maidian where page_name ='home' and partiton_date like '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"select distinct(user_id) from pv_maidian where page_name ='home' and partiton_date like '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
logging.pcinfo("Database version : %s " % user_id)
user_list = get_user_id()
topic_id_list = []
if user_id:
for i in user_id:
if int(i) not in user_list:
topic_id_list.append(i)
logging.pcinfo("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......@@ -35,17 +40,11 @@ if __name__ == "__main__":
urge_num = random.randint(0, 1)
for j in range(urge_num):
for i in user_id:
id = int(i[0])
time.sleep(random.randint(1, 10))
time.sleep(random.randint(10, 30))
cook = login()
if cook is not None:
follow(cook, id)
time.sleep(300)
except:
logging.error("catch exception,main:%s" % traceback.format_exc())
......@@ -6,38 +6,29 @@ import random
import traceback
from log_settings import *
import logging
from auto_request import login, time_conv, follow,click
from auto_request import login, time_conv, follow, click, get_user_id
from auto_request import host, user, port, db, passwd
def get_star_user_id(numtime):
try:
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT user_id FROM topic WHERE is_online=1 and (content_level =4 or content_level =5) and create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT user_id,id FROM topic WHERE is_online=1 and (content_level =4 or content_level =5) and create_time LIKE '%%%%%s%%%%' " % numtime)
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
pc.close()
return user_id
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
user_list = get_user_id()
topic_id_list = []
if user_id:
for i in user_id:
if int(i[0]) not in user_list:
topic_id_list.append(i)
def get_star_topic_id(numtime):
try:
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT id FROM topic WHERE is_online=1 and (content_level =4 or content_level =5) and create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
topic_id = list(data)
logging.info("Database version : %s " % user_id)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return topic_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......@@ -52,11 +43,11 @@ if __name__ == "__main__":
numtime = time_conv(i)
topic_id = get_star_topic_id(numtime)
user_topic_id = get_star_user_id(numtime)
for j in topic_id:
for j in user_topic_id:
id = int(j[0])
id = int(j[1])
urge_num = random.randint(0, 1)
......@@ -84,20 +75,9 @@ if __name__ == "__main__":
cookies = login()
if cookies is not None:
follow(cookies, id)
time.sleep(300)
except:
logging.error("catch exception,main:%s" % traceback.format_exc())
#每日一次轮询,昨、2、3、4、5、6、7日被选为4、5星的帖子:[0-1]个马甲点赞。
#每日一次轮询,昨日有帖子被选为4、5星的用户:[1-2]个粉丝
\ No newline at end of file
......@@ -7,23 +7,29 @@ import pandas as pd
import traceback
from log_settings import *
import logging
from auto_request import login, time_conv, Urge
from auto_request import login, time_conv, Urge, get_user_id
from auto_request import host, user, port, db, passwd
def get_star_useid(numtime):
try:
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and (content_level =4 or content_level =5) and create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and (content_level =4 or content_level =5) and create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
user_list = get_user_id()
topic_id_list = []
if user_id:
for i in user_id:
if int(i) not in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
......@@ -33,7 +39,7 @@ def get_star_useid(numtime):
if __name__ == "__main__":
try:
time_list = [1,2,3,4,5,6,7]
time_list = [1, 2, 3, 4, 5, 6, 7]
for i in time_list:
......
......@@ -7,21 +7,30 @@ import pandas as pd
import traceback
from log_settings import *
import logging
from auto_request import login, time_conv, Urge
from auto_request import login, time_conv, Urge, get_user_id
from auto_request import host, user, port, db, passwd
import threading
def get_data(numtime):
try:
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute("SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%' and user_id in (select user_id from user_extra where is_shadow = 0)" % numtime)
cursor.execute(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
user_list = get_user_id()
topic_id_list = []
if user_id:
for i in user_id:
if int(i) not in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......@@ -30,30 +39,34 @@ def get_data(numtime):
if __name__ == "__main__":
try:
time_list = [1,2,3,4,5,6,7]
def urge_user():
time_list = [1, 2, 3, 4, 5, 6, 7]
for i in time_list:
for i in time_list:
numtime = time_conv(i)
numtime = time_conv(i)
user_id = get_data(numtime)
user_id = get_data(numtime)
urge_num = random.randint(0, 2)
urge_num = random.randint(0, 2)
for i in range(urge_num):
for i in range(urge_num):
for j in user_id:
for j in user_id:
id = int(j[0])
id = int(j[0])
time.sleep(random.randint(3, 10))
time.sleep(random.randint(10, 50))
cookies=login()
cookies = login()
if cookies is not None:
if cookies is not None:
Urge(cookies, id)
Urge(cookies, id)
time.sleep(300)
sleep_time = random.randint(300, 540)
timer = threading.Timer(1, urge_user) # 首次启动
timer.start()
except:
logging.error("catch exception,main:%s" % traceback.format_exc())
......@@ -6,8 +6,9 @@ import random
import traceback
from log_settings import *
import logging
import threading
from auto_request import login, time_conv, Urge
from auto_request import login, time_conv, Urge, get_user_id
from auto_request import host, user, port, db, passwd
......@@ -16,13 +17,21 @@ def get_data(numtime):
pc = pymysql.connect(host=host, user=user, passwd=passwd, db=db, port=port)
cursor = pc.cursor()
cursor.execute(
"select distinct(user_id) from account_user_auth where user_id not in (select user_id from pv_maidian where page_name ='home' and partiton_date >= %s) and user_id in (select user_id from user_extra where is_shadow = 0)",
"select distinct(user_id) from account_user_auth where user_id not in (select user_id from pv_maidian where page_name ='home' and partiton_date >= %s)",
(numtime))
data = cursor.fetchall()
user_id = list(data)
logging.info("Database version : %s " % user_id)
user_list = get_user_id()
topic_id_list = []
if user_id:
for i in user_id:
if int(i[1]) not in user_list:
topic_id_list.append(i)
logging.info("Database version : %s " % topic_id_list)
pc.close()
return user_id
return topic_id_list
except:
logging.error("catch exception,get_data:%s" % traceback.format_exc())
return None
......@@ -31,22 +40,29 @@ def get_data(numtime):
if __name__ == "__main__":
try:
numtime = time_conv(3)
user_id = get_data(numtime)
def urge_user():
for j in range(2):
numtime = time_conv(3)
for i in user_id:
user_id = get_data(numtime)
for j in range(2):
for i in user_id:
time.sleep(random.randint(10, 15))
cook = login()
time.sleep(random.randint(10, 15))
if cook is not None:
Urge(cook, i)
cook = login()
if cook is not None:
Urge(cook, i)
sleep_time = random.randint(300, 540)
timer = threading.Timer(1, urge_user) # 首次启动
timer.start()
time.sleep(300)
except:
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