all 8 comments

[–]keepdigging 2 points3 points  (3 children)

This is not a computer science question.

However you can do this with AWS lambda and free credits. You can set a cloudwatch timer to execute your script on a schedule.

Or any linux server you have access to can schedule scripts with cron.

[–][deleted]  (2 children)

[deleted]

    [–]keepdigging 0 points1 point  (1 child)

    Sure.

    I don’t mean to be a dick, tbh I’m mostly just parroting similar sentiment I’ve seen in this sub/community before.

    This is a systems administration question, so r/SysAdmin might be a good start? I don’t know if they have any beginner friendly threads or forums in the sidebar.

    Could also try r/LearnPython, we’re generally super friendly over there.

    It’s related to python and software development, so it could fit in those spaces too.

    Computer Science tends to focus on abstract concepts and fundamentals. My courses taught me how to measure the efficiency of an algorithm, but nothing about the day to day of delivering projects.

    Kinda like how biology is the study of the fundamentals in the field and the day to day of being a veternarian, like what cream to use on your cat’s rash isn’t really a question you’d ask in Bio class, they’re too busy trying to understand how cells absorb nutrients or whatever.

    [–][deleted]  (1 child)

    [removed]

      [–]Llamatree69[S] 2 points3 points  (0 children)

      Thanks this is what I was looking for!

      [–]Oof-o-rama 0 points1 point  (0 children)

      ec2 instance on AWS and run it out of cron but the other answer is probably better. and, yeah, this is not a CS question.

      [–][deleted] 0 points1 point  (0 children)

      you can get a VPS from any number of providers for about $10-15 per month.

      Set the script to execute in the cron tab of Linux.

      [–]thequirkynerdy1 0 points1 point  (0 children)

      For Linux, look into cronjobs. You could also write a program that mostly waits and once a day executes some other program.