mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-02-02 11:04:00 +01:00
13 lines
144 B
Python
13 lines
144 B
Python
|
#
|
||
|
# main driver
|
||
|
#
|
||
|
|
||
|
|
||
|
from .netdb import inspect
|
||
|
|
||
|
def print_entry(ent):
|
||
|
print (ent)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
inspect(hook=print_entry)
|