1 2 3 4 5 6 7 8
<!DOCTYPE html> <script> (async () => { const response = await fetch("viewport.py"); const body = await response.text(); parent.postMessage(body, "*"); })(); </script>