Open In App

Python – API.lists_subscriptions() in Tweepy

Last Updated : 10 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Twitter is a popular social network where users share messages called tweets. Twitter allows us to mine the data of any user using Twitter API or Tweepy. The data will be tweets extracted from the user. The first thing to do is get the consumer key, consumer secret, access key and access secret from twitter developer available easily for each user. These keys will help the API for authentication.

API.lists_subscriptions()

The lists_subscriptions() method of the API class in Tweepy module is used to fetch all the lists the specified user is subscribed to.

Syntax : API.lists_subscriptions(parameters)

Parameters :

  • user_id : ID of the user.
  • screen_name : screen name of the user.
  • count : the number of lists to be fetched.

If there is no parameter, the lists of the authenticated user will be fetched.

Returns : a list of objects of class List

Example 1 : Using the lists_subscriptions() method without any parameter.




# import the module
import tweepy
  
# assign the values accordingly
consumer_key = ""
consumer_secret = ""
access_token = ""
access_token_secret = ""
  
# authorization of consumer key and consumer secret
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
  
# set access to user's access key and access secret 
auth.set_access_token(access_token, access_token_secret)
  
# calling the api 
api = tweepy.API(auth)
  
# fetching all the lists
list = api.lists_subscriptions()
  
# counting the number of lists
print("The authenticated user has been subscribed to " + str(len(list)) + " list(s).")


Output :

The authenticated user has been subscribed to 7 list(s).

Example 2 : Getting the lists of another user.




# the screen name user
screen_name = "geeksforgeeks"
  
# fetching all the lists
api.lists_subscriptions(screen_name)
  
# counting the number of lists
print("The user " + screen_name + " has been subscribed to " + str(len(list)) + " list(s).")


Output :

The user geeksforgeeks has been lists_subscribed to 0 list(s).


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads