9 lines
278 B
Python
9 lines
278 B
Python
from tabulate import tabulate
|
|
from util.create_utils import create_devices
|
|
|
|
|
|
# --- Main program --------------------------------------------
|
|
if __name__ == '__main__':
|
|
devices = create_devices(num_subnets=5, num_devices=4)
|
|
print("\n", tabulate(devices, headers="keys"))
|