Created
May 16, 2014 19:07
-
-
Save Demontager/8714a85b5a4aeedf1f3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import json | |
import sys | |
def linesplit(socket): | |
buffer = socket.recv(4096) | |
done = False | |
while not done: | |
more = socket.recv(4096) | |
if not more: | |
done = True | |
else: | |
buffer = buffer+more | |
if buffer: | |
return buffer | |
api_command = sys.argv[1].split('|') | |
if len(sys.argv) < 3: | |
api_ip = '127.0.0.1' | |
api_port = 4028 | |
else: | |
api_ip = sys.argv[2] | |
api_port = sys.argv[3] | |
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM) | |
s.connect((api_ip,int(api_port))) | |
if len(api_command) == 2: | |
s.send(json.dumps({"command":api_command[0],"parameter":api_command[1]})) | |
else: | |
s.send(json.dumps({"command":api_command[0]})) | |
response = linesplit(s) | |
response = response.replace('\x00','') | |
response = json.loads(response) | |
if api_command[0]=="devs": | |
j=1 | |
for i in response["DEVS"]: | |
print j, i["Status"] | |
j+=1 | |
else: | |
print response | |
s.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment