Host a Python Bot which runs on hourly basis

General Rules

  • This Forum Rules:
    1. No asking for course requests or download links.
    2. Don't share links to other websites for downloads or references.
    3. Avoid controversial topics in discussions.

    4. Use an appropriate thread title that matches your content, not just a word.

    Other Forum Rules Can Be Found Here

Limbonite

Well-known member
TutFlixer
Sep 6, 2020
218
6,074
52
Not Known
Hey Tutflixers,

I am working on a Python Bot which has to run itself, again and again, every 3 hours.

Can Anyone Suggest a hosting platform with this automated cron job facility for free?

Saw PythonAnywherew But Can Run only one Cron Job for Certain Days

Or Using a Raspberry Pi is worth hosting a bot and running 24/7?

Please Help Me Out with this Guys

Thank You
 

Siddharth1202

Member
TutFlixer
Dec 17, 2020
48
38
13
India
Hey Tutflixers,

I am working on a Python Bot which has to run itself, again and again, every 3 hours.

Can Anyone Suggest a hosting platform with this automated cron job facility for free?

Saw PythonAnywherew But Can Run only one Cron Job for Certain Days

Or Using a Raspberry Pi is worth hosting a bot and running 24/7?

Please Help Me Out with this Guys

Thank You
You can host your app on heroku for free. As for running it again try using
Please, Log in or Register to view URLs content!
app which will

pings your Heroku app every 30 minutes so it will never go to sleep. And hence will run the app thought there are limitation on heroku side that for free account you app can only work for 500 hours per month. I am using this technique for my node application and it works perfectly​

 

Limbonite

Well-known member
TutFlixer
Sep 6, 2020
218
6,074
52
Not Known
You can host your app on heroku for free. As for running it again try using
Please, Log in or Register to view URLs content!
app which will

pings your Heroku app every 30 minutes so it will never go to sleep. And hence will run the app thought there are limitation on heroku side that for free account you app can only work for 500 hours per month. I am using this technique for my node application and it works perfectly​

Wow Friend! Thank You For this One
 
  • Like
Reactions: Siddharth1202

Latest resources