1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-25 15:20:36 +01:00
electrs/contrib/health_check.py

16 lines
368 B
Python
Raw Normal View History

2020-11-15 22:25:57 +02:00
#!/usr/bin/env python3
import argparse
import client
def main():
parser = argparse.ArgumentParser()
parser.add_argument("host")
parser.add_argument("port", type=int)
args = parser.parse_args()
conn = client.Client((args.host, args.port))
print(conn.call("server.version", "health_check", "1.4")["result"])
if __name__ == '__main__':
main()