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.
|
#!/usr/bin/env python |
|
|
|
from electrum import interface, Interface |
|
|
|
i = Interface() |
|
i.start() |
|
servers = i.synchronous_get([('server.peers.subscribe',[])])[0] |
|
servers = i.parse_servers( servers ) |
|
print servers
|
|
|