I have a relatively simple task:
The scripts would be in Pyhton and are relatively simple, I do not need to pull a lot of data either. My question would be what is the (1) easiest (2) cheapest way to do this? Are there any resources you would recommend to building this type of automated infrastructure in the cloud for beginners?
I understand I will have to use some sort of cloud provider (AWS?) and would like some guidance on this based on other people's experiences.
Thanks in advance!
This can all be done using the AWS SDK that let you programmatically interact with AWS Services. As you want to work in Python, you can use AWS SDK for Python for this use case.
Here are high level steps:
If you do not know how to use Python SDK, look at the examples in the AWS Code Lib.