Skip to main content

Docker API client for asyncio

Project description

AsyncIO bindings for docker.io

PyPI version Python Versions Build Status Code Coverage Chat on Gitter

A simple Docker HTTP API wrapper written with asyncio and aiohttp.

Installation

pip install aiodocker

Documentation

http://aiodocker.readthedocs.io

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


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.9.0.tar.gz (32.5 kB view details)

Uploaded Source

Built Distribution

aiodocker-0.9.0-py3-none-any.whl (23.3 kB view details)

Uploaded Python 3

File details

Details for the file aiodocker-0.9.0.tar.gz.

File metadata

  • Download URL: aiodocker-0.9.0.tar.gz
  • Upload date:
  • Size: 32.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for aiodocker-0.9.0.tar.gz
Algorithm Hash digest
SHA256 925819031be1a3b518815bcba17c08209351a7cbd1c888e1ce52631586dd24a8
MD5 fbcce2c415343ff14b7b2370f35a3638
BLAKE2b-256 5c43b74412e22efb1bef190e8e6542d02dec9c220cf63e7810a4c2b6f6d5a49b

See more details on using hashes here.

File details

Details for the file aiodocker-0.9.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aiodocker-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f7719e8f0fc9e4fa9740d3e0613d3fed40373d8a0393c9cc2251a433b5307918
MD5 e167466e69ca5dbb464cf194296835e1
BLAKE2b-256 bce13f5c1aa730b5e619c3b548d6f38ef61ea939f7d54fee65aa8bbf5348c424

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page