Пример #1
0
 def configparse(self,client_name,platformname):
      logger_test.debug("parsing the configuration file for processing the data")
      try:
       parser =RawConfigParser()
       parser.read('config.ini')
       print parser.sections()
       
       if str.lower(platformname)=="twitter":
         clientname=platformname+"_"+client_name
         m=parser.items(clientname)
      #print "m",m
         consumer_key=m[0][1]
      
         consumer_secret=m[1][1]
         access_token_key=m[2][1]
         access_token_secret=m[3][1]
         brokerlist=m[4][1].split(",")
         topic=m[5][1]
         return client_name,consumer_key,consumer_secret,access_token_key,access_token_secret,brokerlist,topic
   
       else:
           
           logger_test.info("No such(%s) platform exist "%platformname)
           
           
      except Exception,e:
         logger_test.exception("error occured while parsing the congig file with exception :%s"%str(e))
         sys.exit("error ocuured while parsing")
 def __init__(self,client_name,searchstring,filepath):
     
     t1=configparserdata()
     platformname="twitter"
     self.filepath=filepath
     self.searchstring=searchstring.split(",")
     client_name,consumer_key,consumer_secret,access_token_key,access_token_secret,self.brokerlist,self.topic=t1.configparse(client_name, platformname)
     self.auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
     self.auth.set_access_token(access_token_key, access_token_secret)
     try:
       self.api = tweepy.API(self.auth)
 
       logger_test.info("succesful authentication with twitter")
     except Exception,e:
         logger_test.exception("error occured while doing authentication with twitter with following error:%s"%str(e))
         sys.exit("authentication failed")
          self.api = tweepy.API(self.auth)
    
          logger_test.info("succesful authentication with twitter")
        except Exception,e:
            logger_test.exception("error occured while doing authentication with twitter with following error:%s"%str(e))
            sys.exit("authentication failed")
            
    def get_data(self):
        
        logger_test.debug("inside get_data function")
        myStream = tweepy.Stream(self.auth, listener=MyStreamListener(self.api,self.brokerlist,self.topic))
        logger_test.info("self.searchstring %s"%self.searchstring)
        myStream.filter(track=self.searchstring,async=True)
        
        
if __name__=="__main__":
    parser = optparse.OptionParser(description='Optional app description')
    parser.add_option('-u','--username', 
                    help='enter the username for which you have access token,consumer_token etc.')
    parser.add_option('-s','--search_string',
                    help='Query string which you want to filter for realtimedata',
                    default="Narendra Modi")
    try:
      options, args = parser.parse_args()
    except Exception,e:
        logger_test.exception("Sys arguements parsing failed with following errors:%s"%str(e))
    logger_test.info("arguemts parsed from command line are:%s "%options)
    
    
    t1=twitter_data_push(str.lower(options.username),options.search_string)
    t1.get_data()