├── .hgignore ├── README.txt ├── remoteexec.py ├── setup.py └── test.py /.hgignore: -------------------------------------------------------------------------------- 1 | ^dist/ 2 | ^MANIFEST$ 3 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/py-remoteexec/HEAD/README.txt -------------------------------------------------------------------------------- /remoteexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/py-remoteexec/HEAD/remoteexec.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/py-remoteexec/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/py-remoteexec/HEAD/test.py --------------------------------------------------------------------------------