20

Can someone please tell me how to get one username from one id on tweepy? I have looked everywhere and can't find anything.

alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195
Amr El Aswar
  • 3,395
  • 3
  • 23
  • 36

3 Answers3

23

If you just have a user_id value you need to call the twitter API with the get_user(user_id) method. The returned User object will contain the username under screen_name.

# steps not shown where you set up api
u = api.get_user(783214)
print u.screen_name

If you already have the User object from another API call just look for the screen_name.

Juan E.
  • 1,808
  • 16
  • 28
12

You can use this code to get user screen name or user id

To get user screen name from user id

In [36]: import tweepy
In [37]: consumer_key = Your_consumerkey
In [38]: consumer_secret = Your_consuersecret
In [39]: access_token = Your_access_token
In [40]: access_token_secret = Your_access_token_secret
In [41]: auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
In [42]: auth.set_access_token(access_token, access_token_secret)
In [43]: api = tweepy.API(auth)
In [48]: user = api.get_user(1088398616)                                                           

In [49]: user.screen_name
Out[49]: u'saimadhup'

To get user id from user screen name

In [46]: user = api.get_user(screen_name = 'saimadhup')
In [47]: user.id
Out[47]: 1088398616
saimadhu.polamuri
  • 4,439
  • 2
  • 24
  • 21
6

Although OP clearly needs the username for just one id, in case if one wants to get usernames for a list of ids(<100), then:

def get_usernames(ids):
    """ can only do lookup in steps of 100;
        so 'ids' should be a list of 100 ids
    """
    user_objs = api.lookup_users(user_ids=ids)
    for user in user_objs:
        print(user.screen_name)

For larger set of ids, you can just put this in a for loop and call accordingly while obeying the twitter API limit.

kmario23
  • 57,311
  • 13
  • 161
  • 150