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.11.0.tar.gz
(33.8 kB
view details)
Built Distribution
File details
Details for the file aiodocker-0.11.0.tar.gz
.
File metadata
- Download URL: aiodocker-0.11.0.tar.gz
- Upload date:
- Size: 33.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f80c2684295af80ca146cadf8c6be3d918763e4c761af8089db3ad84bd6c444 |
|
MD5 | d59c6da9daa6c1104532e068399a4ffd |
|
BLAKE2b-256 | 5e2828b01d2ba36833b779cfc92a6abdbfd7996eed53f0a82a744309e3c4a22b |
Provenance
File details
Details for the file aiodocker-0.11.0-py3-none-any.whl
.
File metadata
- Download URL: aiodocker-0.11.0-py3-none-any.whl
- Upload date:
- Size: 24.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8857e21bc64e7742547d8983d8c297fb5566c566b78cea7b370fd43b7c259172 |
|
MD5 | a7b4611600f0ac929b35cd2b9a5cdebf |
|
BLAKE2b-256 | 68cbbeca414e8c9e7d605e7f1ae97b3815f8f5bfae75b3f613b90eb2361df978 |