Building Solutions That Work

Full-Stack Developer & Automation Specialist

ABU DHABI UAE

B.Tech
Computer Science
Django
Certified
AI
Automation Specialist
automation_script.py
from django.core.management.base import BaseCommand
from automation.models import Task

class Command(BaseCommand):
    def handle(self, *args, **options):
        # Worldlink Enterprise automation
        tasks = Task.objects.filter(status='pending')
        for task in tasks:
            task.process_automation()
            self.stdout.write(f"✅ Processed {task.name}")
                            
Currently working at Waitrose&partners
Live Production Code