def __init__(self, consumer_key, consumer_secret):
        """
        Given the access tokens, provide active connections.
        """

        ACCESS_TOKEN = Twython(consumer_key, consumer_secret,
                               oauth_version=2).obtain_access_token()
        twython = Twython(consumer_key, access_token=ACCESS_TOKEN)

        self.timeline_crawler = CrawlTwitterTimelines(twython)
        self.ff_finder = FindFriendFollowers(twython)