Files
i2p.itoopie/apps/sam/python
aum 8bd312046d First alpha release of stasher, a python-based Kademlia DHT implementation
specifically created for I2P.

New Files:
 - aum.stasher - a single noderef
 - stasher - wrapper script for starting/stopping/using stasher
 - stasher.py - similar wrapper script for 'doze users
 - src/bencode.py - requisite module
 - src/i2p/stasher.py - the stasher application classes - python module

Modified Files:
 - setup.py - added code to install stasher wrapper
 - src/i2p/__init__.py - added stasher to '__all__', allowing import
2004-08-14 12:58:12 +00:00
..
2004-08-09 10:01:04 +00:00
2004-08-02 14:07:30 +00:00

----------------------------------------
Python-I2P v0.91
----------------------------------------

Python-I2P is a Python interface to I2P.

All files in this directory and subdirectories
have been placed in the public domain.

----------------------------------------
Quick Start
----------------------------------------

Install:

  python setup.py install

Use:

  >>> from i2p import socket
  >>> s = socket.socket('Alice', socket.SOCK_STREAM)
  >>> s.connect('duck.i2p')
  >>> s.send('GET / HTTP/1.0\r\n\r\n')
  >>> s.recv(1000)
  (Response from duck.i2p)

See the src/examples/ directory for more code examples.

----------------------------------------
Full Start
----------------------------------------

See the docs directory for HTML documentation.