Skip to main content

Official Python bindings for PocketSphinx

Reason this release was yanked:

wrong version number in package!

Project description

PocketSphinx 5.1.0rc1

This is PocketSphinx, one of Carnegie Mellon University's open source large vocabulary, speaker-independent continuous speech recognition engines.

Although this was at one point a research system, active development has largely ceased and it has become very, very far from the state of the art. I am making a release, because people are nonetheless using it, and there are a number of historical errors in the build system and API which needed to be corrected.

The version number is strangely large because there was a "release" that people are using called 5prealpha, and we will use proper semantic versioning from now on.

Please see the LICENSE file for terms of use.

Installation

You should be able to install this with pip for recent platforms and versions of Python:

pip3 install pocketsphinx

Alternately, you can also compile it from the source tree. I highly suggest doing this in a virtual environment (replace ~/ve_pocketsphinx with the virtual environment you wish to create), from the top level directory:

python3 -m venv ~/ve_pocketsphinx
. ~/ve_pocketsphinx/bin/activate
pip3 install .

On GNU/Linux and maybe other platforms, you must have PortAudio installed for the LiveSpeech class to work (we may add a fall-back to sox in the near future). On Debian-like systems this can be achieved by installing the libportaudio2 package:

sudo apt-get install libportaudio2

Usage

See the examples directory for a number of examples of using the library from Python. You can also read the documentation for the Python API or the C API.

It also mostly supports the same APIs as the previous pocketsphinx-python module, as described below.

LiveSpeech

An iterator class for continuous recognition or keyword search from a microphone. For example, to do speech-to-text with the default (some kind of US English) model:

from pocketsphinx import LiveSpeech
for phrase in LiveSpeech(): print(phrase)

Or to do keyword search:

from pocketsphinx import LiveSpeech

speech = LiveSpeech(keyphrase='forward', kws_threshold=1e-20)
for phrase in speech:
    print(phrase.segments(detailed=True))

With your model and dictionary:

import os
from pocketsphinx import LiveSpeech, get_model_path

speech = LiveSpeech(
    sampling_rate=16000,  # optional
    hmm=get_model_path('en-us'),
    lm=get_model_path('en-us.lm.bin'),
    dic=get_model_path('cmudict-en-us.dict')
)

for phrase in speech:
    print(phrase)

AudioFile

This is an iterator class for continuous recognition or keyword search from a file. Currently it supports only raw, single-channel, 16-bit PCM data in native byte order.

from pocketsphinx import AudioFile
for phrase in AudioFile("goforward.raw"): print(phrase) # => "go forward ten meters"

An example of a keyword search:

from pocketsphinx import AudioFile

audio = AudioFile("goforward.raw", keyphrase='forward', kws_threshold=1e-20)
for phrase in audio:
    print(phrase.segments(detailed=True)) # => "[('forward', -617, 63, 121)]"

With your model and dictionary:

import os
from pocketsphinx import AudioFile, get_model_path

model_path = get_model_path()

config = {
    'verbose': False,
    'audio_file': 'goforward.raw',
    'hmm': get_model_path('en-us'),
    'lm': get_model_path('en-us.lm.bin'),
    'dict': get_model_path('cmudict-en-us.dict')
}

audio = AudioFile(**config)
for phrase in audio:
    print(phrase)

Convert frame into time coordinates:

from pocketsphinx import AudioFile

# Frames per Second
fps = 100

for phrase in AudioFile(frate=fps):  # frate (default=100)
    print('-' * 28)
    print('| %5s |  %3s  |   %4s   |' % ('start', 'end', 'word'))
    print('-' * 28)
    for s in phrase.seg():
        print('| %4ss | %4ss | %8s |' % (s.start_frame / fps, s.end_frame / fps, s.word))
    print('-' * 28)

# ----------------------------
# | start |  end  |   word   |
# ----------------------------
# |  0.0s | 0.24s | <s>      |
# | 0.25s | 0.45s | <sil>    |
# | 0.46s | 0.63s | go       |
# | 0.64s | 1.16s | forward  |
# | 1.17s | 1.52s | ten      |
# | 1.53s | 2.11s | meters   |
# | 2.12s |  2.6s | </s>     |
# ----------------------------

Authors

PocketSphinx is ultimately based on Sphinx-II which in turn was based on some older systems at Carnegie Mellon University, which were released as free software under a BSD-like license thanks to the efforts of Kevin Lenzo. Much of the decoder in particular was written by Ravishankar Mosur (look for "rkm" in the comments), but various other people contributed as well, see the AUTHORS file for more details.

David Huggins-Daines (the author of this document) is guilty^H^H^H^H^Hresponsible for creating PocketSphinx which added various speed and memory optimizations, fixed-point computation, JSGF support, portability to various platforms, and a somewhat coherent API. He then disappeared for a while.

Nickolay Shmyrev took over maintenance for quite a long time afterwards, and a lot of code was contributed by Alexander Solovets, Vyacheslav Klimkov, and others. The pocketsphinx-python module was originally written by Dmitry Prazdnichnov.

Currently this is maintained by David Huggins-Daines again.

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

pocketsphinx-5.1.0rc1.tar.gz (34.2 MB view details)

Uploaded Source

Built Distributions

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

pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-win_amd64.whl (29.0 MB view details)

Uploaded PyPyWindows x86-64

pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (29.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (29.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (29.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pocketsphinx-5.1.0rc1-cp313-cp313-win_amd64.whl (29.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pocketsphinx-5.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl (29.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pocketsphinx-5.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (29.2 MB view details)

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

pocketsphinx-5.1.0rc1-cp313-cp313-macosx_10_13_universal2.whl (29.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pocketsphinx-5.1.0rc1-cp312-cp312-win_amd64.whl (29.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pocketsphinx-5.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl (29.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pocketsphinx-5.1.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (29.2 MB view details)

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

pocketsphinx-5.1.0rc1-cp312-cp312-macosx_10_13_universal2.whl (29.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pocketsphinx-5.1.0rc1-cp311-cp311-win_amd64.whl (29.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pocketsphinx-5.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl (29.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pocketsphinx-5.1.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (29.2 MB view details)

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

pocketsphinx-5.1.0rc1-cp311-cp311-macosx_10_9_universal2.whl (29.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pocketsphinx-5.1.0rc1-cp310-cp310-win_amd64.whl (29.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pocketsphinx-5.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl (29.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pocketsphinx-5.1.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (29.2 MB view details)

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

pocketsphinx-5.1.0rc1-cp310-cp310-macosx_10_9_universal2.whl (29.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

pocketsphinx-5.1.0rc1-cp39-cp39-win_amd64.whl (29.0 MB view details)

Uploaded CPython 3.9Windows x86-64

pocketsphinx-5.1.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl (29.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pocketsphinx-5.1.0rc1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (29.2 MB view details)

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

pocketsphinx-5.1.0rc1-cp39-cp39-macosx_10_9_universal2.whl (29.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pocketsphinx-5.1.0rc1.tar.gz.

File metadata

  • Download URL: pocketsphinx-5.1.0rc1.tar.gz
  • Upload date:
  • Size: 34.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pocketsphinx-5.1.0rc1.tar.gz
Algorithm Hash digest
SHA256 64ff317bee88ddc59f0b4a11c61a6cab29ec48dc0b65693353167a3ca811f614
MD5 1c5835a3c4254e8917640d780f9b1b7d
BLAKE2b-256 91e095adef55eb3c2bf3a064309d0102ecba57464d8a8282cdc58ffcefda3010

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1.tar.gz:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 484386350659da572ae2820d03794f6bc811b2b4ad47ad2617390fbea90b01cd
MD5 4110d4b60e35e0bc8755bab76c006921
BLAKE2b-256 0f58b7c93b070e8289a819316a3ea947b610337e0b64597f735dcc6027e8a679

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9b452a8be1cb7a68d7928113eff647dbb7397471eddf022dea8808d9ed4fb13
MD5 4783d5cd5e7c5b0378d55672dbd1543c
BLAKE2b-256 4f16e020ddd10bbec934838fcecee01bba4757d35ba67ae386901c8037572a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 704b39f90ffdd8fe04211b8db394f4c142bea8113a45bfc98de1cc2595b3b74f
MD5 6d87eac24ff5690a3b2070ea556c30a2
BLAKE2b-256 1b55dfe2ca3dfdf6a404b26a0ccaf1b94b3d2179438bb15ce86d0ef374dee545

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aec85f1b6dcaf23cb6ee1c7f0e4db47fb5bb043265774dd9e372e0f73a5377d1
MD5 e5179bf609c51dbec899798923e9a04a
BLAKE2b-256 6ccef302b69d6cd6c3e4a408f3d4e3ea6a20b7a4fb03bbe2da09314742d7774c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f27d80e9c29af98e92d5e6b47a02a90bff8c3f51dd0484b1601c65610c0c1309
MD5 414f7168ac59f62502b16d172c5a152b
BLAKE2b-256 7ce9cddd25a7f51988ec801edf692485a4633a24a5e8b15561e03b631cb55ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dca6ae328cb3899d9d502f350bc131d5e0806c341ae35cc0759ee793c777888
MD5 abf4b296d1d1c521f56a7c332097f89e
BLAKE2b-256 0a9f764523c3cb3bb6f2e2f0a8c54d75d9680c5611f66b53ed08ab4246eed78b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 823a42bb731239cb67162084f35e16677b89e4858fd7c3655e833a6395506b58
MD5 97f69473da603c7a84fafeb15d35c4fd
BLAKE2b-256 891fd5ec58af952d359095de70b7780575c4cb896a9601808eaaa6d2f141a669

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5b9ea70442a60c5ebefb2b29b8554072aa6c4fe5969732454a9718f3bc36c7c3
MD5 6c0852b23a3e4c6d60629738138dd3d9
BLAKE2b-256 f2c486ecea6f77cdee0ce3e1ae18ab4b178d02d068138e2e1692d1b85507f512

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e6dd438a51fb5bb8f33d76ac4d14e21d751011dc47592f246f1267ecd09238d
MD5 d8f7bc4c4e82864c33a623e24f23c5d8
BLAKE2b-256 8c987f3b2bc9a7d389a2b37cfab540502b0e404f0131837991b7b3018ac3b51a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d86f5bcda6bd13e7d710e1e2600fa5a9c3ec49b59e9a194b0bf97fb1b1cdf9c0
MD5 3707cffabfb6351487c7b0724b6a8dde
BLAKE2b-256 0ca50d43ad820c57d49472aa760fdf7b8b8d462e65710df4b72d398573ece1c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e56813d2aa9588bd1f6e509ad49f62bb4820e1f672e55e27fbd55ebee9656c7
MD5 8940c8ac3b7b37d90170b7ed1202bad8
BLAKE2b-256 6f6302d96c5d4c475ca8d355f109b1bca47d1b36c47c75ca32758de08cc980ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a1d3ac504b1a10be5bbd444c92a806d75ac793a9c2cf1e28afa55de2dc9299f6
MD5 c4815634bc03aa6345e7f418b95b5ff4
BLAKE2b-256 13a4f8e4be3c3da21aca67e1517e536722d55cd63565189efc8cb8707268d5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9edc9172e90f11797c59ceccdcd55b4f08d5745e89036aa60b4b54784348aae
MD5 1e5e0a84e3678a6c795716959c11aafa
BLAKE2b-256 45cfd03d39708fa37e704a919601d977c1ee1cda89e3892ff5070a451a3d4743

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f22af54c9e77693107a71e4373ec91a0d330654444381fcd2b5d78150b302372
MD5 76173b208af90d34592cd011cf97da5e
BLAKE2b-256 edd59c2a1fc8c6a8da5acfaa276d3a9c763ed3e9d865416e1f882cfffe9cc2c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb6833b398592c00ba5450e3666d8fcf45bfaaa520ea6c43c924c23a356d1747
MD5 3b3850d3434a24e81ada9471413c77b9
BLAKE2b-256 3d2d9fcaf0811dbb90e7c06256c1f5735745ed0fba752d3d12f1254589321d4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6d7cab7f02be601df7836e2e80f85420d33a9d9e31ef01cdb63a3d8ea4255ccb
MD5 42101d92ea0f76e4dae1d48cfc88c0f5
BLAKE2b-256 6913523736a431f11136005e7148af59f8e5fdd3ae2d14ce7b3470d097d928eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85eb1ee115f7f85a507ffda86535507ca1cc7e54af7ca4e7986e5f75f29a2484
MD5 fa0fd27d2f621e6dce987d4cd01978cd
BLAKE2b-256 7bf624e125b25f2bbdb877ec728ca446fdbb16214b29e330ccf02a4e3bf385f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffa761960d299628fcc7e1ef2ef21c410cf1dab9f4ab1f11bcc78f8dcd694a49
MD5 3b4ebe0beea487f559f43e10d7bb89db
BLAKE2b-256 71157974bbf5ad9233ddea2e9a6a8e72e27e1aa7e968fc621b690caee7ead037

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6519925a010290eb21089b6581f7984e052475fc6d42a218791ee2024bc6834d
MD5 b0e64f005470c07e44787d5b8b1fa121
BLAKE2b-256 66e18780d9aa56bd641eda982817869e1f88110e925f14907757def1e9a3495c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 84790bc7a1ca1dc1e5261a7a1003d7d8edb5b963abc3a8f8e6830e7a65de8ad1
MD5 894003332c43caef28fbaaf72fb221af
BLAKE2b-256 eccc905c7cf712e4bfb1a50b4ca3588a9ba5ad859c855f08b0c3425b08d4149b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dd2fdee193d2b3d5c5be9bcad5a45334e45540993451c5ad77e4d35fcb2067f8
MD5 cb6db0418448de6b6cbde4de380c2e7b
BLAKE2b-256 2efef4e77614f25a5f5e28ab1061b030ca5dfc124ebab89cc07a9dc4dda11ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp39-cp39-win_amd64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72e967296ef60e397396c1e3199d82f8b748a87a20aadf8202f2369908931c8d
MD5 246b8d71e19b471800a5cfec0004a513
BLAKE2b-256 dac1a1210a5f07c32d9c8760925512e6d49e8eafdf95a02a5822fe0cbca04a6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 473ddc0632fda5c9e0b7821a0d2d0c36f411b44562e71453fc0bf9ab8b3847c4
MD5 e7b8bc9bd436640db2927a9fef7f1f3a
BLAKE2b-256 9eb0b0978faca2087896f31ce19b10f9c7ba02e4d2ddbe5a8f0a85cbd20fc447

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

File details

Details for the file pocketsphinx-5.1.0rc1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pocketsphinx-5.1.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 701f9c4f3b07c6f1a179d3bb51861fc37616f699a16571b706b298650026e5f1
MD5 417d318dac9022d3ed3c0a4469a6ca00
BLAKE2b-256 1f3c8414aa74eae15893b29599053fa82e7b9ebc2a079106c162855b9621cb98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pocketsphinx-5.1.0rc1-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: release.yml on cmusphinx/pocketsphinx

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

Supported by

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