Commit e23caac3 authored by lixiaofang's avatar lixiaofang

majia new

parent 0fe9b638
This diff is collapsed.
...@@ -165,23 +165,6 @@ def get_comment(): ...@@ -165,23 +165,6 @@ def get_comment():
return comment return comment
def get_follw_majia(numtime,id):
db = pymysql.connect(host="rm-2ze5k2we69904787l.mysql.rds.aliyuncs.com", user='work', passwd='Gengmei123',
db="alpha", port=3306)
cursor = db.cursor()
print("---------")
cursor.execute("SELECT user_id,follow_id FROM user_follow WHERE update_time LIKE '%%%%%s%%%%' and user_id in '%%%%s%%%%' " % (numtime,id))
data = cursor.fetchall()
print("Database version : %s " % data)
db.close()
return data
if __name__ == "__main__": if __name__ == "__main__":
numtime=time_conv() numtime=time_conv()
......
import requests
import time
import datetime
import pymysql
import random
# s = requests.session()
#
# s.keep_alive = False
#
# requests.adapters.DEFAULT_RETRIES = 5
auto_follow_url = "http://earth.igengmei.com/api/v1/follow"
login_url = "http://earth.igengmei.com/api/account/login_pwd"
def index_first():
r1=requests.get(login_url)
return r1.cookies.get_dict()
def get_majia():
data = open("batch user gen")
list=[]
for i in data:
list.append(i.strip('\n').strip(','))
# time.sleep(random.randint(0, 500))
maj = random.randint(1, 300)
user_id=list[maj]
print(user_id)
return user_id
def login():
# time.sleep(random.randint(300, 500))
num_majia = random.randint(1, 300)
# user_id=majia[num_majia]
user = 's_PzFznI@shadow.com'
pwd = '123456'
cookies = index_first()
post_dict={
'account_type':2,
'pwd':pwd,
'email':user
}
response = requests.post(
url=login_url,
data=post_dict,
cookies=cookies
)
headers=response.headers
cook = headers['Set-Cookie'].split(";")
cook = cook[0].split('=')[1]
print(response.text, 'url')
print(cook)
return {'sessionid': cook}
def follow(cookies_get, id):
post_dict = {
'type': 1,
'id': id
}
response = requests.post(url=auto_follow_url,
cookies=cookies_get,
data=post_dict)
print(response.text, 'url')
def time_conv(numtime):
now = datetime.datetime.now()
yes_time = now - datetime.timedelta(days=numtime)
yes_time_str = yes_time.strftime('%Y-%m-%d')
return yes_time_str
def get_data(numtime):
db = pymysql.connect(host="rm-2ze5k2we69904787l.mysql.rds.aliyuncs.com", user='work', passwd='Gengmei123',
db="alpha", port=3306)
cursor = db.cursor()
print("---------")
cursor.execute("SELECT user_id,id FROM topic WHERE create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
print("Database version : %s " % user_id)
db.close()
return user_id
if __name__ == "__main__":
#time.sleep(random.randint(3000,4500))
numtime = time_conv(3)
user_id = get_data(numtime)
for i in user_id:
urge_num = random.randint(1,2)
for i in range(urge_num):
cookies = index_first()
cook=login()
follow(cook, id)
import requests
import time
import datetime
import pymysql
import random
import pandas as pd
auto_click_url = "http://earth.igengmei.com/api/v1/like"
auto_reply_url = "http://earth.igengmei.com/api/v1/reply/create"
auto_follow_url = "http://earth.igengmei.com/api/v1/follow"
login_url = "http://earth.igengmei.com/api/account/login_pwd"
def index_first():
r1=requests.get(login_url)
return r1.cookies.get_dict()
def get_majia():
data = open("batch user gen")
list=[]
for i in data:
list.append(i.strip('\n').strip(','))
# time.sleep(random.randint(0, 500))
maj = random.randint(1, 300)
user_id=list[maj]
return user_id
def logins(id):
cookies = index_first()
post_dict={
'account_type':2,
'pwd':'123456',
'email':id
}
response = requests.post(
url=login_url,
data=post_dict,
cookies=cookies
)
headers=response.headers
cook = headers['Set-Cookie'].split(";")
cook = cook[0].split('=')[1]
print(response.text, 'url')
return {'sessionid': cook}
def follow(cookies_get, id):
post_dict = {
'type': 1,
'id': id
}
response = requests.post(url=auto_follow_url,
cookies=cookies_get,
data=post_dict)
print(response.text, 'url')
def time_conv():
now = datetime.datetime.now()
yes_time = now - datetime.timedelta(minutes=15)
return yes_time
def get_follw_majia(numtime,id):
db = pymysql.connect(host="rm-2ze5k2we69904787l.mysql.rds.aliyuncs.com", user='work', passwd='Gengmei123',
db="alpha", port=3306)
cursor = db.cursor()
print("---------")
cursor.execute("SELECT user_id,follow_id FROM user_follow WHERE create_time < = '%s' " % numtime)
data = cursor.fetchall()
print("Database version : %s " % data)
db.close()
return data
if __name__ == "__main__":
numtime=time_conv(3)
# get majia zhanghao
data = get_follw_majia(numtime, id)
dict = {}
for i in data:
if i[0] not in dict:
dict.setdefault(i[0], [])
dict[i[0]].append(i[1])
else:
dict[i[0]].append(i[1])
for key, value in dict.items():
majia =1,2,3,4,5,6,7
if key in majia:
cookies = logins(key)
for id in value:
follow(cookies, id)
import requests
import time
import datetime
import pymysql
import random
# s = requests.session()
#
# s.keep_alive = False
#
# requests.adapters.DEFAULT_RETRIES = 5
auto_click_url = "http://earth.igengmei.com/api/v1/like"
login_url = "http://earth.igengmei.com/api/account/login_pwd"
auto_pick_url = "http://earth.igengmei.com/api/v1/pick/do_pick"
auto_follow_url = "http://earth.igengmei.com/api/v1/follow"
def index_first():
r1=requests.get(login_url)
return r1.cookies.get_dict()
def get_majia():
data = open("batch user gen")
list=[]
for i in data:
list.append(i.strip('\n').strip(','))
# time.sleep(random.randint(0, 500))
maj = random.randint(1, 300)
user_id=list[maj]
print(user_id)
return user_id
def login():
# time.sleep(random.randint(300, 500))
num_majia = random.randint(1, 300)
# user_id=majia[num_majia]
user = 's_PzFznI@shadow.com'
pwd = '123456'
cookies = index_first()
post_dict={
'account_type':2,
'pwd':pwd,
'email':user
}
response = requests.post(
url=login_url,
data=post_dict,
cookies=cookies
)
headers=response.headers
cook = headers['Set-Cookie'].split(";")
cook = cook[0].split('=')[1]
print(response.text, 'url')
print(cook)
return {'sessionid': cook}
def follow(cookies_get, id):
post_dict = {
'type': 1,
'id': id
}
response = requests.post(url=auto_follow_url,
cookies=cookies_get,
data=post_dict)
print(response.text, 'url')
def pick(cookies_get,id):
post_dict={
'pick_user_id':id,
'is_pick':1,
'pick_type':0
}
response=requests.post(url=auto_pick_url,
cookies=cookies_get,
data=post_dict)
print(response.headers)
print(response.text, 'url')
def time_conv(numtime):
now = datetime.datetime.now()
yes_time = now - datetime.timedelta(days=numtime)
yes_time_str = yes_time.strftime('%Y-%m-%d')
return yes_time_str
def get_data(numtime):
db = pymysql.connect(host="rm-2ze5k2we69904787l.mysql.rds.aliyuncs.com", user='work', passwd='Gengmei123',
db="alpha", port=3306)
cursor = db.cursor()
print("---------")
cursor.execute("SELECT user_id,id FROM topic WHERE create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
print("Database version : %s " % user_id)
db.close()
return user_id
if __name__ == "__main__":
#time.sleep(random.randint(3000,4500))
numtime = time_conv(1)
user_id = get_data(numtime)
for i in user_id:
id = int(i[0])
urge_num = random.randint(0, 1)
for i in range(urge_num):
cookies = index_first()
cook=login()
pick(cook, id)
follow(cook,id)
import requests
import time
import datetime
import pymysql
import random
# s = requests.session()
#
# s.keep_alive = False
#
# requests.adapters.DEFAULT_RETRIES = 5
auto_urge_url = "http://earth.igengmei.com/api/v1/user/urge"
login_url = "http://earth.igengmei.com/api/account/login_pwd"
def index_first():
r1 = requests.get(login_url)
return r1.cookies.get_dict()
def get_majia():
data = open("batch user gen")
list = []
for i in data:
list.append(i.strip('\n').strip(','))
# time.sleep(random.randint(0, 500))
maj = random.randint(1, 300)
user_id = list[maj]
print(user_id)
return user_id
def login():
# time.sleep(random.randint(300, 500))
num_majia = random.randint(1, 300)
# user_id=majia[num_majia]
user = 's_PzFznI@shadow.com'
pwd = '123456'
cookies = index_first()
post_dict = {
'account_type': 2,
'pwd': pwd,
'email': user
}
response = requests.post(
url=login_url,
data=post_dict,
cookies=cookies
)
headers = response.headers
cook = headers['Set-Cookie'].split(";")
cook = cook[0].split('=')[1]
print(response.text, 'url')
print(cook)
return {'sessionid': cook}
def Urge(cookies_get, id):
post_dict = {
'id': id
}
response = requests.post(url=auto_urge_url,
cookies=cookies_get,
data=post_dict)
print(response.text, 'url')
def time_conv(numtime):
now = datetime.datetime.now()
yes_time = now - datetime.timedelta(days=numtime)
yes_time_str = yes_time.strftime('%Y-%m-%d')
return yes_time_str
def get_data(numtime):
db = pymysql.connect(host="rm-2ze5k2we69904787l.mysql.rds.aliyuncs.com", user='work', passwd='Gengmei123',
db="alpha", port=3306)
cursor = db.cursor()
print("---------")
cursor.execute("SELECT user_id,id FROM topic WHERE create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
print("Database version : %s " % user_id)
db.close()
return user_id
if __name__ == "__main__":
# time.sleep(random.randint(3000,4500))
numtime = time_conv(3)
user_id = get_data(numtime)
for i in user_id:
urge_num = random.randint(1, 2)
for i in range(urge_num):
cookies = index_first()
cook = login()
follow(cook, id)
import requests
import time
import datetime
import pymysql
import random
# s = requests.session()
#
# s.keep_alive = False
#
# requests.adapters.DEFAULT_RETRIES = 5
auto_pick_url = "http://earth.igengmei.com/api/v1/pick/do_pick"
login_url = "http://earth.igengmei.com/api/account/login_pwd"
def index_first():
r1 = requests.get(login_url)
return r1.cookies.get_dict()
def get_majia():
data = open("batch user gen")
list = []
for i in data:
list.append(i.strip('\n').strip(','))
# time.sleep(random.randint(0, 500))
maj = random.randint(1, 300)
user_id = list[maj]
print(user_id)
return user_id
def login():
# time.sleep(random.randint(300, 500))
num_majia = random.randint(1, 300)
# user_id=majia[num_majia]
user = 's_PzFznI@shadow.com'
pwd = '123456'
cookies = index_first()
post_dict = {
'account_type': 2,
'pwd': pwd,
'email': user
}
response = requests.post(
url=login_url,
data=post_dict,
cookies=cookies
)
headers = response.headers
cook = headers['Set-Cookie'].split(";")
cook = cook[0].split('=')[1]
print(response.text, 'url')
print(cook)
return {'sessionid': cook}
def pick(cookies_get,id):
post_dict={
'pick_user_id':id,
'is_pick':1,
'pick_type':0
}
response=requests.post(url=auto_pick_url,
cookies=cookies_get,
data=post_dict)
print(response.headers)
print(response.text, 'url')
def time_conv(numtime):
now = datetime.datetime.now()
yes_time = now - datetime.timedelta(days=numtime)
yes_time_str = yes_time.strftime('%Y-%m-%d')
return yes_time_str
def get_data(numtime):
db = pymysql.connect(host="rm-2ze5k2we69904787l.mysql.rds.aliyuncs.com", user='work', passwd='Gengmei123',
db="alpha", port=3306)
cursor = db.cursor()
print("---------")
cursor.execute("SELECT user_id,id FROM topic WHERE create_time LIKE '%%%%%s%%%%'" % numtime)
data = cursor.fetchall()
user_id = list(data)
print("Database version : %s " % user_id)
db.close()
return user_id
if __name__ == "__main__":
# time.sleep(random.randint(3000,4500))
numtime = time_conv(3)
user_id = get_data(numtime)
for i in user_id:
urge_num = random.randint(1, 2)
for i in range(urge_num):
cookies = index_first()
cook = login()
pick(cook, id)
#
#
# import pandas as pd
#
# data=[(1, 1), (3, 1), (5, 241406349), (258, 241406352), (259, 1543475229), (260, 1543290924),
# (261, 1543290924), (262, 1543575727), (263, 1543575727), (264, 241406387), (265, 241406387),
# (266, 1543291223), (267, 1543290924), (268, 1543290924), (269, 1543290924), (270, 1543291223),
# (271, 1543291223), (272, 1543291223), (273, 1543291223), (274, 1543291223), (275, 1543291223),
# (276, 1543482718), (277, 1543482718), (278, 1543291223), (279, 1543482718), (280, 1543482718),
# (281, 1543482718), (282, 241406349), (283, 1543482718), (284, 241406397), (285, 1543291223),
# (286, 2018113010044082), (287, 2018113010044082), (288, 1542943961), (289, 1542943961),
# (290, 1543388936), (291, 1543388936), (292, 1542943961), (293, 1543388936), (294, 1543291223),
# (295, 1543291223), (296, 1543482718), (297, 1543482718), (298, 1543291223), (299, 1543291223),
# (300, 1543475229), (301, 1543482718), (302, 1543221193), (303, 241406399),
# (304, 1543475229), (305, 241406398), (306, 241406398), (307, 1543475229), (308, 241406356),
# (309, 1543290924), (310, 1543290924), (311, 1543290924), (312, 5), (313, 1543290924), (314, 1543291223),
# (315, 1543291223), (316, 1543475229), (317, 1543291223), (318, 1543475229), (319, 1543290924),
# (320, 1543291223), (321, 1543291223), (322, 1543291223), (323, 241406385), (324, 241406385),
# (325, 6), (326, 241406385), (327, 241406385), (328, 1542943961), (329, 241406397), (330, 1543291223),
# (331, 1542943961), (332, 1542943961), (333, 1543291223), (334, 1542943961), (335, 1543291223)
# (336, 1543291223), (337, 1542943961), (338, 1543291223), (339, 1543290924), (340, 1542943961),
# (341, 1542943961), (342, 1543290924), (343, 1543291223), (344, 1543290924), (345, 1543290924),
# (346, 1543291223), (347, 1543291223), (348, 1542943961), (349, 1542943961), (350, 1543290924),
# (351, 1543290924), (352, 1543290924), (353, 1543290924), (354, 1542943961), (355, 1542943961),
# (356, 1542943961), (357, 1542943961), (358, 1542943961), (359, 1542943961), (360, 1542943961), (361, 1542943961), (362, 1542943961), (363, 241406349), (364, 241406349), (365, 1543290924), (366, 1543291223), (367, 1543291223), (368, 1543291223), (369, 1543291223), (370, 1543291223), (371, 1543291223), (372, 1543290924), (373, 1543290924), (374, 1543290924), (375, 1543290924), (376, 1543290924), (377, 1543290924), (378, 1543290924), (379, 241406414), (380, 1543290924), (381, 1543290924), (382, 1543291223), (383, 1543291223), (384, 1543291223), (385, 1543291223), (386, 1543291223), (387, 1543290924), (388, 1543290924)]
#
#
# dict={}
#
# for i in data:
# if i[1] not in dict.keys():
# dict.setdefault(i[1],[])
# dict[i[1]].append(i[0])
#
# else:
# dict[i[1]].append(i[0])
import random
import time
us =get_majia()
print(us)
x=1
d=1,2,3,4,4,5,6,6
if x in d:
print(x)
\ No newline at end of file
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