Which DHT implementations are compatible with Python 3.x?
Following on from this question about DHTs in Python, my question is the same except that I'm developing on Python 3.x - I only want to know about implementations of the DHT concept which are known to work with Python 3.
There seem t开发者_JAVA百科o be plenty of DHT products, for example Khashmir, however as far as I'm aware nobody has bothered to make these available to Python 3.x.
I don't think you'll get simultaneous 2.6 and 3.x support - that is not what Guido is recommending. To do that they'd have to maintain two equivalent parallel code-lines, because the same code is unlikely to work on both python 2 and 3.
精彩评论