https://github.com/saboye/twitter-bot
A simple automatically Retweeting Bot App created using Python, Tweepy, and Twitter developer API. This sample App dynamically retweets based on the given hashtag.
https://github.com/saboye/twitter-bot
bot python tweepy twitter twitter-api
Last synced: 11 months ago
JSON representation
A simple automatically Retweeting Bot App created using Python, Tweepy, and Twitter developer API. This sample App dynamically retweets based on the given hashtag.
- Host: GitHub
- URL: https://github.com/saboye/twitter-bot
- Owner: saboye
- License: mit
- Created: 2021-02-21T05:37:43.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-02T15:06:28.000Z (over 5 years ago)
- Last Synced: 2025-06-17T21:45:34.547Z (about 1 year ago)
- Topics: bot, python, tweepy, twitter, twitter-api
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Automatically Retweet Bot App 👋
A simple automatically Retweeting Bot App created using Python, Tweepy, and Twitter developer API. This sample App dynamically retweets based on the given hashtag.
Tweepy an easy-to-use Python library for reaching the Twitter API.
## Install
```py
git clone https://github.com/saboye/Twitter-Bot.git
pip install tweepy
```
Create a developer account here [Developer Twitter](https://developer.twitter.com)
- please change the Twitter key configuration by newly generated key from Twitter developer pages
```py
CONSUMER_KEY = "XXXXXXXXXXXXXXXXXXXXXXXXX"
CONSUMER_SECRET = "XXXXXXXXXXXXXXXXXXXXXX"
ACCESS_KEY = "XXXXXXXXXXXXXXXXXXXXXXXXXXX"
ACCESS_SECRET = "XXXXXXXXXXXXXXXXXXXXXXXX"
```
## Usage
- change the hashtag vlaue
```py
python bot.py
```
## Author
👤 **SABOYE**
* Twitter: [@saboye1](https://twitter.com/saboye1)
* Github: [@saboye](https://github.com/saboye)
## 🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check [issues page](https://github.com/saboye/Twitter-Bot/issues).
## Show your support
Give a ⭐️ if this project helped you!
## 📝 License
Copyright © 2021 [Saboye](https://github.com/saboye).
This project is [MIT](https://github.com/saboye/Twitter-Bot/blob/main/LICENSE) licensed.
***