def __init__(self, tokens):
"""
:param tokens: Dictionary of all tokens
[consumer_key, consumer_secret, access_token_key,
access_token_secret]
required to initialize the Twitter Api
"""
self.api = twitter.Api(
consumer_key=tokens['consumer_key'],
consumer_secret=tokens['consumer_secret'],
access_token_key=tokens['access_token_key'],
access_token_secret=tokens['access_token_secret']
)
评论列表
文章目录