Free alternative for Apache Airflow without credit card

EliotRasputin

Newbie
Joined
May 1, 2018
Messages
4
Reaction score
1
I have a bot coded in Python that does a task using an API, it has to be executed every hour in order to truly automate my task.

The free tier in some of the alternatives have highly limited capabilities(pythonAnywhere) or have an end period for the free tier(Google Cloud)

Is anyone here aware of any alternatives that have a free tier that would allow me to schedule the bot to execute every hour.
 
I have a bot coded in Python that does a task using an API, it has to be executed every hour in order to truly automate my task.

The free tier in some of the alternatives have highly limited capabilities(pythonAnywhere) or have an end period for the free tier(Google Cloud)

Is anyone here aware of any alternatives that have a free tier that would allow me to schedule the bot to execute every hour.
afaik python will run on a LAMP server (on any VPS), I do not know what kind of app you have there but would'n a CRON job do the trick?
 
afaik python will run on a LAMP server (on any VPS), I do not know what kind of app you have there but would'n a CRON job do the trick?
Wanted something that would work when I wasn't online, once every hour and free of cost.

Found a way with GitHub actions, free tier, private repository and free 2000 minutes per month.

Trying to optimize the code now
 
try aws/azure/gcp, they have a free tier vps if you need a dedi IP for your script or you can go with serverless.

aws has a 2vcore 2GB ram free tier offering with 100GB of bandwidth limit and others have something similar.
 
Back
Top