Live data from Hacker News

Show HN: A pure Python implemention of Apache Thrift

thriftpy.readthedocs.org

1–10 of 10 posts

Re: Show HN: A pure Python implemention of Apache Thrift

#2
Great to see some competition to the official (and slightly unloved) implementation, especially since you're working on accelerated binary protocol, which the official implementation lacks (at least last I checked!). One thing I'd suggest, though:

> Can import thrift file as normal py modules. The sdk code is generated on the fly.

This kind of thing immediately puts me off using the module. Messing with process-global state just for the sake of convenience really isn't worth the risk, if your intention is to develop serious software, where lives and livelihoods might at some point depend on its reliability. As "import this" puts it, "special cases aren't special enough to break the rules."

Would rather see the module import hook stuff removed, or at least easily disabled. (e.g. have you tried to see how it works in combination with something like py2exe? I suspect it will break)

Re: Show HN: A pure Python implemention of Apache Thrift

#3
post #2

Great to see some competition to the official (and slightly unloved) implementation, especially since you're working on accelerated binary protocol, which the official implementation lacks (at least last I checked!). One thing I'd suggest, though: > Can import thrift file as normal py modules. The sdk code is generated on the fly. This kind of thing immediately puts me off using the module. Messing with process-globa…

I just updated the code, now the magic import hook is disabled by default, and can be install/remove by func.

Re: Show HN: A pure Python implemention of Apache Thrift

#7

This doesn't appear to support TCompactProtocol, which in the official Python implementation uses a different byte-order on the wire than the official implementation in every other language. https://issues.apache.org/jira/browse/THRIFT-1639

Yes, currently only binary protocol was implemented.

Re: Show HN: A pure Python implemention of Apache Thrift

#9
post #2

Great to see some competition to the official (and slightly unloved) implementation, especially since you're working on accelerated binary protocol, which the official implementation lacks (at least last I checked!). One thing I'd suggest, though: > Can import thrift file as normal py modules. The sdk code is generated on the fly. This kind of thing immediately puts me off using the module. Messing with process-globa…

Thrift does have an accelerated binary protocol for Python, written in C and wrapped as a python module.