Skip to main content

dotvault — Python bindings

Python bindings for dotvault's public client API. They let a Python program read the per-user secrets a dotvault daemon enrolled and keeps current — talking to the same Vault, resolving a token the same way, and reading from the exact kv/users/<user>/... path dotvault writes to.

The package is a thin ctypes wrapper over dotvault's Go client package compiled to a shared library with go build -buildmode=c-shared. Connectivity, token precedence, the OS-user identity convention, and the path layout all come from the one canonical Go implementation rather than being re-derived in Python, so a consumer can't silently diverge from the daemon. The native bridge imports only the public Go client package — never dotvault's internals.

Scope

This package exposes the read-only + cached-auth subset of the Go facade, plus the socket-forwarded peer actions:

  • Client(config_path=None, identity=None) — load config, build the client.
  • authenticate_cached(timeout=None) — resolve a token (DOTVAULT_TOKEN → token file, skipped under the mtls+os auth method → the local daemon's API socket when api.enabled → a peer socket when vault.token_socket is configured → this host's client certificate under an mtls* auth method) and validate it. mtls+os keeps no Vault token at rest, so a token file found there is a leftover from a previous auth method and is deliberately ignored rather than silently used for the rest of its TTL; the certificate answers instead. The local socket is tried first because it outlives the SSH session a forwarded peer socket depends on. The socket borrow is a plain read, and presenting an already-enrolled certificate involves no browser or terminal, so both stay within the no-prompt contract: a host with no local token authenticates from either without an interactive login. Certificate auth is consumption-only here — the bindings can use a certificate the dotvault daemon or CLI enrolled, but never mint, rotate, or bootstrap one. Never prompts.
  • identity_name(), token().
  • read_user_secret(service, field, timeout=None), read_kv_field(mount, path, field, timeout=None).
  • browse(url, timeout=None), notify(level, title, body="", action_url="", timeout=None), clipboard(text, timeout=None) — ask the vault.token_socket peer to open a URL in a browser, raise a native desktop notification, or put text on the clipboard, on the workstation. For the headless topology: a Python program on a machine with no browser hands a URL, a notification, or a value to paste (a one-time token for a page browse just opened) back over the same forwarded socket it borrows tokens from. These need no local token. The peer validates/sanitizes the input; there is no local fallback (an unreachable peer raises PeerUnavailable). notify levels: info, warning, error, attention; the optional action_url is an http/https link the notification opens when clicked (on Windows; appended to the body on macOS/Linux). clipboard text is written verbatim (non-empty UTF-8, no NUL bytes, ≤ 64 KiB) and the peer logs only its length, never the content.

Interactive login (OIDC browser pop, LDAP password + MFA terminal prompts) is deliberately out of scope — driving it across an FFI boundary from inside a Python process is awkward and not what a library caller wants. Provision a token out of band (dotvault login, or the daemon) and these bindings consume it.

Install

Released wheels are published to PyPI (Linux manylinux_2_28, macOS arm64, Windows x86_64):

pip install dotvault          # or: uv pip install dotvault

The wheel is tagged py3-none-<platform>: it carries a native shared library (so it is platform-specific) but contains no CPython C-extension — it is pure ctypes — so a single wheel per OS installs on any Python ≥ 3.9, not one wheel per interpreter version. Its version is derived from the repo's git tags by setuptools-scm (the same tags that version the daemon); dotvault.__version__ reports it.

Wheels are built for glibc Linux x86_64 (manylinux_2_28), Apple-Silicon macOS, and Windows x86_64. There are currently no wheels for Linux aarch64, musl/Alpine, Intel macOS, or Windows arm64 — pip install on those reports "no matching distribution"; build from a checkout instead.

To build from a checkout instead — the tooling is uv:

make python-wheel               # -> python/dist/dotvault-*.whl  (runs `uv build`)
uv pip install python/dist/dotvault-*.whl

or an editable install (requires Go on PATH, since the bridge is compiled on install):

cd python && uv pip install -e .

Building from source needs the Go toolchain and a C compiler — go build -buildmode=c-shared is the one place dotvault uses cgo (CGO_ENABLED=1). The main dotvault binaries remain pure-Go static builds; only this binding links libc. On Windows the C compiler must be a mingw-w64 gcc (the c-shared build does not work with MSVC); GitHub's windows-latest runners ship one, but a local Windows build needs it on PATH.

Concurrency note: set DOTVAULT_TOKEN before the first use of a Client, not concurrently with reads from another thread. The bridge re-reads the facade's env vars from libc on each token-resolving call; that read/write is serialised internally, but it cannot be made safe against the host process mutating its own environment from another thread.

Quick start

import dotvault

# Defaults: dotvault's system config path, identity = the OS user.
with dotvault.Client() as c:
    try:
        c.authenticate_cached(timeout=5)          # env -> token file; no prompt
    except dotvault.LoginRequired:
        raise SystemExit("run `dotvault login` first")
    except dotvault.Unreachable:
        raise SystemExit("vault is unreachable; retry later")

    token = c.read_user_secret("gh", "oauth_token")   # -> str | None
    if token is None:
        raise SystemExit("github enrolment not present")
    use(token)

