Twitter-api – How to get Twitter trends using Python and tweepy?
I want to develop a Jupyter Notebook which on executing every time shows the top 10 Twitter trending topics in India in the last 24 hours. I got everything set up: auth = tweepy.OAuthHandler(apikey,apisecretkey) auth.set_access_token(accesskey,accesssecret) api = tweepy.API(auth) and when…