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.update_list()
El update_list()
método de la API
clase en el módulo Tweepy se usa para actualizar una lista.
Sintaxis: API.update_list(parámetros)
Parámetros:
- list_id : ID de la lista.
- slug : slug de la lista, tendrá que mencionar también id_propietario/nombre_pantalla_propietario.
- name : nombre de la lista.
- mode : modo de la lista.
- description : descripción 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: Cambiar el nombre de la lista.
# 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 screen name of the owner of the list owner_screen_name = # the ID of the list list_id = print("Before using update_list() method") print("The name of the list is : " + api.get_list(list_id = list_id).name) # the new name of the list new_name = "Modified List" # updating the list api.update_list(list_id, name = new_name) print("After using update_list() method") print("The name of the list is : " + api.get_list(list_id = list_id).name)
Producción :
Before using update_list() method The name of the list is : Sample List After using update_list() method The name of the list is : Modified List
Ejemplo 2: Actualización de la descripción de la lista.
# the screen name of the owner of the list owner_screen_name = # the ID of the list list_id = print("Before using update_list() method") print("The description of the list is : " + api.get_list(list_id = list_id).description) # the new description of the list new_description = "This list is to test the Twitter API." # updating the list api.update_list(list_id, description = new_description) print("After using update_list() method") print("The description of the list is : " + api.get_list(list_id = list_id).description)
Producción :
Before using update_list() method The description of the list is : After using update_list() method The description of the list is : This list is to test the Twitter API.