Python – API.unsubscribe_list() 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.unsubscribe_list()

El método unsubscribe_list() de la clase API en el módulo Tweepy se usa para cancelar la suscripción de una lista específica como usuario autenticado. 
 

Sintaxis: API.unsubscribe_list(parámetros)
Parámetros: 
 

  • list_id : ID de la lista.
  • slug : slug de la lista.
  • id_propietario: ID del propietario de la lista.
  • own_screen_name : nombre de pantalla del propietario de la lista.

Devoluciones: un objeto de clase Lista 
 

Ejemplo 1: darse de baja de una lista. 

Python3

# 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 list
list_id =
 
# number of subscribers before unsubscribe_list() method
print("The number of subscribers before unsubscribe_list() method : " +
      str(api.get_list(list_id = list_id).subscriber_count))
 
# subscribing to the list
api.unsubscribe_list(list_id = list_id)
 
# number of subscribers after unsubscribe_list() method
print("The number of subscribers after unsubscribe_list() method : " +
      str(api.get_list(list_id = list_id).subscriber_count))

Producción :  

The number of subscribers before unsubscribe_list() method : 1
The number of subscribers after unsubscribe_list() method : 0

Ejemplo 2: darse de baja de la lista de otra persona por su nombre de slug. 

Python3

# the ID of the list
list_id = 4343
 
# the slug of the list
slug = "thought-leaders"
 
# the screen name of the owner of the list
owner_screen_name = "kitson"
 
# number of subscribers before unsubscribe_list() method
print("The number of subscribers before unsubscribe_list() method : " +
      str(api.get_list(list_id = list_id).subscriber_count))
 
# unsubscribing to the list
api.unsubscribe_list(slug = slug, owner_screen_name = owner_screen_name)
 
# number of subscribers after unsubscribe_list() method
print("The number of subscribers after unsubscribe_list() method : " +
      str(api.get_list(list_id = list_id).subscriber_count))

Producción : 

The number of subscribers before unsubscribe_list() method : 4065
The number of subscribers after unsubscribe_list() method : 4064

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 *