forked from LBRYCommunity/lbry-sdk
1e73b2437d
Add command to stop daemon from the terminal If lbrynet-daemon isn’t running the uri handler will now redirect to lbry.io/get
21 lines
No EOL
411 B
Python
21 lines
No EOL
411 B
Python
import xmlrpclib
|
|
|
|
|
|
def main():
|
|
daemon = xmlrpclib.ServerProxy("http://localhost:7080/")
|
|
try:
|
|
b = daemon.get_balance()
|
|
is_running = True
|
|
except:
|
|
is_running = False
|
|
|
|
if is_running:
|
|
try:
|
|
daemon.stop()
|
|
except:
|
|
print "LBRYnet daemon stopped"
|
|
else:
|
|
print "LBRYnet daemon wasn't running"
|
|
|
|
if __name__ == '__main__':
|
|
main() |