Add the new stats module to the DHT.
[quix0rs-apt-p2p.git] / apt_p2p_Khashmir / __init__.py
1
2 """The apt-p2p implementation of the Khashmir DHT.
3
4 These modules implement a modified Khashmir, which is a kademlia-like
5 Distributed Hash Table available at::
6
7   http://khashmir.sourceforge.net/
8
9 The protocol for the implementation's communication is described here::
10
11   http://www.camrdale.org/apt-p2p/protocol.html
12
13 To run the DHT you probably want to do something like::
14
15   from apt_p2p_Khashmir import DHT
16   myDHT = DHT.DHT()
17   myDHT.loadConfig(config, section)
18   myDHT.join()
19
20 at which point you should be up and running and connected to others in the DHT.
21
22 """