I have a daily cron job that scrapes a directory. Right now, it saves as JSON. My boss wants a CSV report emailed to him every morning at 8 AM.
Can RTILA handle the format conversion and the email delivery in one go?
I have a daily cron job that scrapes a directory. Right now, it saves as JSON. My boss wants a CSV report emailed to him every morning at 8 AM.
Can RTILA handle the format conversion and the email delivery in one go?
Absolutely. This is a perfect use case for chaining triggers.
When your scheduled project finishes, the Python Relay will instantly convert the data in-memory using pandas, save the CSV, attach it to an email, and send it off to your boss. You can set it and forget it.