Skip to main content

A sandboxed bash interpreter for AI agents

Project description

Bashkit

PyPI

Sandboxed bash interpreter for Python. Native bindings to the bashkit Rust core for fast, in-process execution with a virtual filesystem.

Homepage: bashkit.sh

Features

  • Sandboxed execution in-process, without containers or subprocess orchestration
  • Full bash syntax: variables, pipelines, redirects, loops, functions, and arrays
  • 164 built-in commands including grep, sed, awk, jq, curl, and find
  • Persistent interpreter state across calls, including variables, cwd, and VFS contents
  • Direct virtual filesystem APIs, constructor mounts, and live host mounts
  • Snapshot and restore support on Bash and BashTool
  • AI integrations for LangChain, PydanticAI, and Deep Agents

Installation

pip install bashkit

# Optional integrations
pip install 'bashkit[langchain]'
pip install 'bashkit[pydantic-ai]'
pip install 'bashkit[deepagents]'

Quick Start

Sync Execution

from bashkit import Bash

bash = Bash()

result = bash.execute_sync("echo 'Hello, World!'")
print(result.stdout)  # Hello, World!

bash.execute_sync("export APP_ENV=dev")
print(bash.execute_sync("echo $APP_ENV").stdout)  # dev

Async Execution

import asyncio
from bashkit import Bash


async def main():
    bash = Bash()

    result = await bash.execute("echo -e 'banana\\napple\\ncherry' | sort")
    print(result.stdout)  # apple\nbanana\ncherry

    await bash.execute("printf 'data\\n' > /tmp/file.txt")
    saved = await bash.execute("cat /tmp/file.txt")
    print(saved.stdout)  # data


asyncio.run(main())

Configuration

Constructor Options

from bashkit import Bash

bash = Bash(
    username="agent",
    hostname="sandbox",
    cwd="/home/agent",
    env={"LANG": "en_US.UTF-8"},
    max_commands=1000,
    max_loop_iterations=10000,
    max_memory=10 * 1024 * 1024,
    timeout_seconds=30,
    python=False,
)

Live Output

from bashkit import Bash

bash = Bash()

def on_output(stdout: str, stderr: str) -> None:
    if stdout:
        print(stdout, end="", flush=True)
    if stderr:
        print(stderr, end="", flush=True)

result = bash.execute_sync(
    "for i in 1 2 3; do echo out-$i; echo err-$i >&2; done",
    on_output=on_output,
)

on_output is optional and fires during execution with chunked (stdout, stderr) pairs. Chunks are not line-aligned or exact terminal interleaving, but concatenating all callback chunks matches the final ExecResult.stdout and ExecResult.stderr. The handler must be synchronous; async def callbacks and callbacks that return awaitables are rejected.

Virtual Filesystem

Direct Methods on Bash and BashTool

from bashkit import Bash

bash = Bash()
bash.mkdir("/data", recursive=True)
bash.write_file("/data/config.json", '{"debug": true}\n')
bash.append_file("/data/config.json", '{"trace": false}\n')

print(bash.read_file("/data/config.json"))
print(bash.exists("/data/config.json"))
print(bash.ls("/data"))
print(bash.glob("/data/*.json"))

The same direct filesystem helpers are available on BashTool().

FileSystem Accessor

from bashkit import Bash

bash = Bash()
fs = bash.fs()

fs.mkdir("/data", recursive=True)
fs.write_file("/data/blob.bin", b"\x00\x01hello")
fs.copy("/data/blob.bin", "/data/backup.bin")

assert fs.read_file("/data/blob.bin") == b"\x00\x01hello"
assert fs.exists("/data/backup.bin")

Native Extension Interop

from bashkit import Bash, FileSystem

source = FileSystem()
source.write_file("/org/repo/README.md", b"hello\n")

capsule = source.to_capsule()
imported = FileSystem.from_capsule(capsule)

bash = Bash()
bash.mount("/workspace", imported)
print(bash.execute_sync("cat /workspace/org/repo/README.md").stdout)

to_capsule() / from_capsule() exchange a versioned stable ABI handle so separate PyO3 extensions do not need to share bashkit's internal Rust object layout. Native extensions should depend on bashkit with the interop feature and use bashkit::interop::fs.

Pre-Initialized Files

from bashkit import Bash

bash = Bash(files={
    "/config/static.txt": "ready\n",
    "/config/report.json": lambda: '{"ok": true}\n',
})

print(bash.execute_sync("cat /config/static.txt").stdout)
print(bash.execute_sync("cat /config/report.json").stdout)

Real Filesystem Mounts

from bashkit import Bash

bash = Bash(mounts=[
    {"host_path": "/path/to/data", "vfs_path": "/data"},
    {"host_path": "/path/to/workspace", "vfs_path": "/workspace", "writable": True},
])

print(bash.execute_sync("ls /workspace").stdout)

Live Mounts

from bashkit import Bash, FileSystem

bash = Bash()
workspace = FileSystem.real("/path/to/workspace", writable=True)

bash.mount("/workspace", workspace)
bash.execute_sync("echo 'hello' > /workspace/demo.txt")
bash.unmount("/workspace")

Network Access

curl, wget, and http are gated behind an explicit allowlist. Without a network= kwarg outbound HTTP is disabled (the secure default). Pass an explicit allowlist or allow_all=True to opt in:

from bashkit import Bash

# Per-host allowlist - all other URLs are blocked.
bash = Bash(network={"allow": ["https://api.github.com", "https://api.openai.com/v1"]})

# Allow every URL (mirrors NetworkAllowlist::allow_all() in the Rust core).
trusted = Bash(network={"allow_all": True})

# Disable the SSRF guard if you legitimately need to reach a private IP.
local = Bash(network={"allow": ["http://127.0.0.1:8080"], "block_private_ips": False})

network= is also accepted by BashTool(...) and persists across reset() and from_snapshot(...). An explicit network={"allow": []} blocks every URL but is distinct from omitting network= entirely.

Credential injection

Inject per-host credentials transparently so scripts never see the real secret. Two modes are supported (mirroring the Rust BashBuilder::credential and BashBuilder::credential_placeholder APIs):

from bashkit import Bash

bash = Bash(
    network={
        "allow": ["https://api.github.com", "https://api.openai.com/v1"],
        # Direct injection — script has no knowledge of the credential.
        "credentials": [
            {
                "pattern": "https://api.github.com",
                "kind": "bearer",
                "token": "ghp_xxx",
            },
        ],
        # Placeholder mode — script sees an opaque placeholder via env var.
        "credential_placeholders": [
            {
                "env": "OPENAI_API_KEY",
                "pattern": "https://api.openai.com",
                "kind": "bearer",
                "token": "sk-real-key",
            },
        ],
    },
)
# Scripts can: curl -s https://api.github.com/repos/foo/bar
#   → Authorization: Bearer ghp_xxx is added on the wire.
# Scripts can: curl -s -H "Authorization: Bearer $OPENAI_API_KEY" \
#                   https://api.openai.com/v1/chat
#   → the placeholder is replaced with sk-real-key on the wire.

Each credential dict accepts kind: "bearer" (token), kind: "header" (name, value), or kind: "headers" (a list of (name, value) pairs). Injected headers overwrite script-provided headers with the same name to prevent credential spoofing. Phase 2 of #1348 covers the credential surface; request callbacks and bot-auth ship in follow-ups.

Error Handling

from bashkit import Bash, BashError

bash = Bash()

try:
    bash.execute_sync_or_throw("exit 42")
except BashError as err:
    print(err.exit_code)  # 42
    print(err.stderr)
    print(str(err))

Use execute_or_throw() and execute_sync_or_throw() when you want failures surfaced as exceptions instead of inspecting exit_code manually.

Cancellation

from bashkit import Bash

bash = Bash()

bash.cancel()        # abort in-flight execution (no-op if idle)
bash.clear_cancel()  # clear the sticky flag so subsequent executions work

cancel() sets a sticky flag that causes every future execute() to fail immediately with "execution cancelled". Call clear_cancel() after the cancelled execution finishes to restore the instance for reuse — this preserves all VFS state. Use reset() only when you want to discard VFS and shell state entirely.

BashTool exposes the same cancel(), clear_cancel(), and reset() methods.

Shell State

from bashkit import Bash

bash = Bash()
bash.execute_sync("mkdir -p /workspace && cd /workspace")

state = bash.shell_state()
prompt = f"{state.cwd}$ "
print(prompt)  # /workspace$

bash.execute_sync("cd /")
print(state.cwd)  # still /workspace

ShellState is a read-only snapshot for prompt rendering and inspection. It is a Python-friendly inspection view rather than a full Rust-shell mirror, and fields like env, variables, and arrays are exposed as immutable mappings. Use snapshot(exclude_filesystem=True) when you need shell-only restore bytes, or snapshot(exclude_filesystem=True, exclude_functions=True) when prompt rendering does not need function restore. Transient fields like last_exit_code and traps are captured on the snapshot, but the next top-level execute() / execute_sync() clears them before running the new command. BashTool exposes the same shell_state() method.

BashTool

BashTool wraps Bash and adds tool-contract metadata for agent frameworks:

  • name
  • short_description
  • version
  • description()
  • help()
  • system_prompt()
  • input_schema()
  • output_schema()
from bashkit import BashTool

tool = BashTool()

print(tool.description())
print(tool.input_schema())

result = tool.execute_sync("echo 'Hello from BashTool'")
print(result.stdout)

Persistent Custom Builtins

Use custom_builtins={...} on Bash or BashTool when you want constructor-time Python callback builtins without giving up persistent shell/VFS state:

from bashkit import Bash
import json


def get_order(ctx):
    if not ctx.argv or ctx.argv[0] in {"help", "--help"}:
        return "usage: get-order <get|help> [args]\n"
    if ctx.argv[0] == "get" and len(ctx.argv) >= 2:
        return json.dumps(
            {"id": ctx.argv[1], "status": "shipped", "items": ["widget"]}
        ) + "\n"
    return "usage: get-order <get|help> [args]\n"


bash = Bash(custom_builtins={"get-order": get_order})

bash.execute_sync("mkdir -p /scratch && get-order get 42 > /scratch/order.json")
result = bash.execute_sync("cat /scratch/order.json | jq -r '.items[]'")
print(result.stdout)  # widget

Callbacks receive a BuiltinContext object with raw argv tokens, optional pipeline stdin, the current cwd, and visible env. They may return either the builtin stdout string directly or a BuiltinResult(stdout=..., stderr=..., exit_code=...) for explicit shell-shaped failures. Raise an exception for unexpected callback failures. Async callbacks support the same return shapes. BashTool exposes the same custom_builtins constructor kwarg and includes registered command names in help() output for LLM-facing metadata.

from bashkit import BuiltinResult


def view_image(ctx):
    if not ctx.argv:
        return BuiltinResult(stderr="view-image: missing path\n", exit_code=1)
    return BuiltinResult(stdout="")

When you use await bash.execute(...) or await bash_tool.execute(...), async callbacks are scheduled back onto the caller's active asyncio loop, so loop-bound primitives like asyncio.Event and framework-owned clients keep working. execute_sync() still supports async callbacks, but it drives them on an internal private loop and should not be called from an async endpoint.

ScriptedTool

Use ScriptedTool to register Python callbacks as bash-callable tools:

from bashkit import ScriptedTool


def get_user(params, stdin=None):
    return '{"id": 1, "name": "Alice"}'


tool = ScriptedTool("api")
tool.add_tool(
    "get_user",
    "Fetch user by ID",
    callback=get_user,
    schema={"type": "object", "properties": {"id": {"type": "integer"}}},
)

result = tool.execute_sync("get_user --id 1 | jq -r '.name'")
print(result.stdout)  # Alice

ScriptedTool callbacks receive (params_dict, stdin_or_none) and must return the tool stdout string. Async callbacks are also supported. await tool.execute(...) runs async callbacks on the caller's active asyncio loop; execute_sync() falls back to a private loop because there is no caller loop to reuse.

Snapshot / Restore

from bashkit import Bash

bash = Bash(username="agent", max_commands=100)
bash.execute_sync(
    "export BUILD_ID=42; "
    "greet() { echo \"hi $1\"; }; "
    "mkdir -p /workspace && cd /workspace && echo ready > state.txt"
)

snapshot = bash.snapshot()
shell_only = bash.snapshot(exclude_filesystem=True)
prompt_only = bash.snapshot(exclude_filesystem=True, exclude_functions=True)
trusted_snapshot = bash.snapshot_keyed(b"32+ bytes of application secret")

restored = Bash.from_snapshot(snapshot, username="agent", max_commands=100)
assert restored.execute_sync("echo $BUILD_ID").stdout.strip() == "42"
assert restored.execute_sync("greet agent").stdout.strip() == "hi agent"
assert restored.execute_sync("cat /workspace/state.txt").stdout.strip() == "ready"

