A simple Docker HTTP API wrapper written with asyncio and aiohttp.
Project description
A simple Docker HTTP API wrapper written with asyncio and aiohttp.
Installation
pip install aiodocker
Development
The recommended developer setup uses uv, which manages the virtualenv and resolves dependencies from the committed uv.lock so every contributor and CI job builds against the same versions.
# Install uv first: https://docs.astral.sh/uv/getting-started/installation/
uv sync --extra dev --extra lint --extra test --extra doc
uv run pre-commit install
The Makefile helpers (make develop, make install, make lint, make test) all assume uv.
Using pip instead (fallback)
If you can’t install uv, you can still bootstrap with pip. The resulting environment isn’t pinned to uv.lock, so versions may drift from CI.
python -m venv .venv && source .venv/bin/activate
pip install -U pip
pip install -e '.[dev,lint,test,doc]' # in zsh, you need to escape brackets
pre-commit install
Running tests
# Run all tests
make test
# Run individual tests
uv run pytest tests/test_images.py
Building packages
NOTE: Usually you don’t need to run this step by yourself.
uv build
Documentation
Examples
import asyncio
import aiodocker
async def list_things(docker):
print('== Images ==')
for image in (await docker.images.list()):
tags = image['RepoTags'][0] if image['RepoTags'] else ''
print(image['Id'], tags)
print('== Containers ==')
for container in (await docker.containers.list()):
print(f" {container._id}")
async def run_container(docker):
print('== Running a hello-world container ==')
container = await docker.containers.create_or_replace(
config={
'Cmd': ['/bin/ash', '-c', 'echo "hello world"'],
'Image': 'alpine:latest',
},
name='testing',
)
await container.start()
logs = await container.log(stdout=True)
print(''.join(logs))
await container.delete(force=True)
async def main():
docker = aiodocker.Docker()
await list_things(docker)
await run_container(docker)
await docker.close()
if __name__ == "__main__":
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiodocker-0.27.0.tar.gz.
File metadata
- Download URL: aiodocker-0.27.0.tar.gz
- Upload date:
- Size: 328.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74586f4929aee4563ee7db50996a1a39ac35e06c80701daad31f94aadb6551c7
|
|
| MD5 |
17196658551f51c1ccc683084e24ed7b
|
|
| BLAKE2b-256 |
a819f07d8532d7489ed8629847d004d0bbd286287286a76828be43aca7e6b106
|
Provenance
The following attestation bundles were made for aiodocker-0.27.0.tar.gz:
Publisher:
ci-cd.yml on aio-libs/aiodocker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiodocker-0.27.0.tar.gz -
Subject digest:
74586f4929aee4563ee7db50996a1a39ac35e06c80701daad31f94aadb6551c7 - Sigstore transparency entry: 1640095221
- Sigstore integration time:
-
Permalink:
aio-libs/aiodocker@c7aa432f847da092d9b7db910124f0ce806944da -
Branch / Tag:
refs/tags/v0.27.0 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@c7aa432f847da092d9b7db910124f0ce806944da -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiodocker-0.27.0-py3-none-any.whl.
File metadata
- Download URL: aiodocker-0.27.0-py3-none-any.whl
- Upload date:
- Size: 55.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c55647bdcaf546dd4fc9b52794a9510575e126888dff478a9185f580a40dc45e
|
|
| MD5 |
90ac55a54c183c3d71968d72f243a4a1
|
|
| BLAKE2b-256 |
de54cd3aa680c9653b8708e164d610948e7a9aa50bba619705ac6169f61b0837
|
Provenance
The following attestation bundles were made for aiodocker-0.27.0-py3-none-any.whl:
Publisher:
ci-cd.yml on aio-libs/aiodocker
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiodocker-0.27.0-py3-none-any.whl -
Subject digest:
c55647bdcaf546dd4fc9b52794a9510575e126888dff478a9185f580a40dc45e - Sigstore transparency entry: 1640095312
- Sigstore integration time:
-
Permalink:
aio-libs/aiodocker@c7aa432f847da092d9b7db910124f0ce806944da -
Branch / Tag:
refs/tags/v0.27.0 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@c7aa432f847da092d9b7db910124f0ce806944da -
Trigger Event:
push
-
Statement type: