Python Tweepy: obtener la fuente de un tweet

En este artículo veremos cómo podemos obtener la fuente de un estado/tweet. La fuente del tweet nos dice cómo se publicó el tweet. Algunos ejemplos de fuentes son:

  • Gorjeo para Android
  • Gorjeo para iPhone
  • Aplicación web de Twitter

El atributo de origen del objeto Estado nos proporciona el origen del estado.

Identificación de la fuente del estado en la GUI:

En el estado mencionado anteriormente, la fuente del estado es: Twitter para Android

Para obtener la fuente del estado, tenemos que hacer lo siguiente:

  1. Identifique el ID de estado del estado de la GUI.
  2. Obtenga el objeto Estado del estado mediante el get_status()método con el Id. de estado.
  3. De este objeto, obtenga el atributo de origen presente en él.

Ejemplo 1: Considere el siguiente estado:

Usaremos el ID de estado para obtener el estado. El ID de estado del estado mencionado anteriormente es 1272771459249844224.

# 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 = 1272771459249844224
  
# fetching the status
status = api.get_status(id)
  
# fetching the source attribute
source = status.source 
  
print("The source of the status is : " + source)

Producción :

The source of the status is : Twitter for Android

Ejemplo 2: Considere el siguiente estado:

Usaremos el ID de estado para obtener el estado. El ID de estado del estado mencionado anteriormente es 1273112322773581824.

# the ID of the status
id = 1273112322773581824
  
# fetching the status
status = api.get_status(id
  
# fetching the source attribute
source = status.source 
  
print("The source of the status is : " + source)

Producción :

The source of the status is : Twitter Web App

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 *