forked from I2P_Developers/i2p.i2p
23 lines
307 B
Python
23 lines
307 B
Python
"""
|
|
i2p -- I2P Python interface
|
|
"""
|
|
|
|
__all__ = [
|
|
'BaseHTTPServer',
|
|
'CGIHTTPServer',
|
|
'eep',
|
|
'router',
|
|
'select',
|
|
'SimpleHTTPServer',
|
|
'socket',
|
|
'SocketServer',
|
|
'tunnel',
|
|
]
|
|
|
|
class Error(Exception):
|
|
"""Base class for all I2P errors."""
|
|
|
|
class RouterError(Error):
|
|
"""Could not connect to router."""
|
|
|