You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
867 B
33 lines
867 B
"""A client for communicating with a Podman server.""" |
|
|
|
from __future__ import absolute_import |
|
|
|
from pbr.version import VersionInfo |
|
|
|
from .client import Client |
|
from .libs import FoldedString, datetime_format, datetime_parse |
|
from .libs.errors import (ContainerNotFound, ErrorOccurred, ImageNotFound, |
|
InvalidState, NoContainerRunning, NoContainersInPod, |
|
PodContainerError, PodmanError, PodNotFound) |
|
|
|
assert FoldedString |
|
|
|
try: |
|
__version__ = VersionInfo("podman") |
|
except Exception: # pylint: disable=broad-except |
|
__version__ = '0.0.0' |
|
|
|
__all__ = [ |
|
'Client', |
|
'ContainerNotFound', |
|
'datetime_format', |
|
'datetime_parse', |
|
'ErrorOccurred', |
|
'ImageNotFound', |
|
'InvalidState', |
|
'NoContainerRunning', |
|
'NoContainersInPod', |
|
'PodContainerError', |
|
'PodmanError', |
|
'PodNotFound', |
|
]
|
|
|