def run(): client = login.login() lastid = loadLastId() inter = 190 #检查间隔 if client==None: raise TypeError() #启动时的测试微博 myPic = loadpic.pic() client.statuses.update.post(status=greet.hello(101)) client.statuses.upload.post(status=greet.hello(100), pic = myPic) log = "服务器再次启动! " print log.decode('utf-8') while True: try: inter += 1 #加1秒 now = time.strftime('%M%S',time.localtime(time.time())) hour = time.strftime('%H',time.localtime(time.time())) #每天凌晨1点重新授权 if hour == '01' and now == '0000': break #由于weibo API限制,不能发布自己可见微博,所以我设置了一个密友可见,密友即为我自己的另外一个账号,用来监控cpu温度和运行时间 if hour == '22' and now == '0000': print "sending a monitor weibo" monitor_info = '' if platform.system()=='Linux': monitor_info += monitor.monitor_cpu_temp() monitor_info += monitor.monitor_runtime() monitor_info += monitor.monitor_http() try: client.statuses.update.post(status=monitor_info, visible = 2) except: pass log = "Send a monitor weibo succesfully! %s时%s分%s秒: \n" %(hour,now[0:2],now[2:]) print log.decode('utf-8') storeLog(log) #发微 if now == '4500' and hour in ['07', '12', '11', '17','18','20','22','23']: print 'sending a normal weibo' monitor_info = "" if random.choice(range(2)): if platform.system()=='Linux': monitor_info += monitor.monitor_cpu_temp() else: monitor_info += monitor.monitor_http() elif random.choice(range(2)): monitor_info += monitor.monitor_http() else: monitor_info += monitor.monitor_runtime() greeting = "" greeting += greet.hello(hour) myPic = loadpic.pic() if random.choice(range(2)): content = '%s' %(greeting) else: content = '%s%s' %(greeting, monitor_info) try: #随机选择发图或者不发图,1/2可能性发图 if random.choice(range(2)): client.statuses.update.post(status=content) else: client.statuses.upload.post(status=content, pic = myPic) except Exception, e: print e myPic.close() log = "Send a normal weibo succesfully! %s时%s分%s秒 \n" %(hour,now[0:2],now[2:]) print log.decode('utf-8') storeLog(log) time.sleep(1) ''' if inter > 180: try: except Exception,e: print e ''' #对最新 @我 的进行回复,200s一次,包括评论原创微博,回复评论 if inter > 200: try: #对我微博进行评论的进行回复# lastCommentid = loadLastId(False) mentions = client.comments.to_me.get(since_id = lastCommentid,count = 10) for weiboInfo in mentions['comments']: lastCommentid = weiboInfo['id'] #评论的id lastPostId = weiboInfo['status']['id'] #微博的id print ("评论的id:%d 微博的id:%d" % (lastCommentid,lastPostId)).decode('utf-8') storeLastId(lastCommentid, False) myComment = greet.comment() client.comments.reply.post(id = lastPostId, cid = lastCommentid, comment = myComment) log = 'replay a comment successfully! %s时%s分%s秒 id:%d comment:%s \n' %(hour, now[0:2], now[2:], lastid, myComment) print log.decode('utf-8') storeLog(log) #对最新 @我 的原创微博进行评论# #获取原创的最新微博的id lastid = loadLastId() mentions = client.statuses.mentions.get(since_id = lastid, filter_by_type = 1) for weiboInfo in mentions['statuses']: lastid = weiboInfo['id'] print lastid storeLastId(lastid) myComment = "" myComment = greet.comment() client.comments.create.post(id = lastid, comment = myComment) log = 'send a comment successfully! %s时%s分%s秒:id:%d comment:%s \n' %(hour, now[0:2], now[2:], lastid, myComment) print log.decode('utf-8') storeLog(log) #对最新 @我 的评论进行回复# lastCommentid = loadLastId(False) mentions = client.comments.mentions.get(since_id = lastCommentid) for weiboInfo in mentions['comments']: lastCommentid = weiboInfo['id'] #评论的id lastPostId = weiboInfo['status']['id'] #微博的id print ("评论的id:%d 微博的id:%d" % (lastCommentid,lastPostId)).decode('utf-8') storeLastId(lastCommentid, False) myComment = greet.comment() client.comments.reply.post(id = lastPostId, cid = lastCommentid, comment = myComment) log = 'replay a comment successfully! %s时%s分%s秒 id:%d comment:%s \n' %(hour, now[0:2],now[2:], lastid, myComment) print log.decode('utf-8') storeLog(log) except Exception, e: print e inter = 0 time.sleep(1)#while循环每次间隔一秒
def run(): client = login.login() lastid = loadLastId() inter = 50 #检查间隔 while True: try: inter += 1 #加1秒 now = time.strftime('%M%S',time.localtime(time.time())) hour = time.strftime('%H',time.localtime(time.time())) #每天凌晨1点重新授权 if hour == '01' and now == '0000': break #由于weibo API限制,不能发布自己可见微博,所以我设置了一个密友可见,密友就是我自己的另外一个账号,用来监控cpu温度和运行时间 if hour == '00' and now == '0000': print "sending a monitor weibo" monitor_info = monitor.monitor_cpu_temp() monitor_info += monitor.monitor_runtime() monitor_info += monitor.monitor_http() try: client.statuses.update.post(status=monitor_info, visible = 2) except: pass log = "Send a monitor weibo succesfully! 时分秒:%s%s \n" %(hour,now) print log storeLog(log) #每天6点发布秦皇岛天气预报 if hour == '06' and now == '0000': print "sending a wether weibo..." wether_info = greet.getLocationWeather("河北 秦皇岛") try: client.statuses.update.post(status=wether_info) except: pass log = "Send a wether weibo succesfully! 时分秒:%s%s \n" %(hour,now) print log storeLog(log) #发微 if now == '4600' and hour in ['07', '12', '11', '17','18', '19','22','23']: print 'sending a normal weibo' monitor_info = "" if random.choice(range(2)): monitor_info += monitor.monitor_cpu_temp() elif random.choice(range(2)): monitor_info += monitor.monitor_http() else: monitor_info += monitor.monitor_runtime() greeting = "" greeting += greet.hello(hour) myPic = loadpic.pic() if random.choice(range(2)): content = '%s' %(greeting) else: content = '%s%s' %(greeting, monitor_info) try: #随机选择发图或者不发图,1/2可能性发图 if random.choice(range(2)): client.statuses.update.post(status=content) else: client.statuses.upload.post(status=content, pic = myPic) except Exception, e: print e myPic.close() log = "Send a normal weibo succesfully! 时分秒:%s%s \n" %(hour,now) print log storeLog(log) time.sleep(1) #对最新 @我 的进行回复,50s一次,包括评论原创微博,回复评论 if inter > 50: try: #对最新 @我 的原创微博进行评论# #获取原创的最新微博的id lastid = loadLastId() mentions = client.statuses.mentions.get(since_id = lastid, filter_by_type = 1) for weiboInfo in mentions['statuses']: lastid = weiboInfo['id'] print lastid storeLastId(lastid) myComment = "" if random.choice(range(2)): myComment = greet.comment() else: location = weiboInfo['user']['location'] myComment = '~~' + greet.getLocationWeather(location.encode('utf-8')) #取得天气 client.comments.create.post(id = lastid, comment = myComment) log = 'send a comment successfully! 时分秒:%s%sid:%d comment:%s \n' %(hour, now, lastid, myComment) print log storeLog(log) #对最新 @我 的评论进行回复# lastCommentid = loadLastId(False) mentions = client.comments.mentions.get(since_id = lastCommentid) for weiboInfo in mentions['comments']: lastCommentid = weiboInfo['id'] #评论的id lastPostId = weiboInfo['status']['id'] #微博的id print "评论的id:%d 微博的id:%d" % (lastCommentid,lastPostId) storeLastId(lastCommentid, False) myComment = greet.comment() client.comments.reply.post(id = lastPostId, cid = lastCommentid, comment = myComment) log = 'replay a comment successfully! 时分秒:%s%s id:%d comment:%s \n' %(hour, now, lastid, myComment) print log storeLog(log) except Exception, e: print e inter = 0 time.sleep(1)#while循环每次间隔一秒
def run(): client = login.login() lastid = loadLastId() inter = 50 #检查间隔 #启动时的测试微博 client.statuses.update.post(status="test...!") log = "服务器再次启动! " print log while True: try: inter += 1 #加1秒 now = time.strftime('%M%S', time.localtime(time.time())) hour = time.strftime('%H', time.localtime(time.time())) #每天凌晨1点重新授权 if hour == '01' and now == '0000': break #由于weibo API限制,不能发布自己可见微博,所以我设置了一个密友可见,密友即为我自己的另外一个账号,用来监控cpu温度和运行时间 if hour == '00' and now == '0000': print "sending a monitor weibo" monitor_info = monitor.monitor_cpu_temp() monitor_info += monitor.monitor_runtime() monitor_info += monitor.monitor_http() try: client.statuses.update.post(status=monitor_info, visible=2) except: pass log = "Send a monitor weibo succesfully! 时分秒:%s%s \n" % (hour, now) print log storeLog(log) #发微 if now == '4500' and hour in [ '07', '12', '11', '17', '18', '20', '22', '23' ]: print 'sending a normal weibo' monitor_info = "" if random.choice(range(2)): monitor_info += monitor.monitor_cpu_temp() elif random.choice(range(2)): monitor_info += monitor.monitor_http() else: monitor_info += monitor.monitor_runtime() greeting = "" greeting += greet.hello(hour) myPic = loadpic.pic() if random.choice(range(2)): content = '%s' % (greeting) else: content = '%s%s' % (greeting, monitor_info) try: #随机选择发图或者不发图,1/2可能性发图 if random.choice(range(2)): client.statuses.update.post(status=content) else: client.statuses.upload.post(status=content, pic=myPic) except Exception, e: print e myPic.close() log = "Send a normal weibo succesfully! 时分秒:%s%s \n" % (hour, now) print log storeLog(log) time.sleep(1) #对最新 @我 的进行回复,50s一次,包括评论原创微博,回复评论 if inter > 50: try: #对最新 @我 的原创微博进行评论# #获取原创的最新微博的id lastid = loadLastId() mentions = client.statuses.mentions.get(since_id=lastid, filter_by_type=1) for weiboInfo in mentions['statuses']: lastid = weiboInfo['id'] print lastid storeLastId(lastid) myComment = "" myComment = greet.comment() client.comments.create.post(id=lastid, comment=myComment) log = 'send a comment successfully! 时分秒:%s%sid:%d comment:%s \n' % ( hour, now, lastid, myComment) print log storeLog(log) #对最新 @我 的评论进行回复# lastCommentid = loadLastId(False) mentions = client.comments.mentions.get( since_id=lastCommentid) for weiboInfo in mentions['comments']: lastCommentid = weiboInfo['id'] #评论的id lastPostId = weiboInfo['status']['id'] #微博的id print "评论的id:%d 微博的id:%d" % (lastCommentid, lastPostId) storeLastId(lastCommentid, False) myComment = greet.comment() client.comments.reply.post(id=lastPostId, cid=lastCommentid, comment=myComment) log = 'replay a comment successfully! 时分秒:%s%s id:%d comment:%s \n' % ( hour, now, lastid, myComment) print log storeLog(log) except Exception, e: print e inter = 0 time.sleep(1) #while循环每次间隔一秒
def run(): client = login.login() lastid = loadLastId() inter = 50 client.statuses.update.post(status="阿壳儿小天使阿壳儿最可爱...!") log = "服务器启动...success!!!" print log while True: try: inter += 1 # 加1秒 now = time.strftime('%M%S', time.localtime(time.time())) hour = time.strftime('%H', time.localtime(time.time())) print hour print now # 每天凌晨4点重新授权 if hour == '04' and now == '0000': break # 由于weibo API限制,不能发布自己可见微博,所以我设置了一个密友可见,密友即为我自己的另外一个账号,用来监控cpu温度和运行时间 if hour == '00' and now == '0000': print "sending a monitor weibo" monitor_info = monitor.monitor_cpu_temp() monitor_info += monitor.monitor_runtime() monitor_info += monitor.monitor_http() try: print monitor_info client.statuses.update.post(status=monitor_info, visible=2) except: pass log = "Send a monitor weibo succesfully! 时分秒:%s%s \n" % (hour, now) print log storeLog(log) # 发微 if now == '2655' and hour in ['07', '12', '11', '17', '18', '20', '22', '23']: print 'sending a normal weibo' monitor_info = monitor.monitor_http() greeting = "" greeting += greet.hello(hour) myPic = loadpic.pic() if random.choice(range(2)): content = '%s' % (greeting) else: content = '%s%s' % (greeting, monitor_info) try: # 随机选择发图或者不发图,1/2可能性发图 if random.choice(range(2)): client.statuses.update.post(status=content) else: client.statuses.upload.post(status=content, pic=myPic) except Exception, e: print e myPic.close() log = "Send a normal weibo succesfully! 时分秒:%s%s \n" % (hour, now) print log storeLog(log) time.sleep(1) # 对最新 @我 的进行回复,50s一次,包括评论原创微博,回复评论 #print inter #if inter > 50: # try: # # 对最新 @我 的原创微博进行评论# # # 获取原创的最新微博的id # lastid = loadLastId() # mentions = client.statuses.mentions.get(since_id=lastid, filter_by_type=1) # for weiboInfo in mentions['statuses']: # lastid = weiboInfo['id'] # print lastid # storeLastId(lastid) # myComment = "" # myComment = greet.comment() # client.comments.create.post(id=lastid, comment=myComment) # log = 'send a comment successfully! 时分秒:%s%sid:%d comment:%s \n' % ( # hour, now, lastid, myComment) # print log # storeLog(log) # # 对最新 @我 的评论进行回复# # lastCommentid = loadLastId(False) # mentions = client.comments.mentions.get(since_id=lastCommentid) # for weiboInfo in mentions['comments']: # lastCommentid = weiboInfo['id'] # 评论的id # lastPostId = weiboInfo['status']['id'] # 微博的id # print "评论的id:%d 微博的id:%d" % (lastCommentid, lastPostId) # storeLastId(lastCommentid, False) # myComment = greet.comment() # client.comments.reply.post(id=lastPostId, cid=lastCommentid, comment=myComment) # log = 'replay a comment successfully! 时分秒:%s%s id:%d comment:%s \n' % ( # hour, now, lastid, myComment) # print log # storeLog(log) # except Exception, e: # print e # inter = 0 time.sleep(1) # while循环每次间隔一秒 except Exception, e: print e