En este artículo veremos cómo podemos obtener el número de listas a las que se ha añadido un usuario. El atributo list_count nos proporciona un número entero que indica el número de listas públicas a las que se ha agregado un usuario. Las listas privadas no se cuentan.
Para obtener el número de listas públicas a las que se ha agregado un usuario, debemos hacer lo siguiente:
- Identifique el ID de usuario o el nombre de pantalla del perfil.
- Obtenga el objeto Usuario del perfil mediante el
get_user()
método con el ID de usuario o el nombre de pantalla.- De este objeto, obtenga el atributo enumerado_recuento presente en él.
Ejemplo 1: Considere el siguiente perfil:
Usaremos la ID de usuario para buscar al usuario. El ID de usuario del perfil mencionado anteriormente es 57741058.
# 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 user id = 57741058 # fetching the user user = api.get_user(id) # fetching the listed_count listed_count = user.listed_count print("The number of lists the user has been added to are : " + str(listed_count))
Producción :
The number of lists the user has been added to are : 141
Ejemplo 2: Considere el siguiente perfil:
Usaremos el nombre de pantalla para buscar al usuario. El nombre de pantalla del perfil mencionado anteriormente es PracticeGfG.
# the screen name of the user screen_name = "PracticeGfG" # fetching the user user = api.get_user(screen_name) # fetching the listed_count listed_count = user.listed_count print("The number of lists the user has been added to are : " + str(listed_count))
Producción :
The number of lists the user has been added to are : 6