Skip to main content

Vault for storing locally encrypted data in S3 using KMS keys

Project description

nitor-vault

Python Vault CLI and library implementation using the Rust vault exposed as a Python extension module.

Encrypt data using client-side encryption with AWS KMS keys.

See the repo root readme for more general information.

Vault CLI

Encrypted AWS key-value storage utility

Usage: vault [OPTIONS] [COMMAND]

Commands:
  all, -a, --all            List available secrets [aliases: a, list, ls]
  completion, --completion  Generate shell completions
  delete, -d, --delete      Delete an existing key from the store [aliases: d]
  describe, --describe      Print CloudFormation stack parameters for current configuration
  decrypt, -y, --decrypt    Directly decrypt given value [aliases: y]
  encrypt, -e, --encrypt    Directly encrypt given value [aliases: e]
  exists, --exists          Check if a key exists
  info, --info              Print vault information
  id                        Print AWS user account information
  stack                     Commands for cloudformation stack
  init, -i, --init          Initialize a new KMS key and S3 bucket. [aliases: i]
  lookup, -l, --lookup      Output secret value for given key [aliases: l]
  store, -s, --store        Store a new key-value pair. [aliases: s]
  update, -u, --update      Update the vault CloudFormation stack. [aliases: u]
  help                      Print this message or the help of the given subcommand(s)

Options:
  -b, --bucket <BUCKET>    Override the bucket name [env: VAULT_BUCKET=]
  -k, --key-arn <ARN>      Override the KMS key ARN [env: VAULT_KEY=]
  -p, --prefix <PREFIX>    Optional prefix for key name [env: VAULT_PREFIX=]
  -r, --region <REGION>    Specify AWS region for the bucket [env: AWS_REGION=]
      --vaultstack <NAME>  Specify CloudFormation stack name to use [env: VAULT_STACK=]
      --id <ID>            Specify AWS IAM access key ID
      --secret <SECRET>    Specify AWS IAM secret access key
      --profile <PROFILE>  Specify AWS profile name to use [env: AWS_PROFILE=]
  -q, --quiet              Suppress additional output and error messages
  -h, --help               Print help (see more with '--help')
  -V, --version            Print version

Install

From PyPI

Use pipx or uv to install the Python vault package from PyPI globally in an isolated environment.

pipx install nitor-vault
# or
uv tool install nitor-vault

The command vault should now be available in path.

From source

Build and install locally from source code using pip. This requires a Rust toolchain to be able to build the Rust library. From the repo root:

cd python-pyo3
pip install .
# or with uv
uv pip install .

Check the command is found in path. If you ran the install command inside a virtual env, it will only be installed inside the venv, and will not be available in path globally.

which -a vault

Vault library

This Python package can also be used as a Python library to interact with the Vault directly from Python code.

Add the nitor-vault package to your project dependencies, or install directly with pip.

Example usage:

from n_vault import Vault

if not Vault().exists("key"):
    Vault().store("key", "value")

keys = Vault().list_all()

value = Vault().lookup("key")

if Vault().exists("key"):
    Vault().delete("key")

# specify vault parameters
vault = Vault(vault_stack="stack-name", profile="aws-credentials-name")
value = vault.lookup("key")

Development

Uses:

  • PyO3 for creating a native Python module from Rust code.
  • Maturin for building and packaging the Python module from Rust.

Workflow

You can use uv or the traditional Python and pip combo.

First, create a virtual env:

# uv
uv sync --all-extras
# pip
python3 -m venv .venv
source .venv/bin/activate
pip install '.[dev]'

After making changes to Rust code, build and install module:

# uv
uv run maturin develop
# venv
maturin develop

Run Python CLI:

# uv
uv run python/n_vault/cli.py -h
# venv
python3 python/n_vault/cli.py -h

Install and run vault inside virtual env:

# uv
uv pip install .
uv run vault -h
# venv
pip install .
vault -h

Code Formatting and Linting

This project uses Ruff for code formatting and linting.

Format code, apply lint fixes, and re-format:

uv run ruff format . && uv run ruff check --fix . && uv run ruff format .

Or run the commands separately:

# Format code
uv run ruff format .

# Run linter and apply auto-fixes
uv run ruff check --fix .

Type Checking

This project uses ty for type checking.

Run type checker:

uv run ty check

Updating dependencies

Update all Python dependencies to latest versions:

uv lock --upgrade
uv sync

To update a specific package:

uv lock --upgrade-package <package-name>
uv sync

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

nitor_vault-2.8.1.tar.gz (70.5 kB view details)

Uploaded Source

Built Distributions

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

nitor_vault-2.8.1-cp314-cp314t-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ x86-64

nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ARM64

nitor_vault-2.8.1-cp314-cp314t-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

nitor_vault-2.8.1-cp314-cp314t-macosx_10_12_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

nitor_vault-2.8.1-cp39-abi3-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.9+Windows x86-64

nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ x86-64

nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ ARM64

nitor_vault-2.8.1-cp39-abi3-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

nitor_vault-2.8.1-cp39-abi3-macosx_10_12_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file nitor_vault-2.8.1.tar.gz.

