mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-01-22 21:37:18 +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)
|