Skip to main content

Python bindings for whisper.cpp

Project description

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).

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

pywhispercpp-1.5.0.tar.gz (2.3 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.0-cp314-cp314t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pywhispercpp-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pywhispercpp-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pywhispercpp-1.5.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

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

pywhispercpp-1.5.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

pywhispercpp-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pywhispercpp-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

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

pywhispercpp-1.5.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

pywhispercpp-1.5.0-cp314-cp314-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pywhispercpp-1.5.0-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pywhispercpp-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

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

pywhispercpp-1.5.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

pywhispercpp-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pywhispercpp-1.5.0-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pywhispercpp-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

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

pywhispercpp-1.5.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

pywhispercpp-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pywhispercpp-1.5.0-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pywhispercpp-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

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

pywhispercpp-1.5.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

pywhispercpp-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pywhispercpp-1.5.0-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pywhispercpp-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

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

pywhispercpp-1.5.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

pywhispercpp-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pywhispercpp-1.5.0-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pywhispercpp-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pywhispercpp-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pywhispercpp-1.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

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

pywhispercpp-1.5.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

pywhispercpp-1.5.0-cp39-cp39-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pywhispercpp-1.5.0.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pywhispercpp-1.5.0.tar.gz
Algorithm Hash digest
SHA256 5aa54c73ec96617d97aa519dbbf817e44255eddd9bd52ee1243be61028dbd018
MD5 b9f244dc1422c751931fb7d785204a6c
BLAKE2b-256 1c438778f0685a4d32d74efdfa78fc5f745ca9998d96f8121dbf7793db2da5d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dc8dbcb6033db306e9ec450d835c005dd491c457937c79ef2673ea8797cbb93c
MD5 520d12aa307da7a337eb5384adecb7dd
BLAKE2b-256 0a5600dcf7627eb0a0b5db4d1d36c9a3d91d86b92e13fd53f4f3e72304ab53b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pywhispercpp-1.5.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9806e084ebf956c7e492c76ea31c708e894849024772b3c3a57f85c342afc341
MD5 c10dc41b9c4f13c9c240b052cff28bdf
BLAKE2b-256 9385c15aa8ec8c1a43c7097e7a437f10aaffd8db3eb12ff27fff030688d0e407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24da0c0bd33068f4c9c3f45eae3e6b7fb31d9b5d3487e4e1e1323b4253288d62
MD5 305a6606c837692f98871cf1a75ab665
BLAKE2b-256 c1e74c6ab180c30e02ddb4e49e2c27ea2e82950598c3abc681db6841f109798b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 358261055c56a96a04f6b0ff419633ffc61ef61027788b2bb2c6e7dca69abdb7
MD5 68039530375ce3331d25f7b4e020760f
BLAKE2b-256 c6e5ad59d5979e63ac9455491d3c1fd219e4bebd486bec97765b6a33ec5f013b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 568669bae45bd879bba1e35401cefc89d572428bd17326ce8437107ab80003d0
MD5 56d0986a2cd7c1248a0bd8ade0a27ca9
BLAKE2b-256 aad4ca6ba9b20beac14d80bc10d9bd5e826e4d3efedd5e6ac41f389d7801aeb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbdbb1bb236f4481ff6ea475aed9ed091393ddb02271df309645d71de207778d
MD5 8f00f3dc4275341d01fac5d519ac4b46
BLAKE2b-256 713cab215917094403ee3255b9c52b495525fca809697364e4c247324de86803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bb409027566b473100e43f07fac48f9c8bdb6cba1ac0fbff5594a6f5a0e1b7e
MD5 9189952a086dfe0b4802074a2a255efd
BLAKE2b-256 006bd1c9cacc56b4a2064e3f71ac14d4ba848cd4653724ee4431b77e39d8a1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 77d4d0ff382b5bc1369e9f77a851b45659edf5974e0903ffb15b981a043d216b
MD5 98b2681bd79605126735f35e8b83f893
BLAKE2b-256 51622e331213b3a211d79dcbfaa1abb6f05dc20df2e9aa49dc787b9b65e7b47b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f5d13b4a7e34b9f4eebf70bff150ec36f4145c580bd5d812b9a3139611e7433c
MD5 20319a14afba01fb2497fc5626ae928f
BLAKE2b-256 0888a92e632999d26b410bea6244e24f2606467cd88e6980098e134b1ccbb1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea34ae824a6f934ba7736e6440f93cc467a7ec98b9c8fb2e5a37bb439ffa93b9
MD5 dbb3a84db48d360e776668d0ddb504cc
BLAKE2b-256 120c077f0649f40179a04b69d54ad5a57ce5229f92fa0d17f9c512bb051fbba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2fe9312fe3c08f832da392296118cc8cc1fc901753289132253f2066d911357
MD5 ba1c386e0aa40f6de47d782d00c757fe
BLAKE2b-256 506e273c2e6d73a746a5f2efada5886ca532da3cc312a267a7c0bd5e629e53a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6777b5d40c0679952ded7934f7119d5fbfd606ec348293f869f430795609bae
MD5 0e20249bb77c6a5bbf48b32a43392c40
BLAKE2b-256 a7dee324e88c2a4dfa985eb078bcb3d4f9f4cf7f8777d0653371f10110af4ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c393c01a0a77007a17d17cb706e08cba97f0e35ea0268733af1792949d03ceb
MD5 83b81a2ff4cf583b6ba3a1dedbeb39a0
BLAKE2b-256 0b8c58786b3fe14d68cdba055922c8c2b7503588b01f46701a5cc36dd58f9ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f94300f2fa1748f67f63a9240b526e8542b2dad1ceca5ea87ec2e9e15a939a
MD5 43412863aa27e15de2066a5ca56f78e6
BLAKE2b-256 1c34391d4585b61d35dd8fe2b90328f46bec1205ba0706438ec385c51a914838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 57dd5111d4dd9fe3f0e784a03a3337df5abd514260a7d16656733d110316d2f0
MD5 7dc67d0f2b61316bc42f4f6a045d6945
BLAKE2b-256 9e428926c7ffe918c82a574fb63b15b252fd6c8569e7cd45077f6cb98b1af0fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pywhispercpp-1.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d2805f15361247ada04a34b51c556514527b984f9b089a4e32f1b2a4abbc5367
MD5 2fff1f08cfa33ee5f3870d2546277835
BLAKE2b-256 265090365a2aae2ad8fc7eedbc89321537dd7eee1e8ba37397ce9f5ec4f26f71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9498eb9f4c38ea121da2435b5275c267486a5e14dddf5e72ec54a480b1fb44e
MD5 164554c88a68157e843ecfa44c5c2f8f
BLAKE2b-256 4bcd645214d9161fc50f6b7ba2a44897b9cadcc0358f9cdcaa36e913472def4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4363fa893e398d1f18a5775374109aa310022b9f4fc777a89329b12963f3149d
MD5 bc7c8e9615e43fbbaff176b934492ea9
BLAKE2b-256 214250fc2a47a80ac9464e5e17cf0144a80a1764426277240b6bb8ffe930541b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ea8fa7f5ce602d3e986fb11c4c2973b471f1b14e0fe75e01a66f1a60aecbfbf
MD5 c4a6a1d91bce309bb65c706b8b3aa830
BLAKE2b-256 dd588e651f7210eeb64721562406a69c769e72fdd4560fa8d5ca4895cab5b4e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 649af3ae0f9dc0d0dd757d8c2adfc6d929b1b203ac1ba85d5ac453015ddd6e63
MD5 0c97caabccb33f2c1522acdfcaaeb3d3
BLAKE2b-256 a07baacf3166d890bc6efe73ad35f5de32e96ce69706878486b50d92567e7554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64415b7687c0b39e66652b38683983ef7f23e174d7b3b05caa539955da8b088e
MD5 ca1700e804759f8ba12cfc4d36a2cd97
BLAKE2b-256 fed10fa142a92fd89bde6b05c8af4f4f48caae64ae1087771b61a43aa5e4a7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f9b1cd9dd4c3eb7fb2b777529eb62618e58a6bb05be20f82b7b1afe3d0b12274
MD5 546c2765a7bafeaa1d1b26ef16a6580b
BLAKE2b-256 6a88fb11006f84b0af46cedf1f66a6190bb78cafb29c0d89d5a73d5ba25ffc43

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pywhispercpp-1.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 03025227d0da211e382db6b6b16d910a267c663b6b2c57092b1200965ec45393
MD5 1de6e2bc763d3d07161bfa6eb6acd720
BLAKE2b-256 9715bf1ff8b4fbc777fa2bfc89ff8cddff103ee251807f3f440a518184da7570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f825942067da3b0c48fc5b552b816fcee1761e955b9fdfdc911f0ab2d6fff11
MD5 ec7fca89ecc88495ad68010f74780714
BLAKE2b-256 e1c82e63aaf0c1c6f9a3e4f05db9c2c6f8f922937f0b508f5f9e338b2ac5e58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22f9ddf12f6fb0fe3c43465d976b554e8928fcc113c902127e94c792d85f0631
MD5 7b1528e0c5c2cbde6e18559c655db256
BLAKE2b-256 458e28069ac89a08ebc3e56616a07a36c1628d61fa679a45ea3f507da7f5cb13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ad4071772eb9dad59a741611e44e3819e6249c46e295ab8468609d03c6e4232
MD5 5a711dd106b97662182405e9d68ff368
BLAKE2b-256 6ba7d8b196d1fa83ec6072c32e021f1987079bbeb25009a4fe7a10967d02b249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a839b738936a8cd72cdd55c59a83a462820532bee78e233241bf9a3503e92144
MD5 02c0d7dd395270e5192afab7683fd07c
BLAKE2b-256 8aa3e1daeb58fc76b9cd5f108708ecbeb4e1175ee9d366502033066eae71c51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24602b8d0329a224fe6eb1c1e455853e983a5e04a63d4cb759ae2f275e254f5f
MD5 43439c20f4ea71cb476af0dfee611f82
BLAKE2b-256 7822e944ab33c3daf6c78f30d6dd943d84ececf3eb4625da2a3eedacff5590cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1bc31f684b6a38000e397824155bda3b45b61af6acc9f7e0f3bfa70e20b574e3
MD5 9a85af2efc7d5936d5c8f33ce1355398
BLAKE2b-256 72167795546c6fd65056c0818165280c7da84c0dae7c5cd39dd2d7759496d2ee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pywhispercpp-1.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c35c16f5da31d79be604dfd082b8bb67d5d46ba2f7f59bf5ab13857d5cd6ec6b
MD5 8ebf85d97ab77a9bc42c2743ddd8cf4f
BLAKE2b-256 4667698d430788da7da92932b3313466f5e43f3e7e7bee88ddaa22caeb0da157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b592011cd992a5bcd36d0923477fb4cfdd338a0c7ce58997de195a14ab2b6d9a
MD5 7360f99d4fd88f29fd14eab4da206777
BLAKE2b-256 246aeab565086cd200f65b5e6f99e09ec41fa32df3e034bbb95dea9d214fa0bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70e925fad2c48554d3f5baf79e2746540268d2974b5cf40a4880887e4a065c2f
MD5 c50c83e11596e7f172704ebecda23d23
BLAKE2b-256 9c1c085db38c0cf10b944bf7871574006843790a9bf993fbf3c35b9375a85e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f895cbbf5ba71a9e3f0e6afb4b6ae49bae5c716dc6a8a4d905eb789d9fe2238
MD5 da17a08e01b9d492de08982d068043f4
BLAKE2b-256 f6c3079908901f25db85e2b1ed11b5bacd0aa7652ff87887f277209dc205a29d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b43ddd44e65ca53d5ab1f62b623bc3edc64019bbe06b9641fff2dfef704c990
MD5 1af59570b5f16fe3180ff87a13489cf3
BLAKE2b-256 8ebee2d4c0d04d36679a9e525959163c7a87aa5dd97730da6e8a130a90104a0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d92eec44b49595ab1454cff1d10faa83b0b27779db8d8f00592ed363f0c5a262
MD5 db5635c24bf81f38e73a1dcb4d33cc73
BLAKE2b-256 9ad4a0519c6e8ca2020c46d93870fbf901793e2624ac5c1b71d710aff0a27fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb36ac24e0c80199cda03a393df53941f0dfaac463773bf770163984fb984c7e
MD5 860b626a784df85bd6ae333e743f786d
BLAKE2b-256 6809f0524d52241db30a112c13a2ed514f5b967a48344402b635470937c6869e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pywhispercpp-1.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e287bc277eef67729c57a4c7abf687e38ad9bd62074cdf451ca3e0fcf1ff4859
MD5 c1d3a032b80484541c0103016e0e6145
BLAKE2b-256 19afda17994616ce50b11f22a0b8d502cceae2d57c53f6eceab66d5ed050e974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0804fc3a2f168f78b6869386c221a3622bc76cdb5ba5e25b8347572aac704542
MD5 c8e10f3349eed71ede269cc8f4a7ece1
BLAKE2b-256 8b86673af5d1233da21d6856f1773df90c84536807488c1cb405e7070e27ea33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a96816cf6b8d62c19ff3eda89094679006f86cef81acd60339ca19cc56241b95
MD5 fd1b879ae64b67c5576fec47a8e5dd72
BLAKE2b-256 b61c8f006bf53a7221381a31e30acac38cfb0edc73b635076ef144fece0a5ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e709172192331a7e3f18fc227279e3e11295894b5e2d3caca1bf837ecb69128
MD5 ea13fc5f8197f39be86678c98ad5f9ce
BLAKE2b-256 9920d6fee81611f5f8cbabd1fa6bdcf4e770813da2f08f6a9d2bc86e1d6d7e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce3f1e511335ca6c4f8cd2eabd8f0db5cdaff54047b7aa3f24bd962a9436b077
MD5 6f26598584bada15c2c289fece864cf5
BLAKE2b-256 5d23f8462b7c0683bceb083ce2cddd370304d5289e7618dc36b811d6b21859ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2498d591cca97bf186adb0d746775c21debd8a264b2053358f252cc9dd10167a
MD5 10fa4dd9d59537de43b5e7fa858b15d8
BLAKE2b-256 8695af2a2666433c9aa390a4192bd9a32905a42ff3db097df93d9fcb8575be7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pywhispercpp-1.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pywhispercpp-1.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 11a3cd1973238beccd8ca523e7789bee88956968881893770bedd26be1c995d7
MD5 92acdc3911efdaca3c45caf611fc01f1
BLAKE2b-256 9d9c9e8aa93faa95b944b240ca40453ed02b6134c34739dff3b94e22ccb40188

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pywhispercpp-1.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e2e89712d340170771e538e39543b904535195621a0706836ababb69fb159ff1
MD5 e0f3a9fa2207ed5da5ccad3c48ce2835
BLAKE2b-256 da70256e10bf1de19756813c2218b692e046522f64317221e0f433c1984d9f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8796bcc410b7f6bd5af430e22116458d178effba628555c4c1d7db9ecce11d55
MD5 2a8c50d1c8b8061825b3fe19af4ed640
BLAKE2b-256 55648b0f6339dbef62bc924376a5393b0b0d5bcb749b8ee392bf1bd73a989cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 521df17d4e1d7ccd192303051bda8ce8b516f66816ed0b3a32281b57a6a0d3c4
MD5 dcbf4e8ae6a11c1ff0059c97e130d7fa
BLAKE2b-256 1512c8b2d98fd4b16f74f4ed0c347084f4edf4c313254465280bbe3c0e6064f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be1683fe67b5980472779eac8592536f993b987e193af21fda7da1c4c929561b
MD5 0cc4b3f4e949e330112841aaa4b151f0
BLAKE2b-256 145e28edec0405bad84d265db8d2dee4baafd47dce9f3c358335b365c169d5a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eed1d5f73d8c38f2f18cdf11882860ac7e6e061e611c67627933d7e1b59b6fcb
MD5 f1aa317e8379d0444d0e4cc913ba2f6b
BLAKE2b-256 66e74abd3104c060e796fef48e26458c4cbbabdad7c3c510de6b6841675b56f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pywhispercpp-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd163b551b95112ddd18aac6bddd4cd30636790bff288274ebbb404e3f66a08f
MD5 fff113091b8ce693d2fa47c6d19f52c7
BLAKE2b-256 919aed55b903bdfc803f28b29c8edc124a38e19e1ac9d1e18656b1cfa0f83d2a

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