File metadata

  • Download URL: nitor_vault-2.8.1.tar.gz
  • Upload date:
  • Size: 70.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1.tar.gz
Algorithm Hash digest
SHA256 a5a9b01a93fbda390ba46dafe436d9695ef4fa93ebf1bdf88bc98b85b278b4ca
MD5 80f52d4a1e1aeda5378e454fd4f06bb7
BLAKE2b-256 ce34f0cd1942844976943d951cf41b97dac2b88bc200cee0ebffea946c7f171d

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c34a5b80741506016da61e3293ab54027c6d771a945a95e65c6a77bf272ddd50
MD5 94885581c9d71386ae160312ab2e52f5
BLAKE2b-256 a8af861f5b2f1bb550cecfe6ed03b5c5bdb33c67e71e5c6eba2af64113a658ae

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 994879bef00b4e52e441eaf157c5ddaa422bb03bcc7bc592dbcb4284f72c21be
MD5 62dec44ec7d2f3066df9fbdfdc200e05
BLAKE2b-256 470d62b2fce9673ad270684b4603eef943f7ba070890cbc70dcbab287793418f

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 adb651abf2157597a497de111d4b9c85a2280954258e078211622fe95f00f122
MD5 ca281370c5eda68ef0fd1ec6e66653c1
BLAKE2b-256 f40c876a522b800436ac5261c51f8b4efb7d9c0bcd8b2f8fc2aaac8334b61cab

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ff14d6f1ae9f582285bd5dac47852f3c112a27257dec52d35dc8b7b482ea0760
MD5 89e9e3dba4ca2866a1a573c64f06ecbd
BLAKE2b-256 ebadf479ac6c19609de92a06e88837c1d5bd8683af5156588bc08b18e6dbbba8

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp314-cp314t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 d4b215a20f24641a7c3c920ffb24e4e84e2b81210b2666db2dcb280019361938
MD5 023d91ee58e29ab1ff7012e97d8e01f5
BLAKE2b-256 9a16826bbd40441e89cbd403ce0ec250f84c3df37de60074f06e8893c81ed566

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d93f3c647818404ebe8e81b2a53c134fddbcc09fab35a7fed6c691a77f8a0ea1
MD5 16d148e8d988a4f776e03c240a2860e0
BLAKE2b-256 231a6baa58b53eba6de881dcd98cf00adf8d3e07db18bced197d1cbf6851c0fe

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d8488a2c426d8c3bdd9e0dbd6530b1f816bb777de2b137a920574d719b830ba
MD5 eb8281ee744054c6c8b98a13d0713f79
BLAKE2b-256 b47799c85ecb37e5e3a4594d8d58d06c98baa87babd0f1f4fff61b6260a858b4

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 ddcd5557bb65d8c26006011ece3367c292f34bfb9796dc542656300706442be2
MD5 9d110b54726f61cadb5aef77a9f77fd4
BLAKE2b-256 b5a48e057cd97b0d9066a415693334fb0481b6326b5459cb061c039fb89de4de

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13c66c214573addcd238e53d0bee59940eed9a5fe23160f05a5808f51147c0d8
MD5 c41210c93c2293c1be7b3224c943d077
BLAKE2b-256 5f2c952b547718127be63e8678a7f0af6e154cf9f18929c6a1a4d29551022ce0

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e832dee23f5a5ea420dfd06b3f5d4dbcc01a3cd441465098f31d45f5928b063
MD5 9a7c7c82c13315c4869073d2d931380b
BLAKE2b-256 d1151e0cd3823e2e248c803ab38f59d6f019dfccc385c0b22c9543a19959a081

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d5e0c1ae8c16f5e99f293b126e19ac0b9d087f4032935e5960c35e3553a1d65b
MD5 172b33ee3eea96c698ef8b9a8a960f61
BLAKE2b-256 36db3e125ce3a665c91147d5c1c706e8f9fc5579c3a8b947e281b4602e7b80a8

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_aarch64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_aarch64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.34+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp39-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 74c1a4c84dea8fc823181fa99d18b685a30c2b21ad631421b9e4bc55cb50d1ff
MD5 478471ecc364da91e421e8c7b7dcc47b
BLAKE2b-256 25cafd4dea5eef123c5f4d574101fd029486e6ba1f1195718d257e2c01b7fc93

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f5a3bc40e1399224783cf2f86ecf0dc96c5606f3e1bfaaf3858f2d59948d186
MD5 9f85f64d676e7e84c7fb131771b78c96
BLAKE2b-256 b7243d42c648ce5456b7a6bd943d8644ffac8d57dfe13cfd7c302a3ab8447fab

See more details on using hashes here.

File details

Details for the file nitor_vault-2.8.1-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: nitor_vault-2.8.1-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nitor_vault-2.8.1-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d7d1c5f8580cfc3c53428df2fdf0d227888da22158e15889093c13b51348785e
MD5 c666fb72ca1b4c6543eb0b9678fbc8d8
BLAKE2b-256 9c30865a1b0d8e46cb17c8fbd324a694a2f397eae0ebd9fe235cb15c55ea2321

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