2
0
mirror of https://github.com/softScheck/tplink-smartplug synced 2026-01-11 23:38:46 +01:00

Repeat of djhworld Added verbose flag to print verbose output 04bd3b5 on Jun 24, 2017

This commit is contained in:
Leif Neland
2018-07-18 23:34:39 +02:00
parent 395c352100
commit 8289401ddd

View File

@@ -72,6 +72,7 @@ def decrypt(string):
# Parse commandline arguments
parser = argparse.ArgumentParser(description="TP-Link Wi-Fi Smart Plug Client v" + str(version))
parser.add_argument("-t", "--target", metavar="<hostname>", required=True, help="Target hostname or IP address", type=validHostname)
parser.add_argument("-v", "--verbose", dest='verbose', action='store_true', help="Display verbose output")
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument("-c", "--command", metavar="<command>", help="Preset command to send. Choices are: "+", ".join(commands), choices=commands)
group.add_argument("-j", "--json", metavar="<JSON string>", help="Full JSON string of command to send")
@@ -96,8 +97,14 @@ try:
data = sock_tcp.recv(2048)
sock_tcp.close()
print "Sent: ", cmd
print "Received: ", decrypt(data[4:])
decrypted = decrypt(data[4:])
if args.verbose:
print "Sent: ", cmd
print "Received: ", decrypted
else:
print decrypted
except socket.error:
quit("Cound not connect to host " + ip + ":" + str(port))