mirror of
https://github.com/PurpleI2P/i2pd-tools
synced 2025-02-05 03:04:13 +00: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)
|