Commit 6c1c5590 authored by lixiaofang's avatar lixiaofang

add

parent b7af7fb0
...@@ -12,12 +12,16 @@ def get_data(numtime, numtime2): ...@@ -12,12 +12,16 @@ def get_data(numtime, 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()
logging.info("get numtime:%s" % numtime)
logging.info("get numtime2:%s" % numtime2)
cursor.execute( cursor.execute(
"SELECT user_id,id FROM topic WHERE is_online=1 and (create_time > '%s' and create_time < '%s')" % ( "SELECT user_id,id FROM topic WHERE is_online=1 and (create_time > '%s' and create_time < '%s')" % (
numtime, numtime2)) numtime, numtime2))
data = cursor.fetchall() data = cursor.fetchall()
topic_id = list(data) topic_id = list(data)
topic_id_list = [] topic_id_list = []
logging.info("get topic_id:%s" % topic_id)
try: try:
for i in topic_id and topic_id: for i in topic_id and topic_id:
cursor.execute( cursor.execute(
...@@ -55,7 +59,7 @@ if __name__ == "__main__": ...@@ -55,7 +59,7 @@ if __name__ == "__main__":
data1 = open("save_topic_id.txt", "w") data1 = open("save_topic_id.txt", "w")
data1.truncate() data1.truncate()
numtime, numtime2 = time_conv(10,0) numtime, numtime2 = time_conv(10, 0)
user_id = get_data(numtime, numtime) user_id = get_data(numtime, numtime)
dicts = {} dicts = {}
......
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