Python Backend Development
10+ years engineering and deploying production-grade Django applications and full-stack system integrations — from internal business platforms to IoT data pipelines feeding live dashboards.
class IncomingItem(models.Model):
# barcode-driven warehouse receiving, built to replace manual entry
sku = models.CharField(max_length=64, unique=True)
barcode = models.CharField(max_length=128, db_index=True)
received_at = models.DateTimeField(auto_now_add=True)
location = models.ForeignKey("WarehouseZone", on_delete=models.PROTECT)
def generate_label(self):
# renders a scannable label for immediate shelf placement
return barcode.generate(self.barcode, writer=ImageWriter())
Web-based barcode generation and labelling application that replaced manual data entry for incoming warehouse receiving.
Application to track and manage prepaid utility expenses — usage data models, automated reporting, and budget visibility for operations.
Company-wide intranet for internal communications, room booking, and workflow support, built from requirements through deployment.
Web-based information board rendered live on Raspberry Pi display devices across office locations.
ESP32 sensors feeding a Python-driven data pipeline — temperature, humidity, fire, and motion detection — visualized on a live dashboard.
PRTG-based monitoring with automated data collection rendered on a Raspberry Pi display for real-time NOC visibility.