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.destroy_favorite()
El destroy_favorite()
método de la API
clase en el módulo Tweepy se usa para dejar de gustar un estado como usuario autenticado.
Sintaxis: API.destroy_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 # un-liking the status api.destroy_favorite(id)
Producción :
Ejemplo 2: Comprobación de si el estado ha dejado de gustar o no por el destroy_favorite()
método.
# ID of the status id = 1267740427676942337 print("Before using the destroy_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.") # un-liking the status api.destroy_favorite(id) print("\nAfter using the destroy_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 destroy_favorite() method : The status has been liked by the authenticated user. After using the destroy_favorite() method : The status has not been liked by the authenticated user.