├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── Makefile ├── README.md ├── eterm.c ├── eterm.h ├── pyerl.c ├── setup.py └── tests ├── pingpong.erl ├── test_pyerl.py └── test_rpc.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | MANIFEST 3 | build/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/README.md -------------------------------------------------------------------------------- /eterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/eterm.c -------------------------------------------------------------------------------- /eterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/eterm.h -------------------------------------------------------------------------------- /pyerl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/pyerl.c -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/setup.py -------------------------------------------------------------------------------- /tests/pingpong.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/tests/pingpong.erl -------------------------------------------------------------------------------- /tests/test_pyerl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/tests/test_pyerl.py -------------------------------------------------------------------------------- /tests/test_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamano/python-erlang-interface/HEAD/tests/test_rpc.py --------------------------------------------------------------------------------