PyErl
=====

PyErl is Erlang Interface for Python. which help you integrate
programs written in Python and Erlang.

INSTALL
-------

 python setup.py build
 python setup.py install

EXAMPLE
-------

* make erlang terms
 import pyerl
 atom = pyerl.mk_atom("hello")
 string = pyerl.mk_string("world")
 int = pyerl.mk_int(-1)
 list = pyerl.mk_list([atom, string, int])
 print list

AUTHER
------
Tsukasa Hamano <code@cuspy.org>
