proj-oot-ootFfiNotes1

Python CTypes https://gist.github.com/Jach/1208215

--

https://news.ycombinator.com/item?id=7136604

Thrift, Protocol Buffers, Haris, D-Bus

--

https://cffi.readthedocs.org/en/

---

" That doesn’t mean, though, that if you need to wrap some C code you can’t use PyPy?. The PyPy? project has another project called cffi which is meant to facilitate the wrapping of C code for use by Python code. The key benefit to using cffi is that if you use it then the C code can be used in CPython and PyPy? (IronPython? and Jython I believe are also working on adding support for cffi). So if you are wrapping C code I would strongly suggest you look at cffi over a hand-crafted C extension module or Cython so you can have better Python implementation support and be able to use PyPy?. " -- http://nothingbutsnark.svbtle.com/how-to-argue-for-pythons-use

---