rhiever / reddit-twitter-bot

Looks up posts from reddit and automatically posts them on Twitter.
GNU General Public License v3.0
137 stars 38 forks source link

How can i make the bot run continuously #18

Open Mihuuuu opened 5 years ago

Mihuuuu commented 5 years ago

Hey!

I wanted to know if there was any way to make the bot run continuously. For me the bot has the limit of posts it can get from reddit set to 10. After it tweets out the 10 pics I need to run it again.

Thank you!

druffko commented 5 years ago

Hi! You could create a shell script that repeadetly runs it. Example: `while true; do python bot.py;

sleep 1000;

done`