1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Added Python Api Example

This commit is contained in:
setkeh 2013-06-18 23:04:18 +10:00
parent 314798f15f
commit b5667488b3

View File

@ -23,7 +23,7 @@ api_param = raw_input("Enter Api Param: ")
reply_command = raw_input("Enter Json Reply command: ")
reply_param = raw_input("Enter Json Reply Param: ")
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(('192.168.1.6',4028))
s.connect(('127.0.0.1',4028))
s.send(json.dumps({"command":api_command,"parameter":api_param}))
response = linesplit(s)
response = response.replace('\x00','')