En este artículo veremos cómo podemos obtener la URL de un usuario. El atributo url es una URL proporcionada por el usuario en asociación con su perfil. El atributo URL es opcional y acepta valores NULL.
Identificación de la URL en la GUI:
En el perfil mencionado anteriormente, la url es: geeksforgeeks.org
Para obtener la URL 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 URL 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 url url = user.url print("The URL of the user is : " + url)
Producción :
The URL of the user is : http://t.co/k2iUfxLRBj
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 url url = user.url print("The URL of the user is : " + url)
Producción :
The URL of the user is : https://t.co/C5SOw0qMo4