Twitter es una red social popular donde los usuarios comparten mensajes llamados tweets. Twitter nos permite extraer los datos de cualquier usuario que utilice la API de Twitter o Tweepy . Los datos serán tweets extraídos del usuario. Lo primero que debe hacer es obtener la clave de consumidor, el secreto de consumidor, la clave de acceso y el secreto de acceso del desarrollador de Twitter disponibles fácilmente para cada usuario. Estas claves ayudarán a la API para la autenticación.
API.show_list_subscriber()
El show_list_subscriber()
método de la API
clase en el módulo Tweepy se usa para verificar si un usuario es suscriptor de una lista específica.
Sintaxis: API.show_list_subscriber (parámetros)
Parámetros:
- list_id : ID de la lista.
- slug : slug de la lista.
- screen_name : nombre de pantalla del usuario a comprobar.
- user_id : ID de usuario del usuario a comprobar.
- id_propietario: ID del propietario de la lista.
- own_screen_name : nombre de pantalla del propietario de la lista.
Devoluciones: un objeto de clase Usuario
Ejemplo 1: Cuando el usuario se ha suscrito a la lista.
# 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 = 4343 # screen name of the user to be checked screen_name = "LiptakCarl" # checking if the user is subscribed to the list api.show_list_subscriber(list_id = list_id, screen_name = screen_name) # if no exception is raised then the user is subscribed to the list print("The user " + screen_name + " is subscribed to the list " + api.get_list(list_id = list_id).name)
Producción :
The user LiptakCarl is subscribed to the list Thought Leaders
Ejemplo 2: cuando el usuario no está suscrito a la lista, se genera una excepción.
# the ID of the list list_id = 4343 # screen name of the user to be checked screen_name = "geeksforgeeks" # checking if the user is subscribed to the list api.show_list_subscriber(list_id = list_id, screen_name = screen_name) # if no exception is raised then the user is subscribed to the list print("The user " + screen_name + " is subscribed to the list " + api.get_list(list_id = list_id).name)
Producción :
raise TweepError(error_msg, resp, api_code=api_error_code) tweepy.error.TweepError: [{'code': 109, 'message': 'The specified user is not a subscriber of this list.'}]