Python – API.create_favorite() en Tweepy

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.

API.create_favorite()

El create_favorite()método de la APIclase en el módulo Tweepy se utiliza para dar me gusta a un estado como usuario autenticado.

Sintaxis: API.create_favorite(id)

Parámetros:

  • id : especifica el ID del estado.

Devoluciones: un objeto de clase Estado

Ejemplo 1: Considere el siguiente estado:

# 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)
  
# ID of the status
id = 1268080321590935553
  
# liking the status
api.create_favorite(id)

Producción :

Ejemplo 2: Comprobar si el estado ha gustado o no al create_favorite()método.

# ID of the status
id = 1267740427676942337
  
print("Before using the create_favorite() method : ")
if api.get_status(id).favorited == True:
    print("The status has been liked by the authenticated user.")
else:
    print("The status has not been liked by the authenticated user.")
  
# liking the status
api.create_favorite(id)
  
print("\nAfter using the create_favorite() method : ")
if api.get_status(id).favorited == True:
    print("The status has been liked by the authenticated user.")
else:
    print("The status has not been liked by the authenticated user.")

Producción :

Before using the create_favorite() method : 
The status has not been liked by the authenticated user.

After using the create_favorite() method : 
The status has been liked by the authenticated user.

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 *