forked from I2P_Developers/i2p.i2p
initial import of Connelly's public domain I2P python lib
This commit is contained in:
20
apps/sam/python/src/i2p/__init__.py
Normal file
20
apps/sam/python/src/i2p/__init__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
"""
|
||||
i2p -- I2P Python interface
|
||||
"""
|
||||
|
||||
__all__ = ['Error', 'RouterError', 'sam', 'eep', 'router']
|
||||
|
||||
class Error(Exception):
|
||||
"""Base class for all I2P errors."""
|
||||
|
||||
class RouterError(Error):
|
||||
"""Could not connect to router."""
|
||||
|
||||
import sam
|
||||
import eep
|
||||
import router
|
||||
|
||||
# Internal use only
|
||||
#import samclasses as _samclasses
|
||||
|
||||
Reference in New Issue
Block a user