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.create_block()
El create_block()
método de la API
clase en el módulo Tweepy se usa para bloquear a un usuario como usuario autenticado.
Sintaxis: API.create_block (id / screen_name / user_id)
Parámetros: Utilice solo una de las 3 opciones:
- id: especifica el ID o el nombre de pantalla del usuario.
- user_id : especifica la ID del usuario, útil para diferenciar las cuentas cuando una ID de usuario válida también es un nombre de pantalla válido.
- screen_name : especifica el nombre de pantalla del usuario, útil para diferenciar las cuentas cuando un nombre de pantalla válido también es una ID de usuario.
Devoluciones: un objeto de clase Usuario
Ejemplo 1: Considere el siguiente usuario:
# 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 user screen_name = "geeksforgeeks" # blocking the user api.create_block(screen_name)
Producción :
Ejemplo 2: Comprobar si el usuario ha sido bloqueado o no por el create_block()
método.
# ID of the user id = 4802800777 print("Before using the create_block() method : ") if api.show_friendship(target_id = id)[0].blocking == True: print("The user has been blocked by the authenticated user.") else: print("The user has not been blocked by the authenticated user.") # blocking the user api.create_block(id) print("\nAfter using the create_block() method : ") if api.show_friendship(target_id = id)[0].blocking == True: print("The user has been blocked by the authenticated user.") else: print("The user has not been blocked by the authenticated user.")
Producción :
Before using the create_block() method : The user has not been blocked by the authenticated user. After using the create_block() method : The user has been blocked by the authenticated user.