Skip to main content

pywhispercpp

Python bindings for whisper.cpp with a simple Pythonic API on top of it.

License: MIT Wheels PyPi version Downloads

Table of contents

Installation

From source

  • For the best performance, you need to install the package from source:
pip install git+https://github.com/absadiki/pywhispercpp

Pre-built wheels

  • Otherwise, Basic Pre-built CPU wheels are available on PYPI
pip install pywhispercpp # or pywhispercpp[examples] to install the extra dependencies needed for the examples

[Optional] To transcribe files other than wav, you need to install ffmpeg:

# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg

# on Arch Linux
sudo pacman -S ffmpeg

# on MacOS using Homebrew (https://brew.sh/)
brew install ffmpeg

# on Windows using Chocolatey (https://chocolatey.org/)
choco install ffmpeg

# on Windows using Scoop (https://scoop.sh/)
scoop install ffmpeg

NVIDIA GPU support

To Install the package with CUDA support, make sure you have cuda installed and use GGML_CUDA=1:

GGML_CUDA=1 pip install git+https://github.com/absadiki/pywhispercpp

CoreML support

Install the package with WHISPER_COREML=1:

WHISPER_COREML=1 pip install git+https://github.com/absadiki/pywhispercpp

Vulkan support

Install the package with GGML_VULKAN=1:

GGML_VULKAN=1 pip install git+https://github.com/absadiki/pywhispercpp

OpenBLAS support

If OpenBLAS is installed, you can use GGML_BLAS=1. The other flags ensure you're installing fresh with the correct flags, and printing output for sanity checking.

GGML_BLAS=1 pip install git+https://github.com/absadiki/pywhispercpp --no-cache --force-reinstall -v

OpenVINO support

Follow the the steps to download correct OpenVINO package (https://github.com/ggerganov/whisper.cpp?tab=readme-ov-file#openvino-support).

Then init the OpenVINO environment and build.

source ~/l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64/setupvars.sh 
WHISPER_OPENVINO=1 pip install git+https://github.com/absadiki/pywhispercpp --no-cache --force-reinstall

Note that the toolkit for Ubuntu22 works on Ubuntu24

** Feel free to update this list and submit a PR if you tested the package on other backends.

Quick start

from pywhispercpp.model import Model

model = Model('base.en')
segments = model.transcribe('file.wav')
for segment in segments:
    print(segment.text)

You can also assign a custom new_segment_callback

from pywhispercpp.model import Model

model = Model('base.en', print_realtime=False, print_progress=False)
segments = model.transcribe('file.mp3', new_segment_callback=print)
  • The model will be downloaded automatically, or you can use the path to a local model.
  • You can pass any whisper.cpp parameter as a keyword argument to the Model class or to the transcribe function.
  • Check the Model class documentation for more details.

Examples

CLI

Just a straightforward example Command Line Interface. You can use it as follows:

pwcpp file.wav -m base --output-srt --print_realtime true

Run pwcpp --help to get the help message

usage: pwcpp [-h] [-m MODEL] [--version] [--processors PROCESSORS] [-otxt] [-ovtt] [-osrt] [-ocsv] [--strategy STRATEGY]
             [--n_threads N_THREADS] [--n_max_text_ctx N_MAX_TEXT_CTX] [--offset_ms OFFSET_MS] [--duration_ms DURATION_MS]
             [--translate TRANSLATE] [--no_context NO_CONTEXT] [--single_segment SINGLE_SEGMENT] [--print_special PRINT_SPECIAL]
             [--print_progress PRINT_PROGRESS] [--print_realtime PRINT_REALTIME] [--print_timestamps PRINT_TIMESTAMPS]
             [--token_timestamps TOKEN_TIMESTAMPS] [--thold_pt THOLD_PT] [--thold_ptsum THOLD_PTSUM] [--max_len MAX_LEN]
             [--split_on_word SPLIT_ON_WORD] [--max_tokens MAX_TOKENS] [--audio_ctx AUDIO_CTX]
             [--prompt_tokens PROMPT_TOKENS] [--prompt_n_tokens PROMPT_N_TOKENS] [--language LANGUAGE] [--suppress_blank SUPPRESS_BLANK]
             [--suppress_non_speech_tokens SUPPRESS_NON_SPEECH_TOKENS] [--temperature TEMPERATURE] [--max_initial_ts MAX_INITIAL_TS]
             [--length_penalty LENGTH_PENALTY] [--temperature_inc TEMPERATURE_INC] [--entropy_thold ENTROPY_THOLD]
             [--logprob_thold LOGPROB_THOLD] [--no_speech_thold NO_SPEECH_THOLD] [--greedy GREEDY] [--beam_search BEAM_SEARCH]
             media_file [media_file ...]

positional arguments:
  media_file            The path of the media file or a list of filesseparated by space

options:
  -h, --help            show this help message and exit
  -m MODEL, --model MODEL
                        Path to the `ggml` model, or just the model name
  --version             show program's version number and exit
  --processors PROCESSORS
                        number of processors to use during computation
  -otxt, --output-txt   output result in a text file
  -ovtt, --output-vtt   output result in a vtt file
  -osrt, --output-srt   output result in a srt file
  -ocsv, --output-csv   output result in a CSV file
  --strategy STRATEGY   Available sampling strategiesGreefyDecoder -> 0BeamSearchDecoder -> 1
  --n_threads N_THREADS
                        Number of threads to allocate for the inferencedefault to min(4, available hardware_concurrency)
  --n_max_text_ctx N_MAX_TEXT_CTX
                        max tokens to use from past text as prompt for the decoder
  --offset_ms OFFSET_MS
                        start offset in ms
  --duration_ms DURATION_MS
                        audio duration to process in ms
  --translate TRANSLATE
                        whether to translate the audio to English
  --no_context NO_CONTEXT
                        do not use past transcription (if any) as initial prompt for the decoder
  --single_segment SINGLE_SEGMENT
                        force single segment output (useful for streaming)
  --print_special PRINT_SPECIAL
                        print special tokens (e.g. <SOT>, <EOT>, <BEG>, etc.)
  --print_progress PRINT_PROGRESS
                        print progress information
  --print_realtime PRINT_REALTIME
                        print results from within whisper.cpp (avoid it, use callback instead)
  --print_timestamps PRINT_TIMESTAMPS
                        print timestamps for each text segment when printing realtime
  --token_timestamps TOKEN_TIMESTAMPS
                        enable token-level timestamps
  --thold_pt THOLD_PT   timestamp token probability threshold (~0.01)
  --thold_ptsum THOLD_PTSUM
                        timestamp token sum probability threshold (~0.01)
  --max_len MAX_LEN     max segment length in characters
  --split_on_word SPLIT_ON_WORD
                        split on word rather than on token (when used with max_len)
  --max_tokens MAX_TOKENS
                        max tokens per segment (0 = no limit)
  --audio_ctx AUDIO_CTX
                        overwrite the audio context size (0 = use default)
  --prompt_tokens PROMPT_TOKENS
                        tokens to provide to the whisper decoder as initial prompt
  --prompt_n_tokens PROMPT_N_TOKENS
                        tokens to provide to the whisper decoder as initial prompt
  --language LANGUAGE   for auto-detection, set to None, "" or "auto"
  --suppress_blank SUPPRESS_BLANK
                        common decoding parameters
  --suppress_non_speech_tokens SUPPRESS_NON_SPEECH_TOKENS
                        common decoding parameters
  --temperature TEMPERATURE
                        initial decoding temperature
  --max_initial_ts MAX_INITIAL_TS
                        max_initial_ts
  --length_penalty LENGTH_PENALTY
                        length_penalty
  --temperature_inc TEMPERATURE_INC
                        temperature_inc
  --entropy_thold ENTROPY_THOLD
                        similar to OpenAI's "compression_ratio_threshold"
  --logprob_thold LOGPROB_THOLD
                        logprob_thold
  --no_speech_thold NO_SPEECH_THOLD
                        no_speech_thold
  --greedy GREEDY       greedy
  --beam_search BEAM_SEARCH
                        beam_search

GUI

If you prefer a Graphical User Interface, you can use the pwcpp-gui command which will launch A simple graphical interface built with PyQt5.

  • First you need to install the GUI dependencies:
pip install pywhispercpp[gui]
  • Then you can run the GUI with:
pwcpp-gui

The GUI provides a user-friendly way to:

  • Select audio files
  • Choose models
  • Adjust basic transcription settings
  • View and export transcription results

Assistant

This is a simple example showcasing the use of pywhispercpp to create an assistant like example. The idea is to use a Voice Activity Detector (VAD) to detect speech (in this example, we used webrtcvad), and when some speech is detected, we run the transcription. It is inspired from the whisper.cpp/examples/command example.

You can check the source code here or you can use the class directly to create your own assistant:

from pywhispercpp.examples.assistant import Assistant

my_assistant = Assistant(commands_callback=print, n_threads=8)
my_assistant.start()

Here, we set the commands_callback to a simple print function, so the commands will just get printed on the screen.

You can also run this example from the command line.

$ pwcpp-assistant --help

usage: pwcpp-assistant [-h] [-m MODEL] [-ind INPUT_DEVICE] [-st SILENCE_THRESHOLD] [-bd BLOCK_DURATION]

options:
  -h, --help            show this help message and exit
  -m MODEL, --model MODEL
                        Whisper.cpp model, default to tiny.en
  -ind INPUT_DEVICE, --input_device INPUT_DEVICE
                        Id of The input device (aka microphone)
  -st SILENCE_THRESHOLD, --silence_threshold SILENCE_THRESHOLD
                        he duration of silence after which the inference will be running, default to 16
  -bd BLOCK_DURATION, --block_duration BLOCK_DURATION
                        minimum time audio updates in ms, default to 30

Advanced usage

  • First check the API documentation for more advanced usage.
  • If you are a more experienced user, you can access the exposed C-APIs directly from the binding module _pywhispercpp.
import _pywhispercpp as pwcpp

ctx = pwcpp.whisper_init_from_file_with_params(
  'path/to/ggml/model',
  pwcpp.whisper_context_default_params(),
)

Discussions and contributions

If you find any bug, please open an issue.

If you have any feedback, or you want to share how you are using this project, feel free to use the Discussions and open a new topic.

License

This project is licensed under the same license as whisper.cpp (MIT License).

Download files

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

Source Distribution

pywhispercpp-1.5.1.tar.gz (9.8 MB view details)

Uploaded Source

Built Distributions

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

pywhispercpp-1.5.1-cp315-cp315t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.15tWindows x86-64

pywhispercpp-1.5.1-cp315-cp315t-win32.whl (1.3 MB view details)

Uploaded CPython 3.15tWindows x86

pywhispercpp-1.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pywhispercpp-1.5.1-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp315-cp315t-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

pywhispercpp-1.5.1-cp315-cp315-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.15Windows x86-64

pywhispercpp-1.5.1-cp315-cp315-win32.whl (1.2 MB view details)

Uploaded CPython 3.15Windows x86

pywhispercpp-1.5.1-cp315-cp315-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp315-cp315-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp315-cp315-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pywhispercpp-1.5.1-cp314-cp314t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

pywhispercpp-1.5.1-cp314-cp314t-win32.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows x86

pywhispercpp-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pywhispercpp-1.5.1-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pywhispercpp-1.5.1-cp314-cp314-win32.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86

pywhispercpp-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp314-cp314-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pywhispercpp-1.5.1-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pywhispercpp-1.5.1-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

pywhispercpp-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pywhispercpp-1.5.1-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pywhispercpp-1.5.1-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

pywhispercpp-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pywhispercpp-1.5.1-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pywhispercpp-1.5.1-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

pywhispercpp-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pywhispercpp-1.5.1-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pywhispercpp-1.5.1-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

pywhispercpp-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp310-cp310-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pywhispercpp-1.5.1-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pywhispercpp-1.5.1-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

pywhispercpp-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB view details)

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

pywhispercpp-1.5.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pywhispercpp-1.5.1-cp39-cp39-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file pywhispercpp-1.5.1.tar.gz.

File metadata

  • Download URL: pywhispercpp-1.5.1.tar.gz
  • Upload date:
  • Size: 9.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1.tar.gz
Algorithm Hash digest
SHA256 5df897e5dd9d9f16804fc937bd85b9f5880a0b29a55f8843585e0e03d76195e5
MD5 0848c3b675af3dff3dc4a66879b50b03
BLAKE2b-256 9f35610787a277e177e6b7983277a35a2969c0876b46c0d889bc6a0c4b4ac4a7

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 dbe9cfd3216ec43d8f7848c709b1c9dc3f4db42eb5589ef1ca8fa7c8a04620a4
MD5 bf6e18e8cafe227a06ce08b43b6eec82
BLAKE2b-256 67945afc217bdcd712adff8d1488e271e06b7ca367a540f2d4000df7b207661d

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315t-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 0d51b682bc41e1d0c6e6dbff1b0aecd71d0d9ee92dd8954ff39cb0c29fbbe977
MD5 9e141eb0ede1b039ade42d4130d115db
BLAKE2b-256 274fbf30f8384bc6602af24f5269200f07656e763fa9068b55fcfffd53860f46

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 386edc4dc817897bd2e078a89ac5252ba31a83bce4ce28ee5d42892428469490
MD5 798ba9f15a41608cbc31688b613c324c
BLAKE2b-256 536209f2ae891e860f320d1c7377363f43b687841e841a25b713fe9c8a783c2d

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef8ee41d655c8b9a740ab7b65ec7f899ec5b91501805fa8db02f35464e87386c
MD5 13b154f6d26607dac17856292b6cacb4
BLAKE2b-256 b1a624e257042f9a2f9297f11376004e0bece03affe4ca4de1790d1bde9b394b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d32a52663a07c31446c2202a576a624f7034081df7e20cf3a63b9096910f465
MD5 236c6eda4a3754b99a6fa856968b3ca2
BLAKE2b-256 946bc675bfe850e49c60f94bfdcd389c69475a9e6eeedb7863d393a352a36268

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0161a9656953d87ae8d9adf6bd796f7ca9d8d37f8bd683aaecf931e12dd31db
MD5 e52ee7bfaa407029a1bc2cdc767f1d76
BLAKE2b-256 320c3eef2c65750593b51addf733cfba5a6fd81cf2948d30a4c50ee36ee028cf

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19bdf60dc92db79d41da5e1c61309a15a5fd9ea2b5f771fec918281d94978425
MD5 4da1a70f2bf52a6b79baf69a7268d77b
BLAKE2b-256 27f764d55c447a1a93052b990717c7b78e439d41a199c31bdf49d6cf71e0f06e

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 25a3716a7021db2c5e6fac42a0c8e60b20afd37e6a6ba19bf56dc94c80bc4151
MD5 8114aa5a74bdafd693413d25f31527e4
BLAKE2b-256 c6c177a222dafaa4a02ebc5c5beb7f4e711c2ead457e96f79cfee237c32a041a

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 56a285977210074daf4dc27b740f873a8715432f6f072271c12e6417744afbd7
MD5 cb2ed77310f804c405f1a82071712ab4
BLAKE2b-256 748965d678ac4a5d95456158cb479123ce700cedda154e7a0d935cfb323b2b1d

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3442e1a7e7292006931af6e26356292e9c52272e138abe5bf0d1f06d79aab3eb
MD5 77853fbed1f90299234cdd26b73daf1f
BLAKE2b-256 57a2de10df4965b526b3717cf4f8518b072896075cac8a869c7fb1309b6ef600

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26f125630d2c80dcdc5d884941b91bd4cafb0610d75087543e0da92f73149c5e
MD5 bbcb2a0ff7bf06d476d30ead505ea052
BLAKE2b-256 9c7bc638230f18f96669a273fce3bcc542aefb1cdb050ee96837ffea020ba437

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ea09913a894f7aef62674de7ec0083f50f6977f92817867e969a12ae546f28a
MD5 d07a1c251642f117804c12c2e0bc00d9
BLAKE2b-256 b4d06c291bb5c670efae3c3a626aeecdbae1320087a63e985d6f36ec8eae89b1

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75ec2888b5bc2a2adde1d452085e136ee0f77ca7e8f5020fd9bd1455f236c07f
MD5 c108e69409b5e4df393f501ca0552250
BLAKE2b-256 638c993c27be3afb83797ee823944505bc1a59003900aaed8b8919bb4dfbed99

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4a4514d8092ddcfb01b853df1789a859eec454b24c1a72b8e8d4da019cd6ab8
MD5 b51d76df5effe69d95b59321b804f277
BLAKE2b-256 a6a31b71d5ffd1f28f665b6ab3fcf1bb340c0d07227f6a6c82b63e73c8c02c3b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 adf381996753bcd805fade64c947011edcba9c030c28a394103d7bf7a9fe525d
MD5 1b8f4406e962d5f292948c92167c64eb
BLAKE2b-256 7b74e354da3b9d4f0706c7b86896c7120f42362c19540e637ff1c0171ebcbc92

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8813a6d93e13960212e40cbeb2cd5867d4cbf3c1ecdbb2b3d209322437e3b197
MD5 dcb762374059153290c42da1a698577f
BLAKE2b-256 461785184e35ab877c966f0576fa6b838bd9c8cce51f911b8ae8f997da9f48a5

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7a9e722823f5290cdcb90378886b0b4a0b25e2ac1061ef0cd57af304c9358fb
MD5 084e5dd582b20cfb6b6362964e22a3f1
BLAKE2b-256 8551c0f91fd54cb60a4d763b5c950569efb14ec2cb72f3600b45ce230c5dbea2

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53474d9a12f3105bb62cbe32eefdbe93bc8c2aa40d541b07f38b99c5f0cecbb1
MD5 050d1b72cf41b620242600b6063a0217
BLAKE2b-256 005e973cc2d41b4274277dc208b5d170da08ad118716092ce8efe486581a3cbd

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f14d615762307a30e86a55e7f688ed62692d276d9f8003dceadca96c467cc0c6
MD5 98c28934b46382d69d900117286159b7
BLAKE2b-256 846a874889d2cb9fcaa3ae0dd1b97ff1563748d33802a8e46f6dd9f876bc4c54

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d45230de68c9719a6f5f608f446b52ca5461026875fe2f0059531e939d684d6b
MD5 9d32717297ad0f49528a344823a5e69b
BLAKE2b-256 6ef74f6facc00c43fdbbbe2a73a9c9c3a50494fd3625df0e70e2c4773aef58f7

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcc99a210427af4e154429455aace076067b9e9a4effdabf22372fc6838bff5a
MD5 586d3264b7f99f45d6be99ba98c8ce0f
BLAKE2b-256 a4bcd3a4acceda1ba0f0063571aa7a7d7c902385431046cfae87823a87ea2fee

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 de0d52b45a4cce2c47ae5ea55ecc16ad7f41b9145d3a98aa799d8dcec4ca3bb5
MD5 84accbdc587e9b171ca9378bb7aa8947
BLAKE2b-256 15fdf5519784457b4f7ba068edf79ec3efe46799f77fa3d9f36718fe527f5770

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3a392971d9a080061e4c4e85cf31e5003e8633f42236074bcfb7118b5ba335ec
MD5 64a8626feb47b451ca3d17a46b71413c
BLAKE2b-256 7ea275cc9ffc478b3692f0cd60850c8c0c76f9928eb1c634ada82d1fdc4c870d

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d809644739c4c3f2a9814e1aa271181d6463122647cf921c13a77a6f1ef1eaec
MD5 6e5bfba92baef69593bd465ca7dfafde
BLAKE2b-256 d38f2cc0fbc57a7f6aac4c7fc41aeb343c0ca5fbfd4b3e951837c840f521ca89

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4183695cec1181aad26f4bf5fca01c1668c99b7de251b5d4fed5954aa90e5d0a
MD5 394ab97adc5d1bacfb63214dea6e75ff
BLAKE2b-256 0d58755b9e76300cce472d37dd1510d2a3c25069de500afab1d5a70e2111aebb

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb9d0ba10ddb7414ec0ce6f8c56d8cb3c0b156e6e68e771418a363af6891b321
MD5 a27ea24a1325991923a6781496bb3942
BLAKE2b-256 c87fbee4244647d2cb4ac9cd5a0ff678e5f835b46e3282602421043a869ee828

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39813f1cd3b310c32bc98930f0547c8b2d63d17c8dabd21ec19c4ab23d2c7059
MD5 dd1186454b6aec1630022d2062974571
BLAKE2b-256 791ca4a3b2a19610c0b66d495b786105e1876968f3e6b7183375b7f910aee353

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 068c01596ff3ca8f59aeaedc5fbb279a4348559a6c26a632d63078a7b6979b2a
MD5 d0a8646afd4a664175a30dfea752c49d
BLAKE2b-256 f57022e13b6724324e5d4e94857fb83ea09d276f6e552d83e866ddc36e694ac3

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d1d31e95972416a089769db2c8db9661c639a1c8be4ecdd97f0712d9e8e77b08
MD5 01099ea4b7b5d25915a85a86e825bd70
BLAKE2b-256 53f88649f3d284c673f431fd8455ba86df039163f6c0e1d71b3de9e2ca57c861

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 48969b2c4a87a1dc16245cededeb0c4240a62ae8fec61ddc8d3a555604dbf94d
MD5 f82474ad19eca6145237ece1c48147d5
BLAKE2b-256 f79a8409c1b3a0f023ab268bd7e4f073129ef875734e4a00b88e4dec049907a1

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5df300ecd59fc7120967dd0297a0b5a93c32221c315211d0e223bf5afaa09d17
MD5 7ed323e257392c7d8884cca53075f6c4
BLAKE2b-256 df23c779d7e84eafaa8023497aa663bf2e57b221e56785816dde13f6d6ba5073

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09ac27ec0698fcc74fe17fb12a053f0eb43f4b843db53fd2b5c31b867f62bab9
MD5 b28b84eebb8698fae0990cbb6c6eacb6
BLAKE2b-256 4b03b45fe1d6619faf5343104f7bafc95ccf0f045718e1808dbf093386dc208b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3078c551ae2ee638292333eaa982481c1118306971e4bbe376a24fedf759acf1
MD5 494fa97ffabed3e886f31a5030598a4e
BLAKE2b-256 39d6157f5c0b4b35a8671570a93228bb63eb9cc3fa3bd1c35f2e66375f35889c

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28e0499f88354abbc2c5e60e4e645fe417c43349435f23166b4c115f6f295de1
MD5 fb3fb83d536d1337e4c9e04e29fa7510
BLAKE2b-256 2427a3aa9b10e920f136e34ba554e5acbde9883631998286f84b8e347f79a7ad

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb91f597d5f03f9a0acd97bc02c8e4aaf22e1499ed4439fb2456ea96ae1564c6
MD5 c6bc222a80b122e3f6044b25c694fe28
BLAKE2b-256 01ece284dcd0f3e837e67d18a70ece751be19cc880d7b63d3932034713fbd941

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73a7233a462926ef86aa8d943e1071c2a087a21f78feff16c629385385ab475a
MD5 4f9949174478a87a09f8b851bae070dd
BLAKE2b-256 5ccffd94fe40ad555906528fcc93b571674cab79a40251d20694aaa8b4a17ecb

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 397dd60fd70f98bdc50c0bcd8a8d4a38d2918cad8714666f448a56a4abf03564
MD5 e3da26dfa99a926cbdcfb5f326b7d444
BLAKE2b-256 8b4bdc62c30216e9257e7ebffa8161bf026aa6705ad8388ae4fa545ac5a971f7

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a7a116af88bfc064e29ac74648ca1082b7fc110d97e106f429fa6976ea0cec7
MD5 6318608e384b7a7aa92e453e324d339f
BLAKE2b-256 acec458ac8f9dd43efdd8b16f0d58c71d13407bc0c7863dfa3382347d1b9db50

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91cad302580d17e397fadcd20f93521e6ab7bb066f0317a210060303aee28154
MD5 ac591d82d259aabdfcda3d7230271e2e
BLAKE2b-256 e353530d410708f2131bbd224033f74a3f2c28e3811c8aca30c99b052451d102

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 973eafb3c27f4bc67f5e13f92491f91cee4ae0dd2d50c1b19c610f34c9ded9d8
MD5 9c9d9acac3cdfbd43859e1b3bdda7419
BLAKE2b-256 fee20509ccac8e2c89489a1b800aa0e45a79ff3a3c86cb7c0a335c81bbebc89b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f28d7543173082c9d953314ce752588d87a1a2f59a7da440422530480cb4b6a
MD5 d109d7d33d7d5e758f1421bf39eb1da5
BLAKE2b-256 de90c3d8f6f76c9ce6b71aa4aca6d6baf063c1f75189b5788546707fa4e5dee5

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d929d69b9c9b960114eee2d7ee4a5ec4a3553bcace173c155d951f94f5c835c8
MD5 49d981d8a919e8ef15e5601e07189c2f
BLAKE2b-256 b3c109d261e4c71944ee51fb6001cc1f5c5667ebf1f4a46cc79b96397bf72b3b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 539fbdc7de1348f16c1fb18802a025bf07340b5f7de1699ff8f7cb60be063145
MD5 4a681e794744ebb2fe1c7030c4010794
BLAKE2b-256 6dc814c922c2b57a7b0ad4a587931b1ba13868f675a51db1f3d1f6e970b4ed2f

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 14f9e64979562e2be9f92f0200179c1e7f0e8dd5270beabe40198b8224dfbd12
MD5 18d9c33286588f5039a214a12ec60793
BLAKE2b-256 42b8c0f87e6802b7b3a111b4ffade72be11c88aa1d9b983dec58e43269bb414b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2887206b5de45eb2def3117455b479bf82fc65989eb74d0173ec56539f4a854e
MD5 04b44177d3d96247047ea72362b971c6
BLAKE2b-256 4f45dc5acdf4d48fe57814939c792a9657a8bcd13b1f3325c25ebc2e6f8f9db8

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cbc1a5f7cca057fd107ac30c879a16f6bd7de0819c5052a22ec87220fedcd36
MD5 2af95ad11b3f4b4ea882e8282ae50384
BLAKE2b-256 f5cc40009106d92941a49e8b9f913ba9b54c2aa607764038571e4e1acc5f2e3b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a70839d9a1f569e1e5424f27ed01a32133d658beae4cd1459eb39de1e0483bba
MD5 28c1521d66ee5de31c4a725b32e7c2d5
BLAKE2b-256 72dcfb7a441ea45bcc3449f06ad3d6f7f8c6c0705e4a3d62a70f0635c83481b7

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fd5ce38397f27e1173423f82f14089da2f61a45b2f1fb307a943765f5c56b3e
MD5 f66fe15a0330a798d5c8e0fe59e3c4ed
BLAKE2b-256 5a4e56ac240c213086272e688b24ca7dc757965c56481c4604528b68f4c90082

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a10b4f9c99123eb6515a98cc972f354d2455884af19856b82cd1c0d6ab2602f
MD5 aef4f1b735379caf67fc18c77901aaaf
BLAKE2b-256 39b372672a83031668b4026b52fb0c0855b43ec0cf84444649d8bf3eef52ec89

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b07bfe9d161546e4d9e1379b8f8b4cf53b6217f0dc03f37c00646e8906fbf71
MD5 802a69967f209b622fc0a8b575edc7c6
BLAKE2b-256 04d1d4d164e67d81ea0b3b245e7ac3eb1bdb3de51e70b7e0f6eaeed105d1706d

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 20c008550314d1ab69c92c7e68c75e01e4e2f0c66e5c4458c3d80783f75222f9
MD5 18886176f683a66ec1c64f296f0010b8
BLAKE2b-256 a38e619a40ff64622a3cd6c3060ada56f715db4cc6483ad692f74de1c3161f06

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 798dcf6da94435a0c2bbd513fcac2026d950217bfaa79376c5904c0b36cb0731
MD5 69378faf30ba98e68002e6bb26ff035c
BLAKE2b-256 7bf90973de97be5118b702a4f1a3428b87110dcae3c2113a600cb6b994bf5a18

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26a937670b64427f2dbd310f29981f60c1f8ba9152a6ca435733c70446862995
MD5 c9c50eaf97a44a05a6402302202b64e8
BLAKE2b-256 baee269ad483e0415e90198450f4f1d86774ca45756409978fef5e3c6cfa7045

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b2f6187ad8d3d49565fe5e0acc60060126cc8c2ac6feedbad75d1bc46c16f74
MD5 5a12748b5bcb4f703eb2df7975c6e5b5
BLAKE2b-256 fb086efb2c8e1aadf23d5b49f35dbc41ee05ff0e223454c0b42eaa4d88ca4083

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 951089b6710bf38cba2e5a6ba2d1a7f9fd27819c981a028f1a66583759aa11be
MD5 3081b83868626f38a736c4b3eaed4358
BLAKE2b-256 1a8b553ff688b60daac2ad5ae9cef128b30e75e08d96b39b53b5476e4a49385e

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73fb97fec02769e63313240abe339f62c5616354cb0adcc79f991a9342de728b
MD5 892db9e0b23642541ad97dfa752fe2fd
BLAKE2b-256 9ee2e0fea516ad9ea9da0245ddc492ab1c586b4b317b31aad9422f926aeb78aa

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93fabed410e26c875688b928b2b4820972410fad9655d18a57205da57912e5a2
MD5 03dcb6da612a40e2619f5ad211eb4bf3
BLAKE2b-256 94f04ccdcb3de6452702586823d31d77f2a9cfd8bf4a7d7185fbf0b33f7c0d79

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pywhispercpp-1.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywhispercpp-1.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 73d4771b32f9168f57e4d25470a80677db9e6dd9df9a198a685e3923abb5caa4
MD5 03d7674112406dbc828166c044a84e36
BLAKE2b-256 6c8c2fc44afb72ea8d92ec06b9df08b865312419987dfe0f0399c56f7010387e

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 996c05aab859dd4e1caf89a6fb3fe5c8397a43df9fe4df332b1ef56dd5e02c00
MD5 2d0a0065472d20b684fb9b7057ea73e9
BLAKE2b-256 86a2a6a43b1b554cc3858ea9a1830389931db5b5e28510130f6b1a77fca34c77

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13cd81bf649bc30c767e7932fd0418e3686f230057c4b44e8efddfe76becf309
MD5 ea55af538a0c496899d25043999a4ffb
BLAKE2b-256 54dcb83f2c0bf53b9f21752dc0e17fd7e3dcb37538834589b6645dd7d4c73061

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c55b62a5edfd3d1b1e21c4492d80201c340a70fc23754503506f97010092f6e
MD5 a518fd0b4f58f4fd874dfd4a96cdde6d
BLAKE2b-256 60109a486c08a6f662f6ac1fc65a5f2e0f0bf9b592700611be27a3e9c29c766b

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8aa0de63dffb5de307041fcd0a0acf4d28504a41c120535bd82cc3894a18b7b
MD5 e25f402f490155756475085c444f1c75
BLAKE2b-256 65e9d65bd34ba5cc21788c6005ce32c500ae0cf7ebcf60f838a99e5fc5aa2b9f

See more details on using hashes here.

File details

Details for the file pywhispercpp-1.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pywhispercpp-1.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8505e512a7ca2e305a553e320fd8ec734d1b73d32b44b195f6daf91fc2f1643
MD5 38e2486952f2e584cfd805bc453e74b1
BLAKE2b-256 9351c0d6bdc4f6ee02c13f33f28f7e5a3049ea152dab646eaa9e8883e0b66f8f

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.5.1 This release

64 files

1.5.0

50 files

1.4.1

46 files

1.4.0

46 files

1.3.3

36 files

1.3.2

36 files

1.3.1

46 files

1.3.0

50 files

1.2.0

53 files

1.1.3

41 files

1.1.2

41 files

1.1.1

41 files

1.1.0

41 files

1.0.8

41 files

1.0.7

41 files

1.0.6

41 files

1.0.5

41 files

1.0.4

41 files

1.0.3

41 files

1.0.2

41 files

1.0.1

41 files

1.0.0

41 files

Supported by

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