:globe_with_meridians: LEGO blocks for networking, a Python library to help create and test flexible network topologies across real and simulated physical links.
When called here num_nodes = fmt(int, input("How many nodes do you want? (26):"), 26) I get "Unexpected EOF when parsing" error. I found that changing input() to raw_input() fixes this in lines 54,55,56 of multinode.py.
Update: changed all instances of input() to raw_input() as the former seems to cause issues.
When called here
num_nodes = fmt(int, input("How many nodes do you want? (26):"), 26)
I get "Unexpected EOF when parsing" error. I found that changinginput()
toraw_input()
fixes this in lines 54,55,56 of multinode.py. Update: changed all instances ofinput()
toraw_input()
as the former seems to cause issues.