Ejemplo n.º 1
0
 def __init__(self, options, columns):
     super(TwitterFDW, self).__init__(options, columns)
     self.columns = columns
     self.access_token = options["access_token"]
     self.access_token_secret = options["access_token_secret"]
     self.consumer_key = options["consumer_key"]
     self.consumer_secret = options["consumer_secret"]
     self.tservice = TwitterService(
         self.access_token,
         self.access_token_secret,
         self.consumer_key,
         self.consumer_secret)