class FollowMe(object):
    def __init__(self):
        self.rpc = SteemNodeRPC("wss://node.steem.ws", "", "", apis=["follow"])

    # get who we follow
    def following(self, account):
        return [
            f['following'] for f in self.rpc.get_following(
                account, "", "blog", 100, api="follow")
        ]