Docker API client for asyncio
Project description
AsyncIO bindings for docker.io
A simple Docker HTTP API wrapper written with asyncio and aiohttp.
Installation
pip install aiodocker
Documentation
Examples
import asyncio
import aiodocker
async def list_things():
docker = aiodocker.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}")
await docker.close()
async def run_container():
docker = aiodocker.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)
await docker.close()
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(list_things())
loop.run_until_complete(run_container())
loop.close()
Changes
0.8.1 (2017-08-30)
Misc
#44, #46
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
aiodocker-0.8.5.tar.gz
(31.1 kB
view details)
Built Distribution
aiodocker-0.8.5-py3-none-any.whl
(22.1 kB
view details)
File details
Details for the file aiodocker-0.8.5.tar.gz
.
File metadata
- Download URL: aiodocker-0.8.5.tar.gz
- Upload date:
- Size: 31.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96e095f9109698f2ea62aa70999835d61339d8c50a909c9d934613027277c07a |
|
MD5 | 0cb5b9182b745a5f57952802ff181468 |
|
BLAKE2b-256 | 598ba8e834e84e2238bb665c61aeb6e2efd79a92d81c8b6ffda896ae2278bb06 |
Provenance
File details
Details for the file aiodocker-0.8.5-py3-none-any.whl
.
File metadata
- Download URL: aiodocker-0.8.5-py3-none-any.whl
- Upload date:
- Size: 22.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebd47017741ed2e2899a5afe60ebd9769115c1e32aea0386b845179a101a6a8c |
|
MD5 | 68dfb24ccc8d97e7ff430b5394139fea |
|
BLAKE2b-256 | fd1bfe96c5ba63946cc9bc1a981e4eccf356202f04e6348010296d0d5fe62c91 |