24 lines
429 B
Python
24 lines
429 B
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import json
|
||
|
import urllib2
|
||
|
import sys
|
||
|
import time
|
||
|
import host
|
||
|
|
||
|
address = 'http://'+host.concordia_host
|
||
|
if len(host.concordia_port) > 0:
|
||
|
address += ':'+host.concordia_port
|
||
|
|
||
|
|
||
|
data = {
|
||
|
'operation': 'getTmsInfo'
|
||
|
}
|
||
|
|
||
|
req = urllib2.Request(address)
|
||
|
req.add_header('Content-Type', 'application/json')
|
||
|
response = json.loads(urllib2.urlopen(req, json.dumps(data)).read())
|
||
|
|
||
|
print response
|