kademlia/docs/index.rst

34 lines
1.1 KiB
ReStructuredText
Raw Normal View History

2015-01-05 15:32:24 +00:00
.. Kademlia documentation master file, created by
sphinx-quickstart on Mon Jan 5 09:42:46 2015.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Kademlia Documentation
======================
2015-01-05 18:44:39 +00:00
.. note ::
2018-01-02 19:17:36 +00:00
This library assumes you have a working familiarity with asyncio_.
2015-01-05 18:44:39 +00:00
2018-01-02 19:17:36 +00:00
This library is an asynchronous Python implementation of the `Kademlia distributed hash table <http://en.wikipedia.org/wiki/Kademlia>`_. It uses asyncio_ to provide asynchronous communication. The nodes communicate using `RPC over UDP <https://github.com/bmuller/rpcudp>`_ to communiate, meaning that it is capable of working behind a `NAT <http://en.wikipedia.org/wiki/NAT>`_.
2015-01-05 18:44:39 +00:00
This library aims to be as close to a reference implementation of the `Kademlia paper <http://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf>`_ as possible.
2018-01-02 19:17:36 +00:00
.. _asyncio: https://docs.python.org/3/library/asyncio.html
2015-01-05 18:44:39 +00:00
2015-01-05 15:32:24 +00:00
.. toctree::
:maxdepth: 3
2015-01-05 18:44:39 +00:00
:titlesonly:
2015-01-05 15:32:24 +00:00
intro
querying
2015-01-05 18:44:39 +00:00
source/modules
2015-01-05 15:32:24 +00:00
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`