You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
705 B
32 lines
705 B
"""Command line tool to print discocvered devices or dump raw data."""
|
|
from __future__ import print_function
|
|
import sys
|
|
|
|
from netdisco.discovery import NetworkDiscovery
|
|
|
|
|
|
def main():
|
|
"""Handle command line execution."""
|
|
netdisco = NetworkDiscovery()
|
|
|
|
netdisco.scan()
|
|
|
|
# Pass in command line argument dump to get the raw data
|
|
if sys.argv[-1] == 'dump':
|
|
netdisco.print_raw_data()
|
|
print()
|
|
print()
|
|
|
|
print("Discovered devices:")
|
|
count = 0
|
|
for dev in netdisco.discover():
|
|
count += 1
|
|
print(dev, netdisco.get_info(dev))
|
|
print()
|
|
print("Discovered {} devices".format(count))
|
|
|
|
netdisco.stop()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|