Skip to main content

A python wrapper for OpenJTalk

Project description

pyopenjtalk

PyPI Python package Build Status License DOI

A python wrapper for OpenJTalk.

The package consists of two core components:

  • Text processing frontend based on OpenJTalk
  • Speech synthesis backend using HTSEngine

Notice

  • The package is built with the modified version of OpenJTalk. The modified version provides the same functionality with some improvements (e.g., cmake support) but is technically different from the one from HTS working group.
  • The package also uses the modified version of hts_engine_API. The same applies as above.

Before using the pyopenjtalk package, please have a look at the LICENSE for the two software.

Build requirements

The python package relies on cython to make python bindings for open_jtalk and hts_engine_API. You must need the following tools to build and install pyopenjtalk:

  • C/C++ compilers (to build C/C++ extentions)
  • cmake
  • cython

Supported platforms

  • Linux
  • Mac OSX
  • Windows (MSVC) (see this PR)

Installation

pip install pyopenjtalk

Development

To build the package locally, you will need to make sure to clone open_jtalk and hts_engine_API.

git submodule update --recursive --init

and then run

pip install -e .

Quick demo

Please check the notebook version here (nbviewer).

TTS

In [1]: import pyopenjtalk

In [2]: from scipy.io import wavfile

In [3]: x, sr = pyopenjtalk.tts("おめでとうございます")

In [4]: wavfile.write("test.wav", sr, x.astype(np.int16))

Run text processing frontend only

In [1]: import pyopenjtalk

In [2]: pyopenjtalk.extract_fullcontext("こんにちは")
Out[2]:
['xx^xx-sil+k=o/A:xx+xx+xx/B:xx-xx_xx/C:xx_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:xx_xx#xx_xx@xx_xx|xx_xx/G:5_5%0_xx_xx/H:xx_xx/I:xx-xx@xx+xx&xx-xx|xx+xx/J:1_5/K:1+1-5',
'xx^sil-k+o=N/A:-4+1+5/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'sil^k-o+N=n/A:-4+1+5/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'k^o-N+n=i/A:-3+2+4/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'o^N-n+i=ch/A:-2+3+3/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'N^n-i+ch=i/A:-2+3+3/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'n^i-ch+i=w/A:-1+4+2/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'i^ch-i+w=a/A:-1+4+2/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'ch^i-w+a=sil/A:0+5+1/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'i^w-a+sil=xx/A:0+5+1/B:xx-xx_xx/C:09_xx+xx/D:xx+xx_xx/E:xx_xx!xx_xx-xx/F:5_5#0_xx@1_1|1_5/G:xx_xx%xx_xx_xx/H:xx_xx/I:1-5@1+1&1-1|1+5/J:xx_xx/K:1+1-5',
'w^a-sil+xx=xx/A:xx+xx+xx/B:xx-xx_xx/C:xx_xx+xx/D:xx+xx_xx/E:5_5!0_xx-xx/F:xx_xx#xx_xx@xx_xx|xx_xx/G:xx_xx%xx_xx_xx/H:1_5/I:xx-xx@xx+xx&xx-xx|xx+xx/J:xx_xx/K:1+1-5']

Please check lab_format.pdf in HTS-demo_NIT-ATR503-M001.tar.bz2 for more details about full-context labels.

Grapheme-to-phoeneme (G2P)

In [1]: import pyopenjtalk

In [2]: pyopenjtalk.g2p("こんにちは")
Out[2]: 'k o N n i ch i w a'

In [3]: pyopenjtalk.g2p("こんにちは", kana=True)
Out[3]: 'コンニチワ'

LICENSE

Acknowledgements

HTS Working Group for their dedicated efforts to develop and maintain Open JTalk.

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

