2023-10-03 |
Added function to retweet |
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
hashtags = ["#reactjs", "abipravi"]
bot.only_like_top_tweet(hashtags)
|
2023-10-03 |
Added feature to like the top tweets of the particular hashtags
|
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
hashtags = ["#reactjs", "abipravi"]
bot.retweet(hashtags)
|
2023-10-03 |
Added Tech News feature to post news on a Twitter account |
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
no_of_news_to_be_posted = 1
x = bot.post_tech_news(no_of_news_to_be_posted)
|
2023-10-03 |
Can post LinkedIn content into a tweet using AI summarizer tool
from Hugging Face.io
|
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
bot.postLinkedIn(Url)
|