This package can be used to make your own twitter bot with less line of code
import the package using pip install
pip install simpletwitter
Website: https://simpletwitter.netlify.app/
PyPi Link : https://pypi.org/project/simpletwitter/
Google Groups Link: https://groups.google.com/g/simpletwitter
Discussions Link: https://github.com/orgs/simpletwitter/discussions
usage:
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
bot.like_tweet(hashtags) #like the twitte
bot.unlike_liked_tweets(5) #unlike the liked tweet
bot.tweet(tweetmessage) #put some tweet
Total Downloads | Monthly Downloads | Weekly Downloads |
---|---|---|
22,185 | 635 | 143 |
Tool Name | Purpose |
---|---|
Selenium | Chrome Automation |
Feature Update | 3 feature update added on 3rd October 2023 |
---|---|
Update 1 | Added function to retweet |
Update 2 | Added feature to like the top tweets of the particular hash tags |
Update 3 | Added Tech News feature to post news on twitter account |
Update 4 | Can able to post Linked in 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()
hashtags = ["#reactjs", "abipravi"]
bot.only_like_top_tweet(hashtags)
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
hashtags = ["#reactjs", "abipravi"]
bot.retweet(hashtags)
Post Tech News from NEWSAPI
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
no_of_news_to_be_posted = 1
# if no of tweets to be posted ==> 1 {Post 12 news} it will post '12' news for value =>> 1 <<=
x = bot.post_tech_news(no_of_news_to_be_posted)
Post LinkedIn Content from URL into Twitter Tweet
from simpletwitter import SimpleTwitter
bot = SimpleTwitter(email, password, no_of_tweets, username)
bot.login()
bot.postLinkedIn(Url)
- Scrape Data for analytics
- Tech News post in Twitter
- Twitter APi also using Twitter API keys
- Create a web Admin Dashboard for the Twitter Automation
- Linked in to Twitter Post