mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
9 lines
207 B
Python
Executable file
9 lines
207 B
Python
Executable file
#!/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
|