restored.reset()
restored.restore_snapshot(snapshot)
assert restored.execute_sync("pwd").stdout.strip() == "/workspace"
restored.restore_snapshot(shell_only)
restored.restore_snapshot_keyed(trusted_snapshot, b"32+ bytes of application secret")

Unkeyed snapshot() bytes detect accidental corruption only. Use snapshot_keyed(...), restore_snapshot_keyed(...), and from_snapshot_keyed(...) whenever snapshot bytes cross trust boundaries such as uploads, shared storage, or network transport.

BashTool exposes the same snapshot, restore, and keyed snapshot APIs. Python callback builtins are host-side config, not serialized shell state, so pass custom_builtins= again when constructing a restored instance if you need them after snapshot restore.

Framework Integrations

LangChain

from bashkit.langchain import create_bash_tool

tool = create_bash_tool(
    mounts=[
        {
            "host_path": "/path/to/docs",
            "vfs_path": "/docs",
            "writable": False,
        }
    ],
    allowed_mount_paths=["/path/to/docs"],
    readonly_filesystem=True,
    max_output_length=8_000,
)

PydanticAI

from bashkit.pydantic_ai import create_bash_tool

tool = create_bash_tool()

Deep Agents

from bashkit.deepagents import BashkitBackend, BashkitMiddleware

API Reference

Bash

  • execute(commands: str) -> ExecResult
  • execute_sync(commands: str) -> ExecResult
  • execute_or_throw(commands: str) -> ExecResult
  • execute_sync_or_throw(commands: str) -> ExecResult
  • cancel()
  • clear_cancel()
  • reset()
  • constructor kwarg: custom_builtins={name: callback}
  • snapshot() -> bytes
  • snapshot_keyed(key: bytes) -> bytes
  • restore_snapshot(data: bytes)
  • restore_snapshot_keyed(data: bytes, key: bytes)
  • from_snapshot(data: bytes, **kwargs) -> Bash
  • from_snapshot_keyed(data: bytes, key: bytes, **kwargs) -> Bash
  • constructor kwarg: network={"allow": [...], "block_private_ips": True} or network={"allow_all": True}, optionally with credentials=[...] and credential_placeholders=[...]
  • mount(vfs_path: str, fs: FileSystem)
  • unmount(vfs_path: str)
  • Direct VFS helpers: read_file, write_file, append_file, mkdir, remove, exists, stat, read_dir, ls, glob, copy, rename, symlink, chmod, read_link

BashTool

  • All execution, cancellation (cancel(), clear_cancel()), reset, snapshot, restore, mount, and direct VFS helpers from Bash
  • constructor kwarg: custom_builtins={name: callback}
  • Tool metadata: name, short_description, version
  • description() -> str
  • help() -> str
  • system_prompt() -> str
  • input_schema() -> str
  • output_schema() -> str

ScriptedTool

  • add_tool(name, description, callback, schema=None)
  • execute(script: str) -> ExecResult
  • execute_sync(script: str) -> ExecResult
  • execute_or_throw(script: str) -> ExecResult
  • execute_sync_or_throw(script: str) -> ExecResult
  • env(key: str, value: str)
  • tool_count() -> int

FileSystem

  • mkdir(path, recursive=False)
  • write_file(path, content)
  • read_file(path) -> bytes
  • append_file(path, content)
  • exists(path) -> bool
  • remove(path, recursive=False)
  • stat(path) -> dict
  • read_dir(path) -> list
  • rename(src, dst)
  • copy(src, dst)
  • symlink(target, link)
  • chmod(path, mode)
  • read_link(path) -> str
  • FileSystem.real(host_path, writable=False) -> FileSystem
  • FileSystem.from_capsule(capsule) -> FileSystem
  • FileSystem.to_capsule() -> object

ExecResult and BashError

  • ExecResult.stdout
  • ExecResult.stderr
  • ExecResult.exit_code
  • ExecResult.error
  • ExecResult.success
  • ExecResult.to_dict()
  • BashError.exit_code
  • BashError.stderr

Platform Support

  • Linux: x86_64, aarch64 (glibc and musl wheels)
  • macOS: x86_64, aarch64
  • Windows: x86_64
  • Python: 3.9 through 3.14

