We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have an Arch Linux environment with the following podman pulled images:
docker.io/library/python:3.12.2-bullseye docker.io/nwodtuhs/exegol:osint
I wrote a simple Python script to filter the images list by name:
import podman from podman import PodmanClient client = podman.from_env() print("Podman client:", client) image_name="nwodtuhs/exegol:osint" images = client.images.list(name=image_name, filters={"dangling": False}) print(images)
but I get:
[<Image: 'docker.io/library/python:3.12.2-bullseye'>, <Image: 'docker.io/nwodtuhs/exegol:osint'>]
so, it does not filter the result by name.
name
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I have an Arch Linux environment with the following podman pulled images:
I wrote a simple Python script to filter the images list by name:
but I get:
so, it does not filter the result by
name
.The text was updated successfully, but these errors were encountered: