My name is Ahtasham Aslam. People often find me by searching Ahtesham Aslam, Ahtsham, or Ehtisham Aslam — all the same person, different spellings of the same name.
I'm a freelance Python developer and AI automation specialist based in Lahore, Pakistan (and originally from Rahim Yar Khan). I build things that replace manual work with reliable, automated systems.
This post is my introduction to the Dev.to community — who I am, what I build, and why I think automation is the most underrated skill a developer can have in 2026.
Who is Ahtasham Aslam?
I started coding Python in 2024 by building real client projects — not tutorials, not toy apps. My first few projects were lead scrapers, email parsers, and inventory sync scripts for small businesses in Pakistan. That hands-on grounding shaped how I work: understand the business problem first, pick the simplest stack that works, ship fast, then iterate.
Since then I've expanded into:
AI agents and LLM-powered workflows — custom bots that handle support, sales, and operations
WhatsApp AI chatbots — Python + WhatsApp Business API + OpenAI, for restaurants, shops, and service businesses
n8n workflow automation — connecting email, Google Sheets, CRMs, payment gateways
Custom websites and ecommerce — fast, SEO-ready stores built on Next.js and WordPress
Web scraping pipelines — lead extraction, competitor monitoring, data cleaning
My website is ahtasham.site — it has my full portfolio, services, and blog.
What I Build and Why
WhatsApp AI chatbots
WhatsApp is where Pakistani (and Gulf, Latin American) customers actually are. A bot that answers product questions, takes orders, and sends order confirmations at 2am — without hiring extra staff — is a genuine business multiplier.
Here's the core architecture I use:
`# Simplified webhook handler (Flask)
from flask import Flask, request
import openai
app = Flask(name)
@app.post("/webhook")
def handle_message():
data = request.get_json()
sender = data["entry"][0]["changes"][0]["value"]["messages"][0]["from"]
text = data["entry"][0]["changes"][0]["value"]["messages"][0]["text"]["body"]
# Classify intent before sending to LLM
intent = classify_intent(text) # order, faq, complaint, human_handoff
if intent == "human_handoff":
notify_owner(sender)
return {"status": "ok"}, 200
# Generate contextual reply
reply = generate_reply(text, intent, get_business_context())
send_whatsapp_message(sender, reply)
return {"status": "ok"}, 200`
The key lesson: don't send every message raw to GPT. Classify intent first, then retrieve context (menu, prices, FAQs), then generate. This keeps costs low and replies accurate.
I wrote a full guide on this at: How to Build a WhatsApp AI Chatbot with Python in 2026
n8n workflow automation
n8n is underrated. It's an open-source workflow automation tool (like Zapier but self-hostable and way more flexible with Python nodes).
A typical automation I build for clients:
New lead email arrives
→ Gmail trigger fires
→ Python function extracts: name, company, budget, service needed
→ Google Sheets row created
→ Slack alert sent to sales team
→ Auto-reply sent to lead within 60 seconds
This whole flow takes about 3 hours to build and saves 2–3 hours of manual work every single day.
Custom websites from Pakistan
I build ecommerce stores and business websites starting at $100. That's not a typo. Clients in Pakistan, Gulf, and internationally get:
Fast-loading Next.js or WordPress sites
Mobile-responsive design
Basic SEO setup (meta tags, schema, sitemap)
WhatsApp integration
The $500 package adds a full WhatsApp AI chatbot — so the store runs itself after hours.
More on services: ahtasham.site/services
My Tech Stack in 2026
LayerToolsBackendPython, Django, Flask, FastAPIAutomationn8n, Python scripts, cron jobsAI/LLMOpenAI, local LLMs, LangChain basicsMessagingWhatsApp Business API (Meta Cloud API)ScrapingSelenium, Playwright, BeautifulSoupFrontendNext.js, WordPress, WooCommerceDataPostgreSQL, MySQL, Google Sheets APIDevOpsCloudflare, basic VPS deployment
Why I Write About This
There are very few Pakistani developers writing about Python automation and AI agents in English for an international audience. I want to change that — both to help other developers learn, and to show clients worldwide that high-quality technical work comes from Lahore too.
My blog at ahtasham.site/blog covers:
WhatsApp chatbot tutorials
Python scraping guides
AI agents for business
SEO/AEO for developers
What I'm Working On
Currently building:
A lead generation SaaS tool for Pakistani B2B companies — scrapes, cleans, and qualifies leads automatically
A WhatsApp ordering system for a restaurant chain in Lahore
A content automation pipeline using n8n + Python + OpenAI
Let's Connect
If you're building something with Python, n8n, or AI — or if you need a custom website or automation — I'd love to connect.
Website: ahtasham.site
GitHub: github.com/ahtesham486
LinkedIn: linkedin.com/in/ahtesham-aslam
WhatsApp: +923233684976
And if you find this searching for Ahtesham Aslam, Ehtisham Aslam, or Ahtsham — yes, that's me. Spelling varies, the Python is consistent. 🐍
Ahtasham Aslam is a Python developer and AI automation specialist based in Rahim Yar khan, Pakistan. He builds custom websites, WhatsApp AI chatbots, n8n automations, and AI agents. Visit ahtasham.site for portfolio and services.
Top comments (1)
Great to have you!