We want to see detailed information for a specific virtual machine image that the Glance server knows about.
We have queried the Glance server for a list of public images and the data returned includes the `uri` field for each available image. This `uri` field value contains the exact location needed to get the metadata for a specific image.
Continuing the example from above, in order to get metadata about the first public image returned, we can use the following code
..code-block:: python
from glance.client import Client
c = Client("glance.example.com", 9292)
print c.get_image_meta("http://glance.example.com/images/1")
