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.subscribe_list()
El método subscribe_list() de la clase API en el módulo Tweepy se usa para suscribirse a una lista específica como usuario autenticado.
Sintaxis: API.subscribe_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: Suscríbete a 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 subscribe_list() method print("The number of subscribers before subscribe_list() method : " + str(api.get_list(list_id = list_id).subscriber_count)) # subscribing to the list api.subscribe_list(list_id = list_id) # number of subscribers after subscribe_list() method print("The number of subscribers after subscribe_list() method : " + str(api.get_list(list_id = list_id).subscriber_count))
Producción :
The number of subscribers before subscribe_list() method : 0 The number of subscribers after subscribe_list() method : 1
Ejemplo 2: Suscribirse a 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 subscribe_list() method print("The number of subscribers before subscribe_list() method : " + str(api.get_list(list_id = list_id).subscriber_count)) # subscribing to the list api.subscribe_list(slug = slug, owner_screen_name = owner_screen_name) # number of subscribers after subscribe_list() method print("The number of subscribers after subscribe_list() method : " + str(api.get_list(list_id = list_id).subscriber_count))
Producción :
The number of subscribers before subscribe_list() method : 4064 The number of subscribers after subscribe_list() method : 4065