A read returns the field value, or None when the secret or field is absent — a missing path and a missing field are not distinguished (both are "not there"), matching the Go facade. Transport/authorisation failures raise instead.

Identity is the OS user, not the Vault token

dotvault derives the <user> segment of kv/users/<user>/... from the OS account the process runs as (with any DOMAIN\ prefix stripped), not from the Vault token's display_name or entity. By default a consumer must therefore run as the same OS user as the dotvault that populated the secrets — normally true for a per-user daemon.

If your process runs as a different user (a service account, a container), pass identity= to read that user's secrets:

dotvault.Client(identity="alice")

A wrong identity reads a non-existent path, which surfaces as a None read — not an error.

Errors

Every failure is a DotvaultError or a subclass:

Exception Meaning What to do
LoginRequired No usable cached token. Provision a token (dotvault login).
Unreachable Vault down / 5xx / timeout. Retry, back off.
Denied Vault rejected the read (401/403). Fail closed; the token lacks the policy.
AuthFailed A login ran but failed. Surface the auth problem (rare on this surface).
PeerUnavailable browse/notify/clipboard: no socket, peer down, or the action failed. Retry, or fall back to your own handling.
DotvaultError Anything else (config load, closed client, a peer-rejected request). Fail closed.

A not-found read is None, never an exception.

Environment variables

The bindings honour the same variables as dotvault: DOTVAULT_TOKEN (a token supplied via the environment) and VAULT_NAMESPACE. VAULT_TOKEN is deliberately ignored — it belongs to the vault CLI and must not leak into dotvault's session; use DOTVAULT_TOKEN.

The Go runtime snapshots its environment at load time, so the bridge re-reads these two variables from the live process environment on each call. That means setting os.environ["DOTVAULT_TOKEN"] after import dotvault works as you'd expect.

Development

make python-lib     # build the native bridge into the package for local use
make python-test    # build the bridge + run the Python test suite (via `uv run`)
go test ./python/bridge/...   # the Go-side bridge unit tests

make python-test and make python-wheel shell out to uv, which provisions Python and the test/build dependencies; only the Go toolchain and a C compiler need to be present beforehand.

The Python tests run fully offline — they point at a closed Vault port and assert the error categorisation — so no live Vault is needed.

Releasing

Publishing a GitHub Release with a vX.Y.Z tag drives both the Go release (release.yml) and the Python wheels: the .github/workflows/python.yml publish job builds the per-OS wheels and uploads them to PyPI via the official pypa/gh-action-pypi-publish action using Trusted Publishing (OIDC — no stored token). One-time setup before the first release: register a pending publisher on PyPI for project dotvault pointing at this repository, workflow python.yml, and environment pypi. A dev/untagged build produces a PEP 440 local version that PyPI rejects, so only exact tagged releases publish. Consider a one-off TestPyPI dry run (temporarily pointing the action at TestPyPI) before the first real release to validate the OIDC/publisher wiring.

Release files for dotvault 0.34.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for dotvault 0.34.0
File Interpreter ABI Platform
dotvault-0.34.0-py3-none-win_amd64.whl Python 3 none Windows x86-64 Details
dotvault-0.34.0-py3-none-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl Python 3 none Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
dotvault-0.34.0-py3-none-macosx_26_0_arm64.whl Python 3 none macOS 26.0+ ARM64 Details

Total release size: 27.6 MB

Release files / dotvault-0.34.0-py3-none-win_amd64.whl

Download URL dotvault-0.34.0-py3-none-win_amd64.whl
Size 11.0 MB
Tags Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
e57a511b05e599804faa301ed5594160e7cf984d999277848649c06c3efb1fbe
BLAKE2b-256 checksum
How to use checksums
acb2eb6d6d2a37e77fc4c65695159d053a71fa451f47b6b2b6378f96b811a842
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.

Transparency log

Release files / dotvault-0.34.0-py3-none-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL dotvault-0.34.0-py3-none-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 11.0 MB
Tags Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 Python 3
SHA-256 checksum
How to use checksums
a34f25e7d213889804b4260e360c75f5b6cbf430c16ff1104dd5a0c892b81dea
BLAKE2b-256 checksum
How to use checksums
a2ce0693f93c2333093c7616333ce3de377c177f38aa9c6c5bb738c51a4e5701
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.

Transparency log

Release files / dotvault-0.34.0-py3-none-macosx_26_0_arm64.whl

Download URL dotvault-0.34.0-py3-none-macosx_26_0_arm64.whl
Size 5.5 MB
Tags Python 3 macOS 26.0+ ARM64
SHA-256 checksum
How to use checksums
bc210ef1c7619916421bfc00b242670bbee7a62c97273ac3a94122b35661d0e2
BLAKE2b-256 checksum
How to use checksums
fe20e87464da31ed8301e07e1ec395545556cb94188f1677b2cb470c649d8d13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.

Transparency log

Release history Release notifications | RSS feed

0.37.0

3 release files

0.36.0

3 release files

This release

0.34.0 This release

3 release files

0.33.0

3 release files

0.32.0

3 release files

0.31.1

3 release files

0.31.0

3 release files

0.29.0

3 release files

0.28.0

3 release files

0.25.0

3 release files

0.24.0

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page