Python – API.show_list_member() en Tweepy

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_member()

El show_list_member()método de la APIclase en el módulo Tweepy se usa para verificar si un usuario específico es miembro de una lista específica.

Sintaxis: API.show_list_member(parámetros)

Parámetros:

  • list_id : ID de la lista.
  • slug : slug de la lista.
  • user_id : ID del usuario a verificar en la lista.
  • screen_name : nombre de pantalla del usuario que se verificará en la lista.
  • 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 es miembro de 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 = 
  
# the user to be checked in the list
screen_name = "geeksforgeeks"
  
# checking the user is present in the list or not
api.show_list_member(list_id = list_id, screen_name = screen_name)
  
# if there is no exception then the user is present
print("The user " + screen_name + " is present in the list.")

Producción :

The user geeksforgeeksis present in the list.

Ejemplo 2: Cuando el usuario no es miembro de la lista.

# the ID of the list
list_id = 
  
# the user to be checked in the list
screen_name = "abcxyz"
  
# checking the user is present in the list or not
api.show_list_member(list_id = list_id, screen_name = screen_name)
  
# if there is no exception then the user is present
print("The user " + screen_name + " is present in the list.")

Producción :

raise TweepError(error_msg, resp, api_code=api_error_code)
tweepy.error.TweepError: [{'code': 108, 'message': 'Cannot find specified user.'}]

Publicación traducida automáticamente

Artículo escrito por Yash_R y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *