├── .github └── workflows │ └── docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── requirements.txt └── unwebsockify.py /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimparis/unwebsockify/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | README.html 2 | venv 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimparis/unwebsockify/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimparis/unwebsockify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimparis/unwebsockify/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | websockets 2 | -------------------------------------------------------------------------------- /unwebsockify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimparis/unwebsockify/HEAD/unwebsockify.py --------------------------------------------------------------------------------