tags:

views:

130

answers:

1

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 be stable on Python 3.

There seem to 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.

Ideally I want all dependencies of my project to be simultaneously safe for python 2.6 and python 3.x

+1  A: 

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.

Douglas Leeder