pyopenjtalk_prebuilt-0.2.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-win_amd64.whl (916.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-win32.whl (891.8 kB view details)

Uploaded CPython 3.11 Windows x86

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_10_9_universal2.whl (1.6 MB view details)

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

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-win_amd64.whl (918.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-win32.whl (893.1 kB view details)

Uploaded CPython 3.10 Windows x86

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_10_9_universal2.whl (1.6 MB view details)

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

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-win_amd64.whl (920.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-win32.whl (894.4 kB view details)

Uploaded CPython 3.9 Windows x86

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_10_9_universal2.whl (1.6 MB view details)

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

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-win_amd64.whl (920.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-win32.whl (894.5 kB view details)

Uploaded CPython 3.8 Windows x86

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_10_9_universal2.whl (1.6 MB view details)

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

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-win_amd64.whl (920.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-win32.whl (894.4 kB view details)

Uploaded CPython 3.7m Windows x86

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-win_amd64.whl (979.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-win32.whl (942.8 kB view details)

Uploaded CPython 3.6m Windows x86

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pyopenjtalk_prebuilt-0.2.0.tar.gz.

File metadata

  • Download URL: pyopenjtalk_prebuilt-0.2.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0.tar.gz
Algorithm Hash digest
SHA256 42b593df4d26361cabe427734cb430b4920c679c1d6c588d5528a8b4370f7b25
MD5 2060be85220e051cf4db830518c0c46c
BLAKE2b-256 3e001aa1b5f0fdbadccb2940b80ddec16f3d1ce9a716220b41c7c71e4adc0326

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e679cd5f4cdacb600d29562bd45def956bf259d50126abee1a641fe6d67ef12
MD5 56a291460fa93b978d74140e6081272a
BLAKE2b-256 241bbf45f2d8c324773778f13c494b66c50d0fe84b44dc8166d61fb248033ca2

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d1c82a7fa230eabd3fd0519c344d634e6ea26d08bdd4832e99b80dc2114bc1b
MD5 881d89f063d542216d7c17ad91e7534c
BLAKE2b-256 f7025d03c66aaab90b82bded3b819a5f25bad03e498da3eacae46110cedff002

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e26946004d5b62635846059a7044475d4946d23c7e1be176063c6ab24651d0d7
MD5 ccac7bd1589d2d79f1c94005ec066d77
BLAKE2b-256 0acbf0722925c262ddf83e8681bedf0064869d8035bc5ab7534c21e5d8b4aab4

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b94e3373d4fc74425636d2261403e39560533db3d649abc380e1723af10673d
MD5 df0b5c8228dbc5f962e7362a2d29058f
BLAKE2b-256 35605af7fe979a34979653aaaf502d75d1837f9e5dd8d07e62bd68b6dff1bdf1

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 da80cda8e75f713d0d1ebb16114703b22d67ab8ab221e4854c039e599334f43d
MD5 8fbcca3d008f75e8df9a8fedc69ce095
BLAKE2b-256 ec276994041f42669aea9e1f3509fd8646300c71bfa8abbe1839471fbb055fde

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9eba0cadb0e7eb1448b98e109899e74c4cf838f2cbd5a891b7aaed9adcec957c
MD5 8f936f5be2dcd3124c9e5bdff6364ba4
BLAKE2b-256 8906e56126ada2570148088dce39a9e8dfb9c884d83c8e4d2e174cf393fbcb04

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8fb2e8342218f8ae5794fd89fade369f6f1bfca5ccb7e7900aba16eee7f9ee78
MD5 fdf12fe9aa1e06306970ff939b6248d2
BLAKE2b-256 4475c0a9c72dc8a89d097005f4c409f6c0ef33100f727432e90cde67ce1cf483

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8f510e9853974dd794fd381bbf942762ccbf2a6be07133eb15f4af36aaddd89f
MD5 05310c5f3d6d910e04bbb58125536bfa
BLAKE2b-256 c3f5684d5513bfbb5aa2a176d14b1cacda2584c6968dbea45739b3e10dd516ec

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcdf20208175d7409fe0f359289606c900d2d2c78bd55067d61fea8206367931
MD5 8201d283497ea851754a409bf2ade9bd
BLAKE2b-256 92286e0d000d8455aa4a14ea0b96a6530a766dfa630f95c513ad10390eba565d

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e02e6aa9850841e7e0bf992eace89b41add28429717109536167e48e1812463
MD5 da37b53aa0569208877cbb95909c839e
BLAKE2b-256 4f9df4b4d6c6fe414c6ed936eca25f4f00e051e53bc1bc0280f785e79975a4e4

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b43e4376035842251e819546c2f09d0f4f57d6569fcf2133538010747393cb2c
MD5 fcd250ba63bc42e37b0183480a1defa7
BLAKE2b-256 f8f940980a6401179c07cdd7a61ae8837b1df830630cb168e7ae63157e099c20

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd416dd7680a2bac7611bef6a3bc3a762eb2f448533116b0606ba6f2cb145b31
MD5 94bdbaf1cb9f027aca50e764f335b7fd
BLAKE2b-256 e25d0f44e16bdfe3a1c48a83f8b1ea59e3035a91f95385ab605a49c26ae26ff1

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc7beafa18093a460c6c2f51b72b86777cc323371473a521cedb3a2345d0e968
MD5 5f70959f4ce681ddd68e734222d1d224
BLAKE2b-256 7474b2f35917f30df445fc97deff8d6295f371ec9d6980fd060e731da7028cb1

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9eba4593c596c136aa3355bc845679fece0e850743e6b254d6eac2f665e55e85
MD5 8c00b36fd62a3122b82e310df42e741b
BLAKE2b-256 6b009d3e1ef22d3ba59bf76cb23bca2adb38d75a74e453c897661556034ac716

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 60d7755fd243f481512de3c88bade82d0637528dbca9b36f80405adec99edb1e
MD5 1f18faae87209927a4c8da07742cc999
BLAKE2b-256 e21b2a276bf6b5fd890edef4a8eba5909662d0960e2d9f87f8daaac8c8d82e20

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 153f7df25148b47dda63fc2357dc60423b1cfdc6ea84966bd411b4422a50ec35
MD5 c7a3954158b6eb71092f7d06e3ddb3b6
BLAKE2b-256 4b7116f46ebd4858835f58cf87aa7555e6477ad3ce1bba438dc1970bf0dfe66a

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 31fe8ee1191268286f2f2d8420951aa4145febe1a8b63f32d485252bf2fc0053
MD5 483c8f01286ba006b225021d683ca5be
BLAKE2b-256 070e7c99d525a80bf3ef0114a8ec52213389d503679d040e67ef7a9a7e3e90a2

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 253296b21bcb83ebed959ac689c9ef57533ef59d2100250b1aba64757a185e78
MD5 b6c303c4b8f1f71da747ca6d688e2999
BLAKE2b-256 d0c40e081101b7f646c3eea5da55db12cc10ab07a53a2f1436ef826f4228c342

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4a696a3017498e453eab3eac45ffb05729ef8f664e9978ed6b1218307bcb769d
MD5 e23bab78a906e696f8d2285242760880
BLAKE2b-256 c1273ed95f60d750156ac977be98aff0cbe9fdd3a8537dc996cfc76487774ea6

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a82ed7b762210028ba0a04b5498f27c7dd065e2f1fe96fd2f4b6cf0b955fc47
MD5 fd4d7b95a439a73607bf704e02ee8c97
BLAKE2b-256 53ee33161b482694042c6f0937ce3b4b69ca740ffae7dac7a7005a37bbe95d5b

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff7bffc51f51e9cd05abee8ca65e731464d1559553afea071da69abeec66a4aa
MD5 5c06fc6bb76641c61d81fa5de800aa03
BLAKE2b-256 ba057b7f02ed9870aabf9e48446bc1101b648c626aae70083f86bf546b7059e3

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efce2d51c442e3d017f4d21f6eeea5f0b576a8c2cbb8ca4d3b2bea0c3d327ee1
MD5 b52e6956536c0a34ec610c04afe02557
BLAKE2b-256 d756f9409840f15ac791563e35df795ffe901a4ee2d6c51ca0145851e031ccfe

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb8feccc83827550b6386533368b7cd0b105e90eaf5487432d8bafbc9fccf3af
MD5 6b90407450ada016e7870eca56a0d35d
BLAKE2b-256 7b1d984bc5ba99ffb1b06c6051756c92d6e29857f0e2e102ca8f4db71477d7ea

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 828656a2d7784541f2900356deeac29fcee32335f9fbf5ea26034c053315e634
MD5 3d2cef027f46a24f2f7410aff4e17329
BLAKE2b-256 7a4836aa0c8cb8c5b4882cea21d6a05bf899982d19c05e4253adf2d71fd5c5d8

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4d3250cfaa8d08423e673f41329437bd7fe4bde8346f5d540f903ff360f2000f
MD5 9d8ec1977559dc72be0a5c69ee945bd9
BLAKE2b-256 0d0ff56978a10528b3d2eee2b899d69267ca9534c43b73cafbb69e4bfbcdaaa3

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 238b3ae544edf41cabb7be5a7437cd4f01c5a21eb65aa518dabdb11c0576ee02
MD5 3b6d35d78cd4671cb11d1089e93af47d
BLAKE2b-256 c110665242141eb3be3c1ef5d6a0036411d39778555b3d942018eb9e84f2eb85

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4ca83f0343ad0215ce8ec40855fbb56bfd661564b30e5d1f7884c486ebf18bea
MD5 0b39acf9104d95d384b7c1e79b4bc35f
BLAKE2b-256 9a68970440aa1b0adb8ee584cc33333c37bad5a0b6511688242508f70f833972

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a4855556d3c06fdd8f6d801fb2d02723c0ccf46cdf97c7498436c2e03086bfb
MD5 071de2bf46a51cfc16bc84d1cd9501b5
BLAKE2b-256 5fad342bd58a0da51a872d15673468a1570df8f4dd3502bfa9f1e1b0c781dde1

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 601d8603f1b4e7079499301f523739c946cf9db616e0bda887f46bd83bc6c74d
MD5 62e6ae84ffcf87bd8d0a31c9093b3625
BLAKE2b-256 05758347acfed22a0b3a33721c43c7fcdb9917afdbfd154bf2be59a1d2de6482

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 16741ff3209cf61f094ce8423d9301a3d7704ca45208a1db57e63de45be0a0e8
MD5 b0179f6a28ab4af814b73130060b9d8a
BLAKE2b-256 5c72dc0b1a5d960128495534f606538fe832cf234231412c8cf1194f91b908da

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0817b6d126f9980ebe81024739cfb079465cf4255c97009fa7e1547faee4cbc0
MD5 e9be80a25e0c7404046c81c881d8cba1
BLAKE2b-256 b1d38e69ac22ac86b66b4e3ce077ab2cd2cb8c7b410e39e3104a1b76df931a33

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 929f574c31a6c226637ed6a0de25b5ea416706d4d17af2ee18e2fff29b630230
MD5 0d7706f5fac15e93e99ec162fd27122a
BLAKE2b-256 7128e58f9f9752641b557212135acec18bed594ca6bf026bc896f1880cd1950c

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c907a3d831e23058fd8f812919adbc72c85b7786fd4d155cbda9c8dcba71c469
MD5 92b46ff40c21df21104f933a261c8296
BLAKE2b-256 f9c8a5201c552f004b023bd464df1dec7a5d9ae5a629b8979b99f69f0c0e3a47

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12ad3bc1ee8b70b14729431cbcd57ae6ea7e628d0cb150fb85b292c54c7af150
MD5 b3754e98ec0a1afef6919785e38465e9
BLAKE2b-256 dec9f35d9d8574537ea9ac9a7257df184910d0a64f88715fa2bbbbaf82f35997

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f063c565a1edfb1a5f28b8726f536f708fbb480e401881ed4280d3ad3130a7af
MD5 6b687613eac777bf4fa9df157790e74c
BLAKE2b-256 940cdea98c723f58114a9106fc7949971c638e36737d2e99222ae80fae4b3b39

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3dcc2fcfd78fd8da557fb1e0723189fff8e5caf62c66067cebe193a6e9a470b5
MD5 131d0429dba949c480c5d879a0c4f61a
BLAKE2b-256 3364603cf119e91cfec6b80e6239bbf4c77d92f7b0afb43550ee3f92b2c23d9b

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b69beffc25a7ce248cc19be172cf600b38882ac229f730249c6db3746260a804
MD5 cc37d9c62c228544c74efffb34ba7d87
BLAKE2b-256 9843f228067caa446c637c44096db154f8553e8219232c423954174bacf7bde9

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 089a737fb2f396de1d0217c19f3714de040d62ddbf185e33bd21a243f23a34db
MD5 bf37a8f94121200e8b9ee19f236717d6
BLAKE2b-256 76103b1b86852f54cfb902796c71685afd1cbe1aa07ac16df2e11c89776e858e

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cf1b3d568ad4d8382537377e1fbf91214c1a0e48706967f913d7837149cab67e
MD5 7b5f13631b166b6cd9a3b258cd327002
BLAKE2b-256 008cde0ee1061c3727f5654e8a1d855d80cb8ebf147b49f639bc11c7d9889f64

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 93c92b4c8b69f5772e3db05ff6834fd944e05f20c7dc9c2b85cfb0cc840d915e
MD5 4f12cf205aa0017dc2e7b77845a82d61
BLAKE2b-256 fde5ce38b9eecd1f6d4f66f911ac4d96d1ac0fbc9959b02eb7209146d7779c46

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a0a5a78eae1646d4bc87e79b94624cf3b382856cb07c5f6cfc9e4239e84c3275
MD5 924e063a5bc7d60664b19c62e4c5c546
BLAKE2b-256 2f88dfc9f39da9e4518dfdc0e38441831cc6a5d0054935ab987485a47a6b9ca8

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bf16dd689fd01d504543d928a1b35ea898a0850c39953bbb0003f8e4309b102
MD5 a9a109785b6ce0e60faa26c1983688d2
BLAKE2b-256 c58039013d337ebeff32ffc76b24d3dfaba84458941c4ff41cc5994062ac611f

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4591022746de9d0e1f8886fc5c10641f3739952d482704c452948885076e83af
MD5 5851409af1d318367af60584ad94994f
BLAKE2b-256 2a299717517e4828f341fddb18c7adb7d025f1b1d0e89fcacb731305c9010e09

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab96d6eddf3704a9c96a77cad0b403ad45ebcaf493e59f8945e76572c97f7791
MD5 d06001d2b6be0a877ecb45c22905e9f7
BLAKE2b-256 27cae410e721c52519dc8a619d0c80d2117f66a1673f572359ee8c1c09d23ffd

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6f727a017517bf40fbcb31d97b172b1e96f2881997064ffbc5100042b66b409
MD5 1aa0c54300a0d9ef91b288a89bbcaaa6
BLAKE2b-256 d8211217004b75bd785d95d9ddd05bfc6ef3302078a6932550ad5c6e518b4fec

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1896b081594f595a4c7ab41d8e2a39ea39eacef4cbc8836fa653061b66ceb081
MD5 9c2aacec3979ded8dd8b5b1352418e45
BLAKE2b-256 c0226b79d6a86ee9453dd308a48a6643d515798d4f7c33b43a39fda8ecae8676

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d3b722ac4cc82e0831eb08643f2e3bc970cd9a61bd633ba4b6dbe312884aa4c4
MD5 a2a7417f4eb6340a10985ddc4f7e3161
BLAKE2b-256 a0a9212375218e804d1d9498eec9f676629f0cbcfc749f2835709e612a3e18a3

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bf98735d74e1b8a7ee2b4bc9a06153e7c0a05d0421999c6ba08710a9ddcfa014
MD5 09d8b0e8fcda2df3f797c740af5dce40
BLAKE2b-256 baedd6466795ebf6059404d0a1579bdcf14b69e5381bdfae66943e8d4d60a801

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5790d907aba50d282667a73ab414ce445bd016ce6919936a35d8b3026ff729e1
MD5 51e23e657325ecd4e77ab450d60438e7
BLAKE2b-256 d0342802ebaf6d9b0842f5652d08eed7dd56eede8017213ac0c4ae1e30f7cd14

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c2c71c79927d919e80ba22ecd42d1bf4032c0f1cc08c02a69bc79627d1a944b2
MD5 517f01f7ad5fab0223c5c94e2aa560b8
BLAKE2b-256 d11c2635f155237962667aaaa80ab5a6c017daa3c8c9f45e048b99b0110bd7fe

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 16e0096fc69dcedd9beb0f109832d156940034d997dfefdf9eb72cf1fec2e7a8
MD5 1f9527621ee9c21f7a66b503265b0e51
BLAKE2b-256 ee75e1ff547e6959cd7f35d1e3793e551f6d9e910d861582f92082089f0891fc

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38442bcaf30161dd69c12f3564857c77ca4caf20a8317820a75d0cce2d6f2b95
MD5 c382319e12c375e370c572b20d262b7a
BLAKE2b-256 d97158eb14be6f97b7a7e89d03306e6bccfc4b58d634e54f559a2fb5cf521182

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f44cb4553da5c6b6be46a724387fe5d4e640d106a3f8c0f694b762a5a9b61a08
MD5 e16098ef2c70574f2536107d61cedb7c
BLAKE2b-256 4a9eba0b5b5eb4e3b9438b504a318ed7e0cd2ac3bf555e2a6ff079a703bc0654

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91819e43a0973cdde303933a969186a3a5408865e2d6cf5e20ff63caba2e75e8
MD5 d611bbf6a9afb1d315cb182049e987e6
BLAKE2b-256 06a6e036b020ded16a2b6b01b92c65f631f282b4502dadc5d8a801675178861a

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 402334a5976806aac245f48fa7b82e3d24bfba4eb32cc0a575daef19d3bd80c8
MD5 5c4187e1a76378ca0d6cfcc42235bc05
BLAKE2b-256 c37a2b443d631e33b22853c85266b50a4642dd9a1615927cff6a25c69e9fa36d

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7f917c1b6eac741b87b067fd6b70edef656efc0602d8da69cbc782b96f36701
MD5 57861cb6684a03019d1e3333cb35d5e1
BLAKE2b-256 ef2f524d8be0de4aa3f84300e0762f728dbb866eaed75d896174cdc5eceabc10

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0184465067e70b799e00bcaaff5700292c36b05568000d4e288ef1e57dc914d1
MD5 bbc45384356359ab246323d92475bc60
BLAKE2b-256 06d70b1984e4e1645d1bcd3d0260f4a97da2515b45fdcdd4b1b5ae170044ec14

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4a7e85f335bab698237e6ae43c032cda1e9ceea7864b693353ccd1d5e1c5bc0a
MD5 b5c4b14f6514f39d1ce56df34c7fe757
BLAKE2b-256 0aec46e12dd28957d1707d365847d740c1bda70af869d73c569969ee58a14c81

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e78e146c643c99680d845c30b5ff0b234d02c62c56e5ea6243563bcd32e4801e
MD5 5252dcd0ba7678a1ba0ccbdaef2406ec
BLAKE2b-256 a6da4579c10c360f0d2dac984c771db46da025852cab697a5ef1262e43e1f27b

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 89f4a1216e5dd290f24197a3d26d94163c92a2078582eb8b0021addcca7c1644
MD5 b95294a5e42a70408c1edadce7930265
BLAKE2b-256 0aa8b197f4463b4a503ecc09058ef23db9116b1f2094b7c4c82fdd390cc0d8d6

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b742e0da4ebb2285709a9163e4959063b5666c50b366b41999d90ee7f6a70b95
MD5 16b10dbf0a1a9a9df49496d358f07d91
BLAKE2b-256 c67623cb5cf631064661ff551808eb3c402d53406569b4bc660581a4118ab342

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaea3d6f11cc91db6f379e2fc3baf70e694d2b4b51e861cc59ef6962081453e1
MD5 4ad1c4f68b6c49cceb574ba1b239013d
BLAKE2b-256 2b3688ea302262fa4180a4b0068dac049b9ca0b8831584a5be6b433a0ed331c7

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e514db1f7c22db6f7bf8e5368ba320ee9f687430907ce051347401287a670b8b
MD5 282c782e481f1d19bbdca7a2b52c724b
BLAKE2b-256 ccb48f9cfbe79f2a30d1ddd77652d254f2b83ca57b661bbc01c401d496ad2978

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7751775036844ea73f4f3c7d9cbf7c2f53b5f522ad4d3fe838ae5610e3012a4
MD5 93b73d35e2255737aa5b6534740281de
BLAKE2b-256 0c58e693bf51f61cd6643eb65e7fefb7da2c0e9ff92761902ac5b6ecd2baf542

See more details on using hashes here.

File details

Details for the file pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenjtalk_prebuilt-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 955c7c1484e8c3f048fb6e6b828808cf0af2b9f7e3015554ad494537cc9d7527
MD5 c9728af4a9d0026011c435af20638837
BLAKE2b-256 ccaada43b11cab48fc55c72aa4301ed2dd6e7c06cadd9a6df0d47bbc7f9baaf3

See more details on using hashes here.

Supported by

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