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

El trends_available()método de la APIclase en el módulo Tweepy se usa para obtener las ubicaciones para las que Twitter tiene información de temas de tendencia.

Sintaxis: API.trends_disponible()

Parámetros: Ninguno

Devuelve: un objeto de clase JSON

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)
  
# fetching the trends
trends = api.trends_available()
  
print("The number of locations available are : " + str(len(trends)))

Producción :

The number of locations available are : 467

Ejemplo 2:

# fetching the trends
trends = api.trends_available()
  
print("Some of the locations are : ")
for i in range(0, 200, 20):
    print("Place : " + trends[i]['name'] +
          ", Country : " + trends[i]['country'])

Producción :

Some of the locations are : 
Place : Worldwide, Country : 
Place : Leeds, Country : United Kingdom
Place : Mexico City, Country : Mexico
Place : Mendoza, Country : Argentina
Place : Belo Horizonte, Country : Brazil
Place : Lodz, Country : Poland
Place : Dortmund, Country : Germany
Place : Utrecht, Country : Netherlands
Place : Oslo, Country : Norway
Place : Palembang, Country : Indonesia

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 *