forked from CristieNordic/SpectrumProtectRest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunExample.py
35 lines (28 loc) · 865 Bytes
/
RunExample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import spectrumprotect as sp
import json
def formatJson(output):
r = json.loads(output.text)
return (r)
protocol = 'https'
tcpaddress = '10.0.0.1'
tcpport = '11090'
instance = 'SERVER1'
username = 'username'
password = 'myPassword'
# Print Test Command that is Query Status
command = 'query status'
try:
testCmd = ocInstanceUrl.testConnection(ocInstanceUrl, username, password, command)
response = formatJson(testCmd)
print(response)
except OSError:
print('Ooops, something went wrong... Error: ' + ocerror)
try:
# Running my own command
print ("\nLet's run your own command now\n")
myCommand = 'query node *'
myCmd = ocInstanceUrl.runCmd(ocInstanceUrl, username, password, myCommand)
response = formatJson(myCmd)
print (response)
except OSError:
print('Ooops, something went wrong... Error: ' + ocerror)