├── .gitignore ├── .pylintrc ├── .travis.yml ├── AUTHORS ├── CHANGES.txt ├── CODE-OF-CONDUCT.md ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── SECURITY.md ├── examples ├── eg_attach.py ├── eg_containers_by_image.py ├── eg_image_list.py ├── eg_inspect_fedora.py ├── eg_latest_containers.py ├── eg_new_image.py ├── eg_rm.py └── run_example.sh ├── podman ├── __init__.py ├── client.py └── libs │ ├── __init__.py │ ├── _containers_attach.py │ ├── _containers_start.py │ ├── containers.py │ ├── errors.py │ ├── images.py │ ├── pods.py │ ├── system.py │ ├── tunnel.py │ └── volumes.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── test ├── __init__.py ├── podman_testcase.py ├── retry_decorator.py ├── test_client.py ├── test_containers.py ├── test_images.py ├── test_libs.py ├── test_pods_ctnrs.py ├── test_pods_no_ctnrs.py ├── test_runner.sh ├── test_system.py └── test_tunnel.py ├── tests └── libs │ ├── __init__.py │ └── test_pod.py ├── tools └── synchronize.sh └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- 1 | v0.1.0, 2018-05-11 -- Initial release. 2 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/eg_attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/eg_attach.py -------------------------------------------------------------------------------- /examples/eg_containers_by_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/eg_containers_by_image.py -------------------------------------------------------------------------------- /examples/eg_image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/eg_image_list.py -------------------------------------------------------------------------------- /examples/eg_inspect_fedora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/eg_inspect_fedora.py -------------------------------------------------------------------------------- /examples/eg_latest_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/eg_latest_containers.py -------------------------------------------------------------------------------- /examples/eg_new_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/eg_new_image.py -------------------------------------------------------------------------------- /examples/eg_rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/eg_rm.py -------------------------------------------------------------------------------- /examples/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/examples/run_example.sh -------------------------------------------------------------------------------- /podman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/__init__.py -------------------------------------------------------------------------------- /podman/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/client.py -------------------------------------------------------------------------------- /podman/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/__init__.py -------------------------------------------------------------------------------- /podman/libs/_containers_attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/_containers_attach.py -------------------------------------------------------------------------------- /podman/libs/_containers_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/_containers_start.py -------------------------------------------------------------------------------- /podman/libs/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/containers.py -------------------------------------------------------------------------------- /podman/libs/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/errors.py -------------------------------------------------------------------------------- /podman/libs/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/images.py -------------------------------------------------------------------------------- /podman/libs/pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/pods.py -------------------------------------------------------------------------------- /podman/libs/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/system.py -------------------------------------------------------------------------------- /podman/libs/tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/tunnel.py -------------------------------------------------------------------------------- /podman/libs/volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/podman/libs/volumes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/podman_testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/podman_testcase.py -------------------------------------------------------------------------------- /test/retry_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/retry_decorator.py -------------------------------------------------------------------------------- /test/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_client.py -------------------------------------------------------------------------------- /test/test_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_containers.py -------------------------------------------------------------------------------- /test/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_images.py -------------------------------------------------------------------------------- /test/test_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_libs.py -------------------------------------------------------------------------------- /test/test_pods_ctnrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_pods_ctnrs.py -------------------------------------------------------------------------------- /test/test_pods_no_ctnrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_pods_no_ctnrs.py -------------------------------------------------------------------------------- /test/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_runner.sh -------------------------------------------------------------------------------- /test/test_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_system.py -------------------------------------------------------------------------------- /test/test_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/test/test_tunnel.py -------------------------------------------------------------------------------- /tests/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/libs/test_pod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/tests/libs/test_pod.py -------------------------------------------------------------------------------- /tools/synchronize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/tools/synchronize.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/python-podman/HEAD/tox.ini --------------------------------------------------------------------------------