lbry-sdk/lbrynet/lbrynet_daemon/LBRYDaemonStopper.py

19 lines
374 B
Python
Raw Normal View History

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:
2016-02-11 14:32:48 +01:00
daemon.stop()
print "LBRYnet daemon stopped"
else:
print "LBRYnet daemon wasn't running"
if __name__ == '__main__':
main()