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_list()
El destroy_list()
método de la API
clase en el módulo Tweepy se usa para eliminar una lista.
Sintaxis: API.destroy_list(nombre_pantalla_propietario/id_propietario, id_lista/slug)
Parámetro:
- id_propietario: ID del propietario de la lista.
- own_screen_name : nombre de pantalla del propietario de la lista.
- list_id : ID de la lista.
- slug : slug de la lista, tendrá que mencionar también id_propietario/nombre_pantalla_propietario.
Devoluciones: un objeto de clase Lista
Ejemplo 1 :
# 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 = # deleting the list api.destroy_list(owner_screen_name, list_id = list_id)
La lista se elimina.
Ejemplo 2: Verificar si la lista se elimina o no utilizando el get_list()
método.
# the screen name of the owner of the list owner_screen_name = # the ID of the list list_id = print("Before using destroy_list() method") if api.get_list(list_id): print("The list exists.") # deleting the list api.destroy_list(owner_screen_name, list_id = list_id) print("After using destroy_list() method") try: api.get_list(list_id) except: print("The list does not exists.")
Producción :
Before using destroy_list() method The list exists. After using destroy_list() method The list does not exists.