Commit d9f1e5da authored by lixiaofang's avatar lixiaofang

add

parent d5feac15
...@@ -9,16 +9,18 @@ from auto_request import set_reply_to_redis, reply2, login ...@@ -9,16 +9,18 @@ from auto_request import set_reply_to_redis, reply2, login
if __name__ == "__main__": if __name__ == "__main__":
try: try:
logging.info("gte --------------------------")
now = datetime.datetime.now().minute now = datetime.datetime.now().minute
logging.info("gte ---------------minute:%s" % now)
redis_key1 = "cybertron:set_reply_id:one" redis_key1 = "cybertron:set_reply_id:one"
redis_client = set_reply_to_redis() redis_client = set_reply_to_redis()
have_reply1 = redis_client.hget(redis_key1, str(now - 5)) have_reply1 = redis_client.hget(redis_key1, str(now - 5))
result = json.loads(str(have_reply1, encoding="utf-8")) if have_reply1:
redis_client.hdel(redis_key1, str(now - 5)) result = json.loads(str(have_reply1, encoding="utf-8"))
if result: redis_client.hdel(redis_key1, str(now - 5))
for item in result: if result:
cook = login() for item in result:
reply2(cook, item["topic_id"], item["answer"], item["id"]) 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