├── .wsee ├── CONFIG ├── VERSION └── openssl.cnf ├── LICENSE ├── README.md ├── bin └── payloads │ ├── http2 │ └── websocket ├── input └── local-websocket-sample.txt ├── requirements.txt ├── tests └── wseye10.py └── wsee.py /.wsee/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/.wsee/CONFIG -------------------------------------------------------------------------------- /.wsee/VERSION: -------------------------------------------------------------------------------- 1 | 1.17.1 -------------------------------------------------------------------------------- /.wsee/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/.wsee/openssl.cnf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/README.md -------------------------------------------------------------------------------- /bin/payloads/http2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/bin/payloads/http2 -------------------------------------------------------------------------------- /bin/payloads/websocket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/bin/payloads/websocket -------------------------------------------------------------------------------- /input/local-websocket-sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/input/local-websocket-sample.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fsspec 2 | requests 3 | jsonmerge 4 | setuptools -------------------------------------------------------------------------------- /tests/wseye10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/tests/wseye10.py -------------------------------------------------------------------------------- /wsee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilts/wsee/HEAD/wsee.py --------------------------------------------------------------------------------