Skip to content

Instantly share code, notes, and snippets.

@weetown
weetown / webserver.py
Last active July 8, 2025 19:02
local http server for basic frontend dev testing, with real time updates using watchdog and websockets
#!/usr/bin/env python3
# === AUTO-INSTALL DEPENDENCIES ===
import sys
import subprocess
import shutil
DEBUG = "--debug" in sys.argv # detect early
# === CHECK FOR PIP FIRST ===