Commit 6c1c5590 authored by lixiaofang's avatar lixiaofang

add

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