aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/print_mutual_friends.py
blob: 9de77cb4f1af003bf4438048436124e11b285dc8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                                           
          
 
                 
 

                                                                         
 




                                                                                                       


                          

                                                                                     
 


                                                                  
 



                                                                               

                                                          
                                     
                                      
# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
# This file is licensed under the terms of the MIT License.
# See LICENSE.txt for details.

import sys

from api import *

def query_friends(api, user):
    return api.friends_get(user.get_uid(), fields=User.Field.SCREEN_NAME)

def format_user(user):
    if user.has_last_name():
        return '{} {} ({})'.format(user.get_last_name(), user.get_first_name(), user.get_screen_name())
    else:
        return '{} ({})'.format(user.get_first_name(), user.get_screen_name())

if __name__ == '__main__':
    import argparse
    parser = argparse.ArgumentParser(
        description='Learn who your ex and her new boyfriend are both friends with.')

    parser.add_argument(metavar='UID', dest='user_ids', nargs='+',
                        help='user IDs or "screen names"')
    args = parser.parse_args()

    api = API(Language.EN)
    users = api.users_get(args.user_ids, fields=User.Field.SCREEN_NAME)

    friend_lists = map(lambda user: frozenset(query_friends(api, user)), users)
    mutual_friends = frozenset.intersection(*friend_lists)
    if mutual_friends:
        for friend in mutual_friends:
            print(format_user(friend))