Esempio n. 1
0
 def follow_trendy_users():
     print("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=")
     print("** Following trendy users: **")
     trends = BotLogic.find_trending_topics_in_usa()
     BotLogic.find_users_to_follow_based_on_trend_list(trends)
     print("** Done Following trendy users... **")
     print("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=")
Esempio n. 2
0
 def retweet_trending_topics():
     print("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=")
     print(
         "Now, I'm searching for trending topics in the USA for posts to retweet..."
     )
     usa_trends = BotLogic.find_trending_topics_in_usa()
     BotLogic.retweet_hashtags(usa_trends)
     print("**Done Retweeting...**")
     print("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=")