Files
baude 39a7a773a6 varlink images
implement varlink image functions for working with libpod with the exception of a
couple due to incompletions on the libpod side of things (build).

also, created a first pass at a libpodpy package which will stand as a client to
working with libpod's varlink methods using python.

Signed-off-by: baude <bbaude@redhat.com>

Closes: 
Approved by: baude
2018-04-26 19:14:44 +00:00

16 lines
349 B
Python

class Images(object):
"""
The Images class deals with image related functions for libpod.
"""
def __init__(self, client):
self.client = client
def List(self):
"""
Lists all images in the libpod image store
return: a list of ImageList objects
"""
return self.client.ListImages()