Exemple #1
0
    def execute(self):

        follow = self.follow()
        fans = self.fans()
        groups = ''
        print 'follow', follow, len(follow)
        print 'fans', fans, len(fans)
        print '+++++++++++++++++++++++++++++++++++++'
        executeES('weibo_feedback_follow', 'text', follow)
        print '-------------------------------------'
        executeES('weibo_feedback_fans', 'text', fans)
        print '+++++++++++++++++++++++++++++++++++++'
Exemple #2
0
    def execute(self):
        fans = self.fans()

        executeES('weibo_feedback_fans', 'text', fans)

        print "follow start!follow start!follow start!follow start!"
        print "\n"
        follow = self.follow()
        print "\n"
        print "follow end!follow end!follow end!follow end!follow end!"
        executeES('weibo_feedback_follow', 'text', follow)

        groups = self.groups()
        executeES('weibo_feedback_group', 'text', groups)

        return fans, follow, groups
Exemple #3
0
    def execute(self):
        inbox = self.commentInbox()
        executeES('weibo_feedback_comment', 'text', inbox)

        outbox = self.commentOutbox()
        executeES('weibo_feedback_comment', 'text', outbox)
Exemple #4
0
 def execute(self):
     retweet = self.atMeMicroBlog()
     executeES('weibo_feedback_retweet', 'text', retweet)
 def excute(self):
     likes = self.likeInbox()
     executeES('weibo_feedback_like', 'text', likes)
 def execute(self):
     print "messages start***messages start***messages start***messages start***messages start***"
     mess = self.messages()
     # print mess
     print "messages end***messages end***messages end***messages end***messages end***"
     executeES('weibo_feedback_private', 'text', mess)
 def execute(self):
     comments = self.atMeComments()
     executeES('weibo_feedback_at', 'text', comments)
Exemple #8
0
 def execute(self):
     mess = self.messages()
     executeES('weibo_feedback_private', 'text', mess)
Exemple #9
0
 def execute(self):
     comment_inbox = self.commentInbox()
     print "comment to es ============================= "
     #print comment_inbox
     executeES('weibo_feedback_comment', 'text', comment_inbox)