En este artículo veremos cómo podemos obtener la descripción de un usuario. La descripción de describe una cuenta de usuario. El atributo de descripción es opcional y acepta valores NULL.
Identificación de la descripción en la GUI:
En el perfil mencionado anteriormente, la descripción es: Su destino único para alcanzar Coding Nirvana…
Para obtener la descripción tenemos que 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 de descripción 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 description description = user.description print("The description of the user is : " + description)
Producción :
The description of the user is : Your one-stop destination to attain Coding Nirvana...
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 description description = user.description print("The description of the user is : " + description)
Producción :
The description of the user is : Platform to practice programming problems. Solve company interview questions and improve your coding intellect!