diff --git a/util/get_consensus.py b/util/get_consensus.py index 3bb2272..2f35a42 100644 --- a/util/get_consensus.py +++ b/util/get_consensus.py @@ -3,5 +3,6 @@ from stem.control import Controller with Controller.from_port(port = 9051) as controller: controller.authenticate("password") + print("List of relays found on the network:") for desc in controller.get_network_statuses(): - print("found relay %s (%s)" % (desc.nickname, desc.fingerprint)) + print("%s (%s) at %s" % (desc.nickname, desc.fingerprint, desc.address))