wsgiref and Unix Domain Sockets
Recently, I needed to hack together a quick server-side application for a test page. When it comes to quick and dirty, most people turn to Python. While Python is hardly my favorite language, it is certainly suited for the task.
One of my requirements was that I wanted to minimize the number of dependencies.
Installing Python is bad enough (my nginx container is extremely bare bones), but installing a massive framework for what was effectively a wrapper around a system command would make things even worse.
So I decided to make due with wsgiref.simple_server
that ships with CPython.