Title: Main Page '''Python-I2P''' is a Python interface to [http://www.i2p.net I2P]. == Quick Start == Install:
python setup.py installUse:
>>> from i2p import sam
>>> s = sam.socket('Alice', sam.SOCK_STREAM)
>>> s.connect('duck.i2p')
>>> s.send('GET / HTTP/1.0\r\n\r\n')
>>> s.recv(1000)
(HTTP response from duck.i2p)
== User's Guide ==
The following modules are available: