Skip to main content

Fast multiline terminal input and clipboard library with C++ core

Project description

cich_prompt

Fast multiline terminal input and clipboard library with C++ core and Python bindings.

Features

  • Multiline Input: Advanced terminal input with vim-like editing

    • Ctrl+V or /clip: paste from clipboard
    • Ctrl+N: insert newline
    • Ctrl+W/U/K: delete word/to-start/to-end
    • Arrow keys, Home, End navigation
    • Ctrl+Left/Right: word navigation
    • Ctrl+Up/Down: buffer start/end
  • Clipboard: Cross-platform clipboard operations

    • Supports X11 (xclip, xsel)
    • Supports Wayland (wl-copy, wl-paste)
    • Supports macOS (pbcopy, pbpaste)
    • Supports tmux clipboard
    • Async clipboard fetching with loading indicator

Installation

pip install cich_prompt

Quick Start

Multiline Input

from cich_prompt import multiline_input

# Get user input
text = multiline_input("Enter text: ")
print(f"You entered: {text}")

Clipboard Operations

from cich_prompt.clipboard import set_text, get_text

# Copy to clipboard
set_text("Hello, clipboard!")

# Paste from clipboard
content = get_text()
print(content)

Edit Existing Text

from cich_prompt import multiline_edit

initial = "Edit this text"
result = multiline_edit("Prompt: ", initial)
if result:
    print(f"Edited: {result}")

Auto-return Mode

from cich_prompt import multiline_input_autoreturn

# Auto-submits when input matches an option
options = ["yes", "no", "maybe"]
choice = multiline_input_autoreturn("Choose: ", options)

Requirements

  • Python 3.7+
  • Linux or macOS (Windows not yet supported)
  • C++17 compiler
  • CMake 3.15+ (for building from source)

Platform-Specific

Linux: For clipboard support, install one of:

  • xclip (X11)
  • xsel (X11)
  • wl-clipboard (Wayland)

macOS: Built-in clipboard support

Windows: Not currently supported (uses Unix terminal APIs)

Building from Source

git clone https://github.com/akash-sekhon-1/cich
cd cich/python_packages/cich_prompt
pip install -e .

License

MIT License - see LICENSE file

Author

Akash Sekhon (akashsekhon.de@gmail.com)

Links

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

cich_prompt-0.1.4.tar.gz (52.9 kB view details)

Uploaded Source

Built Distributions

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

cich_prompt-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cich_prompt-0.1.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (136.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cich_prompt-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (101.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cich_prompt-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl (110.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cich_prompt-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cich_prompt-0.1.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (136.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cich_prompt-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (101.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cich_prompt-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl (110.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cich_prompt-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cich_prompt-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (136.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cich_prompt-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (101.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cich_prompt-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl (110.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cich_prompt-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cich_prompt-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (133.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cich_prompt-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (101.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cich_prompt-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl (109.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cich_prompt-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cich_prompt-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (132.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cich_prompt-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (100.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cich_prompt-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl (108.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

cich_prompt-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cich_prompt-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (132.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

cich_prompt-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (100.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cich_prompt-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file cich_prompt-0.1.4.tar.gz.

File metadata

  • Download URL: cich_prompt-0.1.4.tar.gz
  • Upload date:
  • Size: 52.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cich_prompt-0.1.4.tar.gz
Algorithm Hash digest
SHA256 aaf4a4bde542d22d5e15f595eaafebfc5ef2b101bfa31fc2f9c2ec45f821725b
MD5 2197ac071ae09b0ff7bfbd064c849532
BLAKE2b-256 8d204f5ea325ccdefa3e63f000f387fa9298dbd859e44d8c015c6c60fe8066fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4.tar.gz:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddd687c087f482aa5af5cd099e9c9ecd16ef5d0e918788f8436d7e1e6891a49f
MD5 3b095d87cac6c49d532def0673d76f06
BLAKE2b-256 add2ffe72db07b6f92e8cc0a05a8a1d4bab896fe48edc05bfcf2ee86f5b1aa07

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89f41382b15200dd9c16d389a31297a613404af20dab4b96778ef850a805ce57
MD5 29b8443f415ba7733e23d04acfdd247b
BLAKE2b-256 2062a33148e203bfae11a740bc80ab5f39c00a35a1a2ecedd4c08f39f918f4f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5840a15c5ece1d7c8f08cd40f8b442d746535779323039ce25e637d4424a383a
MD5 c854d4e5e85a241319c1e3423d5e586f
BLAKE2b-256 5fb55048e277041ba6606dc7bd89a7c7616f6721daaa76dbacc2c3ad93213bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e98fa9667d3266ba2c00427f6857de8a8852e2d8096958b903ee0e4ca3e0663
MD5 6c3d2d724083506aae0bf303bd64e53c
BLAKE2b-256 071f514f58cee5dd4dea78d97b29e929a52d959de6e1b3f842dbba3a8c05f422

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adb91c9ba9c56c6ba79573a4d9290ca17c9a3e80cd3a109b88981df5a59a4566
MD5 bd1d00813c6ff578ba1f33a7d8e0dc58
BLAKE2b-256 74f5f880211723a0ae7eb43dc93c62fb538371524fdd939978fa9e47204a4b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4277a9c68ca69d603110566ca28fce4a1850cde03c8f6ad6a7e431735e75741
MD5 8b04a4b62d03c1e0785a06249a208c8f
BLAKE2b-256 9398674a22a2e50fa68b3bb059d7b47598a148433d5bca95aa105d76f219047f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abfc1bfa0bb2c4ab7e1d5e12ce0c9a4e9329013097feea269e03b3b73719d6c6
MD5 0c2f8965790760cbf10b5d0869d68bac
BLAKE2b-256 ddea775000ba225c7eb8752e7ca3e87030847e4e1604287558d01201e935dcd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7a26de49869b983eac827e1443bf6f766e4146eb31f53080b8e3074be5f6a4a1
MD5 119df8d7ee7389f30178a615cdbde400
BLAKE2b-256 8a908735ad3f081e89224e0f4c2b9146960963b7750195bd5240e652f396baf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad37eb5c6b8a0158b0168f7bd157c13232ae8fd25a6b54044215f47ca82bc99e
MD5 1c2751475c1226ade90499b587cc41c2
BLAKE2b-256 7d1a731e0a3bf487b1539e2237b451f956ba0447217848762300aea47a36aadc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eae41f17cd20483d827e278440996b7b086e2fe0f8caf09e068939353020c275
MD5 4d848b9ff1fd8505212b770878391609
BLAKE2b-256 89f99da390fc0e9422503418977760be34eb673ebf68d71cf9f57dfaebd4c99e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee3af2517f05b0502d5dd03ed8b7ad6e201fd3b852f037dcb07f0f4372977379
MD5 16a1a1766e2ca8ddb8f1419cbd883c4b
BLAKE2b-256 923cbf82bcd20c1843fb90170ef6159f2e6c8c20867b6ac78bf73743fabd9f9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d67ec3a90f2cc0239acb2bf3c8d09bb1a4cd24738e5d395a66f17d1948235c87
MD5 fb692a9f72e6d35e4a4c81761896af14
BLAKE2b-256 4dd8f616b5d01fb227de17ddeba8785f53702407bc1a701f774535e1c01e807e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84eaadf839b69387e4d0d625d44ec8c81323e93076a713c01c7762d6a0ba0231
MD5 3ab85fbf2eb1ce986e9b07b49f07c111
BLAKE2b-256 35ede6e7833cb9074ad89aaec25a25e243e51761975450f4b815afca90b263c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b211b0924c65e1768b7e4f59f51c8603bdd9e812a31c8aca350d4a80e27d383
MD5 a8cdff2113bbe8e4a6ec38b90c47340a
BLAKE2b-256 c7b16a0ec54e66351be93d7e5d86f236a95e7a3ea16c63d0fa53091ea97ed1df

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41bf592c6e45792895cd27deadc9579d1c0a1a520b55d65b503db6e92fc725fa
MD5 98593e9ae5b38e5c34968dd1fb9a9436
BLAKE2b-256 8fd5ad74d3e698e58c23558e172ebdce57226063f6bc5db770c81d1bff952218

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 114501d60cf215c399b29cc3d5c00625af3309723990c29bc4fa0a0c5dff0b39
MD5 328b445f3bca71da7c1dfeaf378111ce
BLAKE2b-256 cd176c106e25f48859953558dc77c03314626b994a1ae7b09dde6d786054de77

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2ed3ba1f5edf29c42194e4027f784c70917f91b6e4188d73b324ccb23e30f75
MD5 6041d2e8c8295531e518d49b2bb6ed6b
BLAKE2b-256 7ce5e50fcf44159b86fb90a96332622f71a421d7e0ca94f711af1dd8096b7f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8ad67925d4826ddffc098dfbec7582eabf185a51b9e88dee066c4e2266b1764
MD5 367eed2b0501b041e37f78431a6619df
BLAKE2b-256 34c36c5a69583435bdf1990cadb680793ae335c6b71b95d9243ebe3ff74e3429

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f14b9e10eb1a1cc6504195cbc5cf9427ed4deb9524a162f95189a0592c5e742d
MD5 7927e9b7a244fc0922b935d5bb3e9c2e
BLAKE2b-256 2b25361aa759193cf999ec185d8d8027562b03e9e7e50a89c259b7aa5b921a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 501eb985524c08aa36760f396bb38f49a998ec353bb194beae3b08e1d17ea2c2
MD5 a57b4409343294034e37d6629a0fd18b
BLAKE2b-256 8b3f75d2d126c5432c44963896fae266f4bbcc7b21777c95a08b9dc5b5afb852

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cd320ec3d60c047e51935d74a3d3cafa42fc92d1401a19faa2ff990100e2bc9
MD5 6e675370e39f392999865782e235308a
BLAKE2b-256 f0a79103c0f4c4f474c5142832f550ef103acabeed1180289f2b0b0429f55f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be7ca8307c0e8cc5c0479dfb595ce0c61618bf92510b6f2293314674c39e892c
MD5 09b9f22bf74c1c6d74b1590ac0c793de
BLAKE2b-256 e048290063b388dad27c21b3fac05dda3abd0fd2466eace29a3616867ee447e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db0657aa513a690ae2063af6650c9fe6c34749c43c5c6e509c5215a750a97579
MD5 ee8ce25badf25bb38741bac7e4fa65db
BLAKE2b-256 c6cb2adc643a055ea8f61665c13892c5e718699b61ffcbb30bc9d1e2e680d4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

File details

Details for the file cich_prompt-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cich_prompt-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76d498b6c6449e1ab741ba0ad277212f43416238941c1fbc08c66042990d4e00
MD5 cd7c95b6bcaf29bd4bf9ed72b441a8d7
BLAKE2b-256 ea13a62d256a3491f4b234846eaf8b6720f93438258f44f42cfb2127b0a3c9b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cich_prompt-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish-cich-prompt.yml on akash-sekhon-1/cich

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

Supported by

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