Commit ce2ea395 authored by lixiaofang's avatar lixiaofang

add

parent d9f1e5da
...@@ -4,7 +4,7 @@ import logging ...@@ -4,7 +4,7 @@ import logging
import datetime import datetime
import json import json
from log_settings import * from log_settings import *
from auto_request import login, time_conv_minute, get_answer_data, reply_answer, set_reply_to_redis from auto_request import login, time_conv_minute, get_answer_data, reply_answer, set_reply_to_redis, reply2
from auto_request import host, user, db, passwd from auto_request import host, user, db, passwd
...@@ -64,5 +64,16 @@ if __name__ == "__main__": ...@@ -64,5 +64,16 @@ if __name__ == "__main__":
redis_client = set_reply_to_redis() redis_client = set_reply_to_redis()
redis_client.hset(redis_key1, str(minute), json.dumps(reply_data_comment)) redis_client.hset(redis_key1, str(minute), json.dumps(reply_data_comment))
logging.info("get eeeeeeee:%s" % minute - 5)
have_reply1 = redis_client.hget(redis_key1, str(minute - 5))
logging.info("get have_reply1:%s" % have_reply1)
if have_reply1:
result = json.loads(str(have_reply1, encoding="utf-8"))
redis_client.hdel(redis_key1, str(minute - 5))
if result:
for item in result:
cook = login()
reply2(cook, item["topic_id"], item["answer"], item["id"])
except: except:
logging.error("catch exception,main:%s" % traceback.format_exc()) 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