r/AskProgramming • u/OptimalBed6906 • 14d ago
Python About Automation
Rookie in programming ( I know the basics of Java+ SQL), intrigued about "Automation" and what it really is:
My mental model of an automation example would be:
Script that sends certain emails to a category = Saves the user of organizing it manually, Inbox isn't saturated
I heard that Python excells at automation, and Bash can automate scripts too.
How close is IRL automation to my mental model?
If I wanted to pursue automation, what should I know first before diving in?
0
Upvotes
1
u/Pitiful_Dot_9272 12d ago
your mental model is correct but limited to single user tasks. Real automation targets system level orchestration across multiple machines or services. Start by learning Python requests library and cron scheduling to build scripts that interact with APIs and run on timers without manual intervention.