Skip to main content

dockpy-sdk - Docker SDK with async operations

Project description

dockpy-sdk

Pure Python Docker SDK with async operations and direct Docker Engine API access.

Installation

pip install dockpy-sdk

Features

  • Async/Await: Built on asyncio and httpx
  • Direct API: No subprocess calls, pure HTTP/Unix socket
  • Container Management: Create, start, stop, logs, inspect, and more
  • Image Management: Pull, push, build, tag, remove, and more
  • Type Safe: 100% type hints with mypy support
  • Well Tested: Comprehensive test coverage

Quick Start

from dockpysdk.client import AsyncDockerClient

async def main():
    async with AsyncDockerClient() as client:
        # List containers
        containers = await client.containers.list()
        for container in containers:
            print(f"{container.id}: {container.name}")

import asyncio
asyncio.run(main())

Container Operations

# Create and run a container
container = await client.containers.create(
    "nginx:latest",
    name="my-web-server"
)
await container.start()

# Get logs
logs = await client.containers.logs(container.id)

# Stop and remove
await container.stop()
await container.remove()

Image Operations

# Pull image
image = await client.images.pull("python:3.10")

# List images
images = await client.images.list()

# Build image
async for line in await client.images.build(dockerfile="Dockerfile"):
    print(line)

Documentation

See the main repository for full documentation.

License

Apache License 2.0 - See LICENSE file for details.

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

dockpy_sdk-0.0.1rc1.tar.gz (29.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dockpy_sdk-0.0.1rc1-py3-none-any.whl (37.1 kB view details)

Uploaded Python 3

File details

Details for the file dockpy_sdk-0.0.1rc1.tar.gz.

File metadata

  • Download URL: dockpy_sdk-0.0.1rc1.tar.gz
  • Upload date:
  • Size: 29.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for dockpy_sdk-0.0.1rc1.tar.gz
Algorithm Hash digest
SHA256 29c86d83e2130a12c31f096c7f4fa1e705dd8ad206e7ad3c6c16477307ff28c1
MD5 a313b397314f50221636b495324022fc
BLAKE2b-256 5e6c68242baf6a8fccae122827971cae073b31b8936647fd93220d2c6da3dd6d

See more details on using hashes here.

File details

Details for the file dockpy_sdk-0.0.1rc1-py3-none-any.whl.

File metadata

  • Download URL: dockpy_sdk-0.0.1rc1-py3-none-any.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for dockpy_sdk-0.0.1rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 bdb688e25fa9237e63d0c7e29c870517b2144f8d68491392581ea9f9711453fa
MD5 243da26eb42317f6ac6da369331e10f9
BLAKE2b-256 14202dbac57d0960859f0e266a2fddbb0accbbc69e31905f17ceaa2fd147ab17

See more details on using hashes here.

Supported by

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