├── .gitignore ├── README.md ├── connection ├── __init__.py └── create.py ├── cswsh.py ├── requirements.txt └── sockets ├── __init__.py └── socket_io.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepakPawar95/cswsh/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepakPawar95/cswsh/HEAD/README.md -------------------------------------------------------------------------------- /connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /connection/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepakPawar95/cswsh/HEAD/connection/create.py -------------------------------------------------------------------------------- /cswsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepakPawar95/cswsh/HEAD/cswsh.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepakPawar95/cswsh/HEAD/requirements.txt -------------------------------------------------------------------------------- /sockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sockets/socket_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepakPawar95/cswsh/HEAD/sockets/socket_io.py --------------------------------------------------------------------------------