podman-py icon indicating copy to clipboard operation
podman-py copied to clipboard

Python bindings for Podman's RESTful API

Results 54 podman-py issues
Sort by recently updated
recently updated
newest added

The docstring format used throughout the project is inconsistent. Sometimes they are reminiscent of Google docstrings, sometimes they look like numpy docstrings. A decision needs to be made and documented...

can we use this python client to execute commands on a container? I see this [method](https://github.com/containers/podman-py/blob/main/podman/domain/containers.py#L125) but don't know how to invoke it.

Fedora/RHEL etc. will need gating tests to be run along with the rpm updates. Something along the lines of `podman-tests` and `buildah-tests` subpackages that we already have. podman and buildah...

enhancement

a package of ours was using podman-py since back when it was the only name for the package, the recent name change got us a few packaging conflicts as well...

Hi, is the implementation of either `PodmanClient.login()` or the handling of auth_config in `images.push()` on the roadmap? Is there any information available about the future of this project that we...

Hi, I've been looking around a little bit for solid documentation for this project, as I plan to utilize it. I noticed there's no ReadTheDocs site, and `mkdocs` doesn't build...

The method `Container.wait` does not raises ReadTimeoutError. By briefly looking at the [source code](https://github.com/containers/podman-py/blob/82110d528d931acdb820ea25dfad89c12b2ffae9/podman/domain/containers.py#L471-L495) the implementation does not use the parameter timeout.

What I want to do is to get stdout/stderr of the command in exec_run line after line. I tried settung `stream=True` and also `detach=True` and then after retrieving logs, but...

Hello, I use the lib version 4.2.0, Python 3.10.4, podman 3.4.4. If I try to use client.containers.run I get the following error: ``` >>> import podman >>> >>> client =...