₹37,500 per month. That was the SaaS bill a Jaipur-based textile exporter was paying for automating invoices, GST reconciliation, and shipping notifications across three platforms. Three dashboards, three logins, three support tickets every time something broke.
I replaced all of it with Python scripts running on a ₹500/month VPS. The recurring cost dropped to effectively zero — and the workflows actually became more reliable.
This isn't a hypothetical framework. This is the exact stack I've deployed across 11 Indian businesses over the past 18 months, from CA firms filing ITR returns to stock traders screening 150+ equities before market open. Every tool in this stack is free. Every workflow runs in production today.
Why Indian Businesses Overpay for Automation
Most business owners discover automation through SaaS marketing. The pitch is compelling: drag-and-drop workflows, no coding required, instant results. What the pricing page doesn't tell you is that the "Starter" plan handles 100 tasks per month, and your GST reconciliation alone burns through that in three days.
The real cost isn't the subscription — it's the upgrade treadmill. You start at ₹2,000/month, hit the task limit by week two, upgrade to ₹8,000/month, then discover that the webhook integration you need is locked behind the "Business" tier at ₹25,000/month.
For businesses processing under 10,000 transactions monthly — which includes the vast majority of Indian SMBs, freelancers, and professional firms — a Python-based stack isn't just cheaper. It's more flexible, more transparent, and entirely under your control.
The Stack: Seven Layers, Zero Recurring Cost
Here's every component of the automation stack I deploy for clients. Each layer is free, battle-tested, and replaceable without rebuilding the entire system.
Layer 1 — Logic & Scripting: Python 3.11+
The backbone of every automation. Handles API calls, data transformation, conditional logic, and error handling. Free forever, runs anywhere.
Layer 2 — Data Processing: Pandas + OpenPyXL
Reads Excel sheets, CSVs, and bank statements. Cleans, matches, and transforms data. This single library replaces most of what businesses pay ₹10,000+/month for in data integration tools.
Layer 3 — Database: SQLite (small) or PostgreSQL (scale)
SQLite ships with Python — zero setup. For anything above 50,000 records or multi-user access, PostgreSQL (free, open-source) handles it. Supabase offers free-tier hosted PostgreSQL if you don't want to manage a database server.
Layer 4 — Scheduling: cron + Python schedule library
cron handles time-based triggers on Linux. The Python schedule library handles interval-based logic within scripts. Together they replace paid workflow schedulers entirely.
Layer 5 — Notifications: Telegram Bot API + Gmail SMTP
Telegram bots are free, instant, and support rich formatting (tables, buttons, file attachments). Gmail SMTP handles email alerts up to 500/day. WhatsApp Business API is free under 1,000 messages/month.
Layer 6 — Web Scraping & Browser Automation: Selenium + BeautifulSoup
For workflows that need to interact with websites that don't offer APIs — government portals, legacy ERP dashboards, bank statement downloads. Free, mature, well-documented.
Layer 7 — Hosting: VPS (₹500/month) or Home Server (₹0)
A basic VPS from providers like Hetzner or DigitalOcean runs the entire stack. For truly zero cost, an old laptop running Ubuntu works — I have a client whose stock screener runs on a repurposed 2018 ThinkPad.
Real Numbers: SaaS vs. ₹0 Stack
Here's the cost comparison from three actual client deployments. These aren't projections — these are real invoices I've seen versus the cost of what replaced them.
| Workflow | SaaS Cost (Monthly) | ₹0 Stack Cost (Monthly) | Annual Savings |
|---|---|---|---|
| Invoice processing + GST filing | ₹18,000 | ₹0 | ₹2,16,000 |
| Bank reconciliation (3 accounts) | ₹12,000 | ₹0 | ₹1,44,000 |
| Stock screening + WhatsApp alerts | ₹47,000 (advisory fee) | ₹0 | ₹5,64,000 |
| Daily MIS report generation | ₹8,500 | ₹0 | ₹1,02,000 |
Total annual savings across these four workflows: ₹10,26,000. The one-time setup cost for all four was ₹1,45,000. Payback period: under 2 months.
The Trade-Off Nobody Talks About
I'd be dishonest if I said this stack has no downsides. It does. The primary trade-off is setup time and maintenance ownership.
A SaaS tool gives you a working automation in 20 minutes. A Python script takes 2-8 hours to build, test, and deploy. If something breaks at 2 AM, there's no support chat — you debug it yourself, or your automation consultant does.
This matters. For a solopreneur who needs a quick Slack-to-email bridge, paying ₹2,000/month for a SaaS tool makes perfect sense. The ₹0 stack wins when you have workflows that are core to your business operations, when the SaaS bill has crossed ₹10,000/month, or when you need customisation that no drag-and-drop builder can handle.
I wrote about knowing when not to automate in my piece on how a CA firm automated ITR processing — the lesson applies here too. Not every workflow deserves a custom script. But the ones that do? They deserve better than a ₹25,000/month subscription with a 500-task ceiling.
How to Start: The First Workflow to Automate
If you've never built a ₹0 automation before, start with the workflow that causes the most daily friction. For most Indian businesses, that's one of these three: bank statement download and matching, invoice data extraction from PDFs, or daily/weekly report generation from spreadsheets.
Pick one. Build a Python script that handles the happy path — the 80% case where everything works normally. Add error handling and a Telegram notification for failures. Run it manually for a week to build trust. Then schedule it with cron and forget about it.
That single workflow will teach you more about automation than any SaaS trial. And once it's running, it runs forever — no subscription renewal, no "your plan has been downgraded," no surprise pricing changes.
The Reliability Question
Skeptics ask: "Is a free stack reliable enough for production?" Fair question. My answer: a CA firm has been running Python-based ITR automation through two consecutive filing seasons — over 1,200 returns processed, zero missed deadlines. The scripts have error handling, retry logic, and instant Telegram alerts if anything fails. That's more observability than most SaaS dashboards provide.
Reliability isn't about how much you pay. It's about how well you handle failures. A ₹0 script with proper logging and alerting beats a ₹20,000/month SaaS tool where failures disappear into a "contact support" black hole.
What's Next
In upcoming articles, I'll walk through specific implementations: automated bank reconciliation with Python and Pandas, stock screening bots that replace expensive advisory services, and GST reconciliation pipelines that file-ready returns without manual intervention.
Every implementation will follow the same philosophy: zero recurring cost, production-grade reliability, and real rupee numbers from real Indian businesses.
Archit Mittal helps businesses automate chaos. Follow on LinkedIn: @automate-archit
Get automation insights every Saturday — join The Automation Dispatch.
Top comments (0)