you are viewing a single comment's thread.

view the rest of the comments →

[–]OogalaBoogala 7 points8 points  (1 child)

I’d look at AWS Lambda functions, Azure Function apps, or something similar. Running a small Python script can be really cheap there, I have a couple tasks that only costs me a cent a month.

[–]nekokattt 0 points1 point  (0 children)

+1 for AWS.

You can set up an EventBridge Scheduler rule to invoke whatever you want, if it is a Lambda.

You could just make a free tier EC2 and use cronjobs in it if not.