What if you want to get all details of a particular server using Python? Here's how you do it:
#!/usr/bin/python
import base64
import urllib
import httplib
import json
import os
from urlparse import urlparse
### --8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--
###
### insert the 'Get OpenStack Credentials' snippet here
###
### --8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--
###
### Get the full description of a server
###
# HTTP connection #2
servID = 1 # server ID
url2 = apiurlt[1]
params2 = urllib.urlencode({})
headers2 = { "X-Auth-Token":apitoken, "Content-type":"application/json" }
if (usehttps == True):
conn2 = httplib.HTTPSConnection(url2, key_file='../cert/priv.pem', cert_file='../cert/srv_test.crt')
else:
conn2 = httplib.HTTPConnection(url2)
conn2.request("GET", "%s/servers/%s" % (apiurlt[2], servID), params2, headers2)
# HTTP response #2
response2 = conn2.getresponse()
data2 = response2.read()
dd2 = json.loads(data2)
conn2.close()
print dd2
