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.
obtener el estado()
El API.get_status()
método de la API
clase en el módulo Tweepy se usa para obtener un estado/tweet.
Sintaxis: API.get_status (parámetros)
Parámetros:
- id : El id del estado.
- trim_user : un booleano que indica si se deben proporcionar ID de usuario, en lugar de objetos de usuario completos. El valor predeterminado es Falso.
Devoluciones: un objeto de la clase Estado
Ejemplo 1: Considere el siguiente tweet:
# 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 status ID = # obtaining the status status = api.get_status(ID) # printing the text of the status print("The text of the status is : " + status.text)
Producción :
The text of the tweet is : This is a tweet.
Ejemplo 2: considere el siguiente tweet:
obtenga el nombre de pantalla, el número de respuestas y el número de retweets para el tweet anterior.
# the ID of the status ID = 1265569813281280006 # obtaining the status status = api.get_status(ID) # printing the text of the status print("The text of the status is : \n\n" + status.text) # printing the screen name print("\nThe status was posted by : " + status.user.screen_name) # printing the number of likes print("The status has been liked " + str(status.favorite_count) + " number of times.") # printing the number of retweets print("The status has been retweeted " + str(status.retweet_count) + " number of times.")
Producción :
The text of the status is : Apart from coding, what GEEKS are doing in quarantine? Reply us... #Quarantine #QuarantineLife #coding #programming The status was posted by : geeksforgeeks The status has been liked 25 number of times. The status has been retweeted 3 number of times.