├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── conf.py ├── examples ├── counter.py ├── device.py └── hello_world.py ├── index.rst ├── setup.cfg ├── setup.py ├── sshim ├── Server.py └── __init__.py └── tests └── unit ├── __init__.py ├── test_basic.py ├── test_failure.py ├── test_serial.py └── test_unicode.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/README.md -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/conf.py -------------------------------------------------------------------------------- /examples/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/examples/counter.py -------------------------------------------------------------------------------- /examples/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/examples/device.py -------------------------------------------------------------------------------- /examples/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/examples/hello_world.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/index.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/setup.py -------------------------------------------------------------------------------- /sshim/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/sshim/Server.py -------------------------------------------------------------------------------- /sshim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/sshim/__init__.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/tests/unit/test_basic.py -------------------------------------------------------------------------------- /tests/unit/test_failure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/tests/unit/test_failure.py -------------------------------------------------------------------------------- /tests/unit/test_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/tests/unit/test_serial.py -------------------------------------------------------------------------------- /tests/unit/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon-engledew/sshim/HEAD/tests/unit/test_unicode.py --------------------------------------------------------------------------------