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.remove_list_members()
The remove_list_members()
method of the API
class in Tweepy module is used to remove multiple members from a specified list.
Syntax : API.remove_list_members(parameters)
Parameters :
- list_id : ID of the list.
- slug : slug of the list.
- user_id : ID of the user to be removed from the list.
- screen_name : screen name of the user to be removed from the list.
- owner_id : ID of the owner of the list.
- owner_screen_name : screen name of the owner of the list.
Returns : an object of class List
Example 1 : Removing a single member from the list using the remove_list_members()
method.
# 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) # the ID of the list list_id = # screen name of the user to be removed screen_name = "neveropen" print ( "Number of members before remove_list_member() is used : " + str (api.get_list(list_id = list_id).member_count)) # removing the user to the list api.remove_list_members(list_id = list_id, screen_name = screen_name) print ( "Number of members after remove_list_member() is used : " + str (api.get_list(list_id = list_id).member_count)) |
Output :
Number of members after remove_list_members() is used : 1 Number of members after remove_list_members() is used : 0
Example 2 : Removing multiple users from a list using the remove_list_members()
method.
# the ID of the non-existent list list_id = # remove the following users from the list users = [ "neveropen" , "PracticeGfG" , "GeeksQuiz" , "hackerrank" ] print ( "Number of members before remove_list_member() is used : " + str (api.get_list(list_id = list_id).member_count)) # removing the users to the list api.remove_list_members(list_id = list_id, screen_name = users) print ( "Number of members after remove_list_member() is used : " + str (api.get_list(list_id = list_id).member_count)) |
Output :
Number of members before remove_list_members() is used : 5 Number of members after remove_list_members() is used : 1
<!–
–>
Please Login to comment…