How It Works

Bashkit is built on the bashkit Rust core, which implements a sandboxed bash interpreter and virtual filesystem. The Python package exposes that engine through a native extension, so commands run in-process with persistent state and resource limits, without shelling out to the host system.

Part of Everruns

Bashkit is part of the Everruns ecosystem. See the bashkit monorepo for the Rust core, the JavaScript package (@everruns/bashkit), and related tooling.

License

MIT

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

bashkit-0.14.1.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

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

bashkit-0.14.1-cp314-cp314-win_amd64.whl (14.0 MB view details)

Uploaded CPython 3.14Windows x86-64

bashkit-0.14.1-cp314-cp314-musllinux_1_1_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

bashkit-0.14.1-cp314-cp314-musllinux_1_1_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

bashkit-0.14.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bashkit-0.14.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

bashkit-0.14.1-cp314-cp314-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bashkit-0.14.1-cp314-cp314-macosx_10_12_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

bashkit-0.14.1-cp313-cp313-win_amd64.whl (14.0 MB view details)

Uploaded CPython 3.13Windows x86-64

bashkit-0.14.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (4.3 MB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

bashkit-0.14.1-cp313-cp313-musllinux_1_1_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

bashkit-0.14.1-cp313-cp313-musllinux_1_1_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

bashkit-0.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bashkit-0.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bashkit-0.14.1-cp313-cp313-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bashkit-0.14.1-cp313-cp313-macosx_10_12_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bashkit-0.14.1-cp312-cp312-win_amd64.whl (14.0 MB view details)

Uploaded CPython 3.12Windows x86-64

bashkit-0.14.1-cp312-cp312-musllinux_1_1_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

bashkit-0.14.1-cp312-cp312-musllinux_1_1_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

bashkit-0.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bashkit-0.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bashkit-0.14.1-cp312-cp312-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bashkit-0.14.1-cp312-cp312-macosx_10_12_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bashkit-0.14.1-cp311-cp311-win_amd64.whl (14.0 MB view details)

Uploaded CPython 3.11Windows x86-64

bashkit-0.14.1-cp311-cp311-musllinux_1_1_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

bashkit-0.14.1-cp311-cp311-musllinux_1_1_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

bashkit-0.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bashkit-0.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bashkit-0.14.1-cp311-cp311-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bashkit-0.14.1-cp311-cp311-macosx_10_12_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bashkit-0.14.1-cp310-cp310-win_amd64.whl (14.1 MB view details)

Uploaded CPython 3.10Windows x86-64

bashkit-0.14.1-cp310-cp310-musllinux_1_1_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

bashkit-0.14.1-cp310-cp310-musllinux_1_1_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

bashkit-0.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bashkit-0.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bashkit-0.14.1-cp310-cp310-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bashkit-0.14.1-cp310-cp310-macosx_10_12_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

bashkit-0.14.1-cp39-cp39-win_amd64.whl (14.1 MB view details)

Uploaded CPython 3.9Windows x86-64

bashkit-0.14.1-cp39-cp39-musllinux_1_1_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

bashkit-0.14.1-cp39-cp39-musllinux_1_1_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

bashkit-0.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bashkit-0.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bashkit-0.14.1-cp39-cp39-macosx_11_0_arm64.whl (12.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bashkit-0.14.1-cp39-cp39-macosx_10_12_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file bashkit-0.14.1.tar.gz.

File metadata

  • Download URL: bashkit-0.14.1.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1.tar.gz
Algorithm Hash digest
SHA256 df346a050f217927ad7fe7af649fe436ae3c56b09ffb594a7dc572e213e5d003
MD5 4d3d7a59196b6403d1c2fb53a8a6fabd
BLAKE2b-256 5a00dc267f6623e71651b7ec0c3eabf79333da24fb3f464ea32121f277c65afa

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 14.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9fe3f6d9e3ed928e459035034959e88b18f342e88dee295f010f45da2c890bd4
MD5 56b5b4e0783cd0539152e6529d0e3bc6
BLAKE2b-256 8c55094fdaa175bb3ab9324f538164d38658da4e323d8903ef9762bd864a0303

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 187807fd9b76d83fe955fc20c1794e184810a0d5565f3dc5bc5404dc44eb04b9
MD5 7637c08658f723cd01328425bf89c080
BLAKE2b-256 3506958925e27df789f5b9fac96cf584cbfea94b8cd92d7ef3d1a132ec57636a

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0810b8e25474d217f9bc4b3e9a0053f7390339aeb3e16ac6662cedd83cfc654e
MD5 b0f1c518a16a11c5821e890b171da92f
BLAKE2b-256 e28170d9af798a4e8d0068e9c2ce61f21c831748789dbb5c2bceb98e156f6559

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbde4bbe50f780d5feb8bc9a4115c91735851f41d04964d405d7cdce8690971c
MD5 a0ffbe5655220c69b8d0e98409d2e846
BLAKE2b-256 bf415facbd43081bcf4a6091bcb0e7ec32252a8d12c7c4f01e8640f173383f02

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f7dd0babc9b376aedc8e88ec1b67c0aaf6225ba84a10240701c11d2206b1580
MD5 4144e81c2a03d201699e8fdcd1f66f5f
BLAKE2b-256 f261eab51b79a10c0d2ae285ab026b3e1b33249b69ecc91d669d99aff66471b4

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f11e27d1fa60183ad143ec2161138cd8f624a1dcc337dbe4414017cca4c6a436
MD5 8ea6b2427909e90065b3c2e6f4fa1b83
BLAKE2b-256 8f9a2e10be58062e49d8371bb0aafe764aa48ca6aa4ff86c2faad48a3978d448

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c59495a505431be375ae278728012654f9014ce5e1d1409b0bdb3d742fab71d2
MD5 0044c81642e4628e2ba989065b43e7d3
BLAKE2b-256 e3c9046723375497a2b54430156519837b1392347e8642d8a52ce53312655b30

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d71ff2a6dfb1bd1f3920b14689c01bdd8e739f3a5e76aa156be1bb0aa31ed48a
MD5 00a19a833b080cdfa166f39988b3b59e
BLAKE2b-256 5bcadbab300c1b3aec02b2383bf1889999cb1c97fd1c570f4eafaa710381919b

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.13, PyEmscripten 2025.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 e23596adfa27a0bd37663fe6b8a3cfabf4eb535c3c81ef63891ab2881018be00
MD5 88208414f15dd784dda06ac906a1ba04
BLAKE2b-256 e468f610cc56bc3129e51581f8db3770f977ea84f34c25a2b3719c25abfa7be1

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 94c641a6e9f8a48c249a3f062fa12ba6e326d2972a9a742057d6a47116260db0
MD5 469206754f591b3f1a6329750a55e260
BLAKE2b-256 053d31e44578408e5e84bc6deb68c7922c30b7a8aeca80fcf980725fb872fee1

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38bb09474cfe5cf5cb2d7d53c3df9c81f0c4e88c58a4a2c7c967e972427c04a8
MD5 d1d5c3c436fb94dcb55e283d984fb638
BLAKE2b-256 852ae7f5419c03bc91dc449816a8310af3faa6ca327acaee45f3e5723c1db131

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6e2d298176e40c5eaac8556ef03487fe9602d9a98a532a4687a98e14af6b70a
MD5 5f14257354a3282b9c931b2d5adc110e
BLAKE2b-256 8ba6b6ec6aa7c245979792ba5774d79942b5de1388b465a344945f1bed8176db

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15f60d7a434cac993342db96947dbef9645b9655b726ba4f8910947061ec53f2
MD5 5a81aa4477f4e935273160c93a3ae56b
BLAKE2b-256 019f1dc4099876f89da555af8d79b77aac0628ce03a3f295b3df986d148081e3

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e195ddfbd46d7d76c24a82fa28843792606be34b4702ce09678fff6c1b790d84
MD5 e5303d9580e9c3fa41083a4b2517bb6e
BLAKE2b-256 8264a67c6cd954b37486f0f762129f8c24a924bfd8309b5e7e73cf22f3829d30

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a796837c481b2512bace2241f5a4b731337894c36390e2749d8d7a69f62c9dba
MD5 46bdffe72d0ae423c4a80edebee49b31
BLAKE2b-256 09a062a594b22b155ecc4d5eba53ed99b31b5eb52ec938299023aeea7d7f80db

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cdab3940b0e402b74df84853d45dd0d9bf9674f5ea68822c5432f9002df33f4b
MD5 ff8a7521ec1abc5804191fdefa59cd54
BLAKE2b-256 50c902696f6429bf78b75f3cc0945a100beba108d4887c62c46c062d056f8e0f

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 629f11055e9a76602c5a5e5c009da76c996479f95035b5486e107c65c962be52
MD5 eb1d6c8eeaf87528283b3f382fd28f47
BLAKE2b-256 06c3e8a0a5259a0578f20d30773308ae8637507fd36f36bfd805f034f709b4dd

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae458266681b191797e720207acc16609385491ddf5dc87ebdc0f5c986cea57a
MD5 ca11858724b7b21845ef16f5b70fd1f7
BLAKE2b-256 6d17ed0d4a215c2f541fd0f3d4c17f04d85b7b000e432aba439ff71c492ffd72

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46eed022dd3489654a4a124bddcd9ea65cab977eabdd7eefdcf7248dfd6d04d9
MD5 a27f8e07e7f351d4b93393ad7f709175
BLAKE2b-256 6afeb01880bf5cc9405f7615333bd14c875419d441b96c52ac29c14b319f70d0

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a04e18abc602c8432ecc8a0b92b142c51cbd8e365af393b6beeaead7024d29fb
MD5 d72a508a2a94834f1977d4432714d73d
BLAKE2b-256 e2aae209f2440a166d8f876244434b24f26d414f906e8f3a69cd11be4529ffe8

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac6ba21f767659937f36283abe45572e3ef82fed1341245a395457d5beed6828
MD5 015ba747190733cd3d11184b8960004e
BLAKE2b-256 1dffbebe89f24473bcc4b7e59f280b299817cd403741fcb8fd924d4591ef8571

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1ff7346f2f668a72fb6f9e8f8af94d49494b02c25fc0bc3d97bab880086da53
MD5 e57d97447f711c57552ca0101a63d271
BLAKE2b-256 126a4a2c24bfdb15165ac62018bc3d907166f97624f31b14dd43bd381cf4fbd5

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 14.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fe6096b7d7c1a8763f6de74bee5be2c557a190cd608fd2558b66e303499f4d74
MD5 886f0fd3541b53e6027ee87cd9e69207
BLAKE2b-256 259fbcb91f919233388e22585ff2852076bd077b60b7e128b7321ac789673239

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27cb04d034f28eb6b08d55623b1801d0d0614d2925fd8491388ece6096fab522
MD5 f2f2005f26edc47c324e196c5f86f642
BLAKE2b-256 674a8e3f1268492de66e8d8e3e147e755a209424c4798c774a9ef5b20b691890

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0d2c5095bfa3d1f7ef5f05b034a0c522a1ff3e4dc3b6f4444a51816d41aa0876
MD5 813435a5fa81afc900797536ce424a1f
BLAKE2b-256 70d946b2e1dfb3c867698c8bb96e7582b577827e4cc6acf1c7789c119fe49705

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd55bc5d05ecc8f90e80dc4548c2e20a4e66c0f5289d5a1d72df78fa2ea4d488
MD5 262c4b03073b64da68402c31c55717f1
BLAKE2b-256 6b8a503dbf796862c41dac61ab628d745a46f5c0e6216d801219c7cf3ec18f3c

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e0e742eaf1a3fa87fd22c91cf452cb563a50f585279c1f4684d2c8254dd35a9
MD5 eee395971b7e6ff0ac7ad67fc0a32d92
BLAKE2b-256 3e2ed0f520118d79d6abec0a08c3eb131bd25fb200c06dcb8922e954876e7da8

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe316ce37bc85561581b6d173a39ea4316f29b3e1522798fa3241bca33f6b149
MD5 9aad7095b00d1c56427482f1ca79315c
BLAKE2b-256 83effb251bc95bddbe8013150ae458fdf59e23a0a2e348c64e928898c2261107

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6732811987b1f241e9394944aab1ad9ce4a9fc2379e09701e48ba69f1d15fd32
MD5 785730aae949b4a10623edd500518ff3
BLAKE2b-256 95892ebaaa6a98bc5ca61bf3d1da2a3b48114202f5c712ef0e915939ec6f6ba2

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 14.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 70bb030b6885b3885a8e101c08ea5ae6035340d5a37c5563d121339646a985f4
MD5 eef567c348e01d5f1f7e52b5b078882e
BLAKE2b-256 629d9af9532fdcc0712d828180b2cb506859e45e921448a6024418087a20e1ef

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 efee66cf93c65861f8c63f4bcec6fe9d358a780ca718cd2e2ef6e10f58064e1e
MD5 5d4e55af015f40c5158f47a6a9c82027
BLAKE2b-256 1d81d343fb5089ad0b62eb4efbf1d53b6f8694907feef59b093f6bb54577d32e

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8a8dbb3138c31e0f86994b855dbb134c8964f2b36dc18605f72ca9005ce7ee4
MD5 259621ad7f6788b8222e18b717aa322c
BLAKE2b-256 aa56ee363f1c213064aecbb3931771a93afe84392a13822916359e76ff6e8a63

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e5e990a23bcf99489b616791b5f7300fc18b48a2b9dd1dac4ea6bc8cf07f122
MD5 7c6fce688d163083f2b1de2024bec45e
BLAKE2b-256 f65ec4fbd93fe6d79031c476777f7d34aa49ae47a06976dacc4612b1caaac4b8

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d46de9819f145364ca639336531fe1fcfd2cf14acc79d903c8dd1c42ab4c8ac
MD5 2a31ff37dc2eaf0f1dc587f623d72337
BLAKE2b-256 d14cdd2d5a7ec5b4a5da0dc9b6530fab7eebd2784e14b50670772a687cfa702d

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b53cfb5b88e662d60118fe92c51799b62fbfad4af3f004c5ddae80289d51007
MD5 b74bfa1561fbcf5b7848c2d6db8bd7a2
BLAKE2b-256 70a88c7cf2b8bc7d9691a6af09ffc7e64e4b11f06fdc74ca496495d8273ae30b

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 494e7f201b7eb5295cd6852d2c661967e865a008da740ca3fe842e008bf558aa
MD5 5ecd45390eaa59e60bb12b5d21353bc4
BLAKE2b-256 9c8670b537cc1c0ec4f4326ad64f93bd1d8f8a0a38d04dfc5eb0fd5b5cf4f3c6

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 14.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9f902c5d4e55cea86a7e5b7576cfcf9758d94dc8901804d3fe401693fc9fecf
MD5 dd292ffc641452a704c2303ef1b1b455
BLAKE2b-256 0b063f8efa002d9407a2cde8e408071885c0f5253fe9fdb25f2bb9e5b5b79c41

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 daaa29cc2df2548bee5dc71e311dcbb08f821c6601efadef8526c12f35e169f5
MD5 014c34858abd376ff2461b11a2e6d9ec
BLAKE2b-256 7c816c1550934106447f0cd534c79a69597583717a7aee5525d9e0a9dc931df4

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad225323de2d4c6c0d5dc0c16416103c8fc464d4bf2b2363073333ccb885966f
MD5 748c5dae0cdda9bf75b9df7a81c500b4
BLAKE2b-256 f742865866fe579ffdba1d05ede0d1e3a8a5f4632b23df740d4d068ca8cea6c0

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ed7b526f67e4817097a9b8805b2782c68eed3ee117f64a9a9badd1de38d9450
MD5 b7cbb3d683d06e85462be0ebe5140116
BLAKE2b-256 8940977a63f0d29c11505b765d57df8e24f721fa158eec5e8d1543893ffae31c

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a338dae9f7113bd27de392fe2b50edb49ff90f8a79b51f61d9090152155f82f9
MD5 9b23986a7af7f8a3ef50e369d113c9f2
BLAKE2b-256 c6efa4ba001062e37f4159add132c53eed278079557548911e20bfc9bf7faf7c

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60ffba938cd0f1ff2124843f1b79666b5eff7fd11d6f7c42b29c4034c1e7b5ae
MD5 8e6191e850c9af67911b52af409e3e21
BLAKE2b-256 3d1464a52c5ffc6ed4e22f85a189ce90773d5cadef8affd7554de4537ebad0c6

See more details on using hashes here.

File details

Details for the file bashkit-0.14.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.14.1-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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 bashkit-0.14.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 365fa3719da53f57a4531c90889879c601ea26b2398b2143c64115af3b61ca0b
MD5 a2a76df57ed9950f87b5d579e33f8209
BLAKE2b-256 aa7ff120f94a7d1998a141128a5f8b194b3a7e93ae3fc8db925d760122ed1667

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