Skip to main content

mv37-workdir

Python SDK for workdir.

pip install mv37-workdir
import time
from workdir import Client

workdir = Client("https://api.workdir.dev", api_key="...")

box = workdir.sandboxes.create()
print(box.exec("echo hello").stdout)

job = box.exec("pytest", background=True)
status = box.exec_status(job.cmd_id)
while status.state == "running":
    time.sleep(1)
    status = box.exec_status(job.cmd_id)
print(box.exec_logs(job.cmd_id))
box.delete()
workdir.templates.create(
    "node-app",
    create={
        "image": "node-python",
        "resources": {"cpu": 2, "memory_mb": 4096, "disk_gb": 16},
        "startup": {"git": {"url": "https://github.com/acme/app.git", "ref": "main"}},
    },
)
boxes = workdir.templates.spawn("node-app", count=2)

run = workdir.agent_runs.create(
    template="node-app",
    repo={"url": "https://github.com/acme/app.git", "ref": "main"},
    agent="codex",
    model="gpt-5",
    api_key_secret="OPENAI_API_KEY",
    prompt="Fix the failing tests and leave a clean diff.",
    task={"name": "Fix failing tests", "labels": ["delegated"]},
    verify=[{"name": "tests", "run": "pnpm test", "fail_run": True}],
    github={"token_secret": "GITHUB_TOKEN", "draft": True},
)
finished = workdir.agent_runs.wait(run.id)
print(workdir.agent_runs.report(finished.id).summary)

The SDK uses only the Python standard library.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mv37_workdir-0.3.2.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

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

mv37_workdir-0.3.2-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file mv37_workdir-0.3.2.tar.gz.

File metadata

  • Download URL: mv37_workdir-0.3.2.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mv37_workdir-0.3.2.tar.gz
Algorithm Hash digest
SHA256 bd60a3e23270af3dcfa3120977030d317a60bc7719eb6095574067c473b78a30
MD5 c8b062f11090f2c95dfdd95d8ab82bb0
BLAKE2b-256 6a3d79ab6a158f14aea1bff1f10f317794afee8d3bc1398888130be0f844b780

See more details on using hashes here.

Provenance

The following attestation bundles were made for mv37_workdir-0.3.2.tar.gz:

Publisher: publish-sdks.yml on mv37-org/workdir

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mv37_workdir-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: mv37_workdir-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 6.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mv37_workdir-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 804bd84ed1eeacb59b86c8ac575de07bdcf44a31bfebdbd9765176c08a7750a1
MD5 b197874c045f06aeb23e85bc75864083
BLAKE2b-256 d5e60d2b5ed967c7b51d1141146ec5db34b470b38a9351454c98e69ae0e28219

See more details on using hashes here.

Provenance

The following attestation bundles were made for mv37_workdir-0.3.2-py3-none-any.whl:

Publisher: publish-sdks.yml on mv37-org/workdir

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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