summaryrefslogtreecommitdiff
path: root/contrib/libpodpy/images.py
blob: f54736a2109273ebf15379491b671c98a4bf34c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()