Added a load function to the capnp module

It takes .capnp file and will load it through the C++ capnproto library.
Only major thing left is initializing lists and structs in
MessageBuilder
This commit is contained in:
Jason Paryani
2013-07-06 16:53:00 -07:00
parent 08ad9e571f
commit 7b8de8bbfe
6 changed files with 179 additions and 31 deletions

View File

@@ -3,5 +3,5 @@ from distutils.core import setup
from Cython.Build import cythonize
setup(
name = "capnp",
ext_modules = cythonize('capnp.pyx'),
)
ext_modules = cythonize('*.pyx'),
)