Skip to main content

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]: 'コンニチワ'

About run_marine option

After v0.3.0, the run_marine option has been available for estimating the Japanese accent with the DNN-based method (see marine). If you want to use the feature, please install pyopenjtalk as below;

pip install pyopenjtalk[marine]

And then, you can use the option as the following examples;

In [1]: import pyopenjtalk

In [2]: x, sr = pyopenjtalk.tts("おめでとうございます", run_marine=True) # for TTS

In [3]: label = pyopenjtalk.extract_fullcontext("こんにちは", run_marine=True) # for text processing frontend only

LICENSE

Acknowledgements

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

Release files for pyopenjtalk-prebuilt 0.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyopenjtalk-prebuilt 0.3.0
File Size Uploaded
pyopenjtalk_prebuilt-0.3.0.tar.gz 1.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyopenjtalk-prebuilt 0.3.0
File
pyopenjtalk_prebuilt-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.12+ x86-32, Linux glibc 2.17+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.12+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.12+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32, Linux glibc 2.17+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.12+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32, Linux glibc 2.17+ x86-32 Details
pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 277.3 MB

Release files / pyopenjtalk_prebuilt-0.3.0.tar.gz

Download URL pyopenjtalk_prebuilt-0.3.0.tar.gz
Size 1.4 MB
Tags Source
SHA-256 checksum
How to use checksums
b32fadb3de1af622af2e4f6e67fd8a07d141cb854264aa793322a34ad257d33f
BLAKE2b-256 checksum
How to use checksums
5d8a054037f3c9517b0ed318b1817a6fa650fb88c4f6972afcb3452df9ee33d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.8 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
2eb1bd46798ae139ad6d89448893ac3759f2fceb0afaf9a7a262c2352975d508
BLAKE2b-256 checksum
How to use checksums
9f6fa4939a78a9b46981278db8c40c905e714373e44b309715d4993979970b0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.8 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
14a898ae95b6af8eb63e515b1d44aa8cdaa77dedc014b6d2073cb3533c755110
BLAKE2b-256 checksum
How to use checksums
744ee8859393d77e5113170e639cf7cee88a9463d7574582302981aa872370bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.8 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
bc1790934d5eeb423741bbb0edcde826a7bcb3ef067fdead9f9b07395a543211
BLAKE2b-256 checksum
How to use checksums
ff23d4fd1f5ce5e8cd5c8bb49de7420af2b5ffca1c14085fc459b632c5b02a71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-win_amd64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-win_amd64.whl
Size 919.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3c31bbee7d3ab300b99321ad130d33db7e8b0832ab41c40444a3066c2f44e8e5
BLAKE2b-256 checksum
How to use checksums
b120d93a7b6f9523819462e55663f42aaa93effebc8f30c65f288c4976555cc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-win32.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-win32.whl
Size 894.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
310f3ab429985e432cc810f7a204a7a49b70c33f53db906ec9fe8eb60b1bd538
BLAKE2b-256 checksum
How to use checksums
07d6f6b0008d509c8b4efdffd0b27b2b3068d005527fb2c2d2768058e05b410c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Size 6.5 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
5c7287d62260b34828c329330e8afbabd5edc92d79c398ee12d2c285efef3084
BLAKE2b-256 checksum
How to use checksums
94d637e110fb140dc34b16410c567bc48aa62854f7842559880ea46b205528a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_i686.whl
Size 6.4 MB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
c54f7a2d433d2d09dc8d5095ae299b8905a2f8ddf68224e8a56b64fbd23f896a
BLAKE2b-256 checksum
How to use checksums
df033f967d09b60fe4e7efb40352e2cdadae73aee1e4f53e1110f93a9269e647
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Size 6.5 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
1302eecec0fde250cac913ea20e4c7e1e747981e8cb39ac039a08202c30b978d
BLAKE2b-256 checksum
How to use checksums
a4f7abef5b94cc6479e9853bb25989b93a18ebc6a7f95b05a6cb94b9d812d9c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 6.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
44e72ed8c22f7d33dbf5c3c833e2d1c74f3ac6dba81aba2c08662b37d2efdbc7
BLAKE2b-256 checksum
How to use checksums
cec008ed1f029e9f1285436b4cd10cacbc50082f352160e4d7be3add577ff3f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d3248c9c6eff6042b8cfd0edb8066a79a7f046861e08635df878385491556e35
BLAKE2b-256 checksum
How to use checksums
e5b0215dfc059526b52fe6417965ff1e85fb2a7e6b03e752237e6fb5810a3b26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.0 MB
Tags CPython 3.11 Linux glibc 2.12+ x86-32 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a0eb8a3cbe1a76eb520d0eb966229b4d7f11921a95f3d6ac3f0c606985816fad
BLAKE2b-256 checksum
How to use checksums
d47b0238c429569776e2c0bdad0dd02b3ed4befd8512424e50ea9732d3b0a1a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.1 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c109225e06721641fc15a3f8fc8175b786549a0031fc4a2df2dcff0c36cc1625
BLAKE2b-256 checksum
How to use checksums
b17241b0ff88cc44148dd4c65918f539c8b889333dc7929a6dd7f1139054ae1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
15efb1ecc34fb055233c245b598fa40f06b0f2c8c55c61589365e6f786071200
BLAKE2b-256 checksum
How to use checksums
8c15f067fd4095f3cf46195e7b1761eadc2ea29fc593a0a408428f9c583c4f32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp311-cp311-macosx_10_9_universal2.whl
Size 1.6 MB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b49c7508d367f4301b058138024d8ac0f53199fc39ad6031bb26b42d1b6c8fd1
BLAKE2b-256 checksum
How to use checksums
d522c3135f76a5915a0cfb4f2d28bf3b972224a85940a0795c828bb3a0c11f2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-win_amd64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-win_amd64.whl
Size 921.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
0cc6caed6865525dc63ed6a0954a9db95e376f5f3f11e291d5f22b78a10442d8
BLAKE2b-256 checksum
How to use checksums
99c4143d4e55f61ce0d44438fce4ed4245ca646b7ea2e34e9e4b4ec35b34225e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-win32.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-win32.whl
Size 895.3 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
25d6fd674bbbfa99e4303ed3229107cf7b2c6b2fa8d6cc2b33f438ab3e1d1717
BLAKE2b-256 checksum
How to use checksums
e961ea1299f759407ff118f764488dbbba8b69a7e32acbc0f0861189c85ab160
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 6.5 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
7177a203d57a95fd1f16786513d012b0dccaf6964e17e20b82c6cf99d5c6d4a7
BLAKE2b-256 checksum
How to use checksums
7e936ea55e99698a9613f2f5de0ba6bc338eea58c0159823f24dc6836db4f238
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_i686.whl
Size 6.4 MB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
3fad066cedf35bfc77b5c15d877bfbd0bfa1a2d50d88754f23cbdc297642b001
BLAKE2b-256 checksum
How to use checksums
6e30cddc35b439b8152a43b13919bdccc40b59f4d6f3b49dfd9ed0c687feb9fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Size 6.5 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
722a2d2f4d0b7fb28f0c5288e1b1a6a86bab8dc482f4be00705043f3c1ed8b3f
BLAKE2b-256 checksum
How to use checksums
1cb67db0beca74dbc0b3f8fdb3cb5767271a67b84ddcdc87663fb89200d0d388
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 6.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cd843a153f9631833c338a0f9d9a9915837fa15138424bee5e66a19bd0651b54
BLAKE2b-256 checksum
How to use checksums
4e1bd77c2d547c361642ece201366f23e12fd50dd79305bb2f9862a1c3cabeec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d609cc1fbcc4aff2d672af2b09fb28333fd6f20bb03fd0914d45fe7f7d9d1561
BLAKE2b-256 checksum
How to use checksums
afcc6cf9e04bc7bb1a63d624ce6d969003e5614dc61ca4c6b8e3f332fd811951
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.0 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-32 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
17d1d8e181159a7910fa741bc2f95712e94874b52b2f480a993295fa56fea71a
BLAKE2b-256 checksum
How to use checksums
c6b9e21568726054bdd8f9cb32c4e97814fb92d9599ff2bfe789d7fa93ed3b85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.1 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
071614d174511d107c18f4e2a403a71c8c0b26d8b06b041cb5b2d54feaeb4bf6
BLAKE2b-256 checksum
How to use checksums
a9e58a693e697a7fda7be5224ba9bccaadb15542eeb54f1e5687b4b1be7f407d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5bff808299154fc4889209800c0ac1f803caf2213eef6c99c0dffc50d8c2c85c
BLAKE2b-256 checksum
How to use checksums
18010c0642a394b3a025beefc3a2a668dcfb73d01da557d1f0f58275715718e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp310-cp310-macosx_10_9_universal2.whl
Size 1.6 MB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
5f8453909c958d45ec1d51e23905e12a778cc5e24eda9d071189bc61426d752f
BLAKE2b-256 checksum
How to use checksums
d4fc3ceb3e99843d4a23a8c4bc848a907f4a0d55b2f70a7e1027c36c5a0b251f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-win_amd64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-win_amd64.whl
Size 922.7 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
903e5d621414610701ffcbf3b32c340a6192a2c2e48030350b7caeb839de0851
BLAKE2b-256 checksum
How to use checksums
1183d86ed0f031083a351501983550989706396a8db6aec58317c3aed2e80ba5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-win32.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-win32.whl
Size 896.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
60784e3fdfbe3a1518db06d5f643afff723f55f41dee2934bca9d0902def27d4
BLAKE2b-256 checksum
How to use checksums
5d567933767d0a5e61331cecd1556ca5f3fa41d8521ae3b5d2ee68b53dec701e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 6.5 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
f1f9b435874617f270ee3ac734e28b9247716ccaf0fed012fda797f8afc48bf1
BLAKE2b-256 checksum
How to use checksums
eee90c39e66ae65456df5b977ad963c07e6ec507a934a4b8c0c52132ef834db8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_i686.whl
Size 6.4 MB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
f4c5d93073cc27a972c11410f545ab27879c180a5a64a0f639189406be14ffd1
BLAKE2b-256 checksum
How to use checksums
d9e5337ed7bb30bd0cd558ac00919c45b0f8d7f3539170e8782c5fc4df32b8a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Size 6.5 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
0c6225adab5e245726b9d7c104bec16427ce968e85fdac411e47ab15ba76e7c2
BLAKE2b-256 checksum
How to use checksums
e33fe1a276a1960a36f897187b91c04d8ccc8340119836640b0424943b5260d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 6.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f053d385026c0dfc6c57930e6ba0941396678f561d5971ca24c177fc96088d7f
BLAKE2b-256 checksum
How to use checksums
5df238c5ea364cd8ff10eb5eb448cdcabd761cc7a47bfcd6553e9d57b784f91b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.2 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
01d09fbc1e8700810aa68b170e62e35cf0c82efad9c281a2257f6a2f26eb7b78
BLAKE2b-256 checksum
How to use checksums
7beae19db42e497f4fea5210598c977fbd350ace637b96b03c8938c17c1b1766
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.0 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
21605f10602346c5bc6a618f0debe1916b60b44dc151ee1f5234858679e9263b
BLAKE2b-256 checksum
How to use checksums
39e6d261ec71d14661b77b9570888586e4f11d5f66fa609fb5a708f07fb11b6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Size 1.1 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
61b042c3a457a24fad2d6258388a487cbb489c3ffc7f95fd81cb2b4e50a97a8a
BLAKE2b-256 checksum
How to use checksums
fca66f448442f7ed90cad13c455b0a0b16ffcf07c7aaa523ee607e323fc96521
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
38b6651f16156d23caa9530508f4f4d4936619d7aef49aa6289bee7b0f887e77
BLAKE2b-256 checksum
How to use checksums
60750730f7affade5406b0f4b3ea3f577f8abbc167578e10d1245c1b9067ee6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp39-cp39-macosx_10_9_universal2.whl
Size 1.6 MB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
11dbd79bde58d97b6c510302dde9f91a70fddf1076d384d04b633b9fe4789a1a
BLAKE2b-256 checksum
How to use checksums
05d6f83f51e67653d0f66eadef7230582c6c7db1e617cc5d6edbbe54848675e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-win_amd64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-win_amd64.whl
Size 922.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
e9b16f2a3413fe46e4b24ecd670051cbbc262c4abe27ab78390187c9e2c13cd1
BLAKE2b-256 checksum
How to use checksums
a3dcab7372daee6192cb15ff084eca17f8e65803e988ef493388420ab05b0e7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-win32.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-win32.whl
Size 896.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
aa29375943e937c011e4de8a7b95d4891cc08459847573e1b10c40c9d9a8ed86
BLAKE2b-256 checksum
How to use checksums
f65b812ee9e36856ee5b6e3a8d9683d6ab7c30f161b053fec07ff6eb5094d5ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 6.5 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
51885b8bfbae62df8a904bb1687441c8c6653b5cc3bf8afaad1e764571c1c9c5
BLAKE2b-256 checksum
How to use checksums
0e6a99d3c7f18fd76e4943ad7c6993c7b49eb46928b0f38ad7878b788addb57a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_i686.whl
Size 6.4 MB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
7ce4b63d3dedfa6792f7cc1ad63d4a3ad71b1e5ce24120884f4ef78a35e4dfab
BLAKE2b-256 checksum
How to use checksums
5a004b712f137d1a4bb1ae4555daf8aa4ce8434d0e5733f6f6ad37f323d0bd87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
Size 6.6 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
6ff87d0872e11c3fe63c4f6cd99201fec22c789221ed42423546fc4756a783d1
BLAKE2b-256 checksum
How to use checksums
6e9b892562d509a9a86997b8d452c2029cab9f7cc62054d403fd4800ad951115
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 6.2 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e8f6f35ddf457b80d818c7f94a90776f967dc550fda0fe4c04e71e747931c934
BLAKE2b-256 checksum
How to use checksums
558cd8163047a8e923fd2c5066d321e9b114b7894faa30a5b26d863b866d4120
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.2 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
acd8fd222dbb0fd3e1a33d372e6abc4eb456dff400b1c228164158ace6b8cbc6
BLAKE2b-256 checksum
How to use checksums
ebe520f973c54887c83b7d85eefd9f65d3e995a14575e3be83662ab11f519aee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.0 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
5970f17f1ed2a07df17d2d091060fd7584b43657ff5b0b2eb9f33d36c6bfd485
BLAKE2b-256 checksum
How to use checksums
a2a1ee304e556c05addaf09a8362db00694a13f8061025639f668ef907e436e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Size 1.1 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eeff2b8f9bbfa71a156c88c4417f5e72d5d7b024ecdd35a27a2b3625f8e2ac9c
BLAKE2b-256 checksum
How to use checksums
38b702278825bd7175a1274194b0f89107b94c21c73030c614747581761ddd40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9e79082e79e55c536a212a17b7eea746ea11ef9d110b058bcc30d4a9ef4ccd22
BLAKE2b-256 checksum
How to use checksums
a2f64a8f46c84bd582f433558237dcd7b697c3b15d4dcd00e695d8a70580fdd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_10_9_universal2.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp38-cp38-macosx_10_9_universal2.whl
Size 1.6 MB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e764127a1767224e97debe0ebed62b27eeef3e871f27e8ee7543807ec33a04c1
BLAKE2b-256 checksum
How to use checksums
d1dfe8239607f3f449a2ab0b99f978989a6b06de706d7a7cfa38d8218a2923b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-win_amd64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-win_amd64.whl
Size 922.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
75bdcc1539351061790f2ccdd8a95daca0f93ab7a613ee895e712fe88d80c288
BLAKE2b-256 checksum
How to use checksums
089dcfb219caa7d7f4ade20a17f5b1934ab3f67f8a3dd6627d59a51c49543640
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-win32.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-win32.whl
Size 895.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c833eebdf56be6792bfbd94f59a05be13a7b34cdeda3b43e2054f5c10e5675bf
BLAKE2b-256 checksum
How to use checksums
ed39b61b3353133f338530f11b2dda9c13dc55789c6d413e754d6517d9801113
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 6.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
70860363fed6e75c3e9ccabc8a4e9fa8449cf61a7a57bf08fafd07d491e6023d
BLAKE2b-256 checksum
How to use checksums
910cf604f1b81b100011bfa46e81766763a1b4c7a7db84ed5d05d62fb3aad1fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Size 6.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
ee8cb2f84556238e86d1bd57d79b677876ed18ae28e0885751b3a3ccc96f9381
BLAKE2b-256 checksum
How to use checksums
9d7dfb23b10d799c430d9dc36bc4804642386b5c5c6cdf36fa9e2356b84c3e95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 6.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
1fb7afdc56dfdbd0577b2f0b848a7db22ff918468a424b2797ae2ea3f925276c
BLAKE2b-256 checksum
How to use checksums
50a2e21e822d0748285371fdbeb18951f03dbd484dab23c692edcc8383c55f98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 6.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5eeb9128575139bc2ae62fa71010f0827405fb42bd9cf86c96bc3f5486b10169
BLAKE2b-256 checksum
How to use checksums
0810039a46a06c108a23e3f3035016e33198654166c6a898909dff4a2994705d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8e7fe4e9d3c1d675f2f235a7b4737752e934ff61828a9d04bb0c9e507cd63da2
BLAKE2b-256 checksum
How to use checksums
1f0dea534f111bc4dc9c67d78530a195fee46183f26ab31c77c0a21134c7a44f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
86335a744e575e5c8e4b5c35c1fdad67829cb8d2d6bd5ef4744aa2e532bdf5bc
BLAKE2b-256 checksum
How to use checksums
337df3c6c3268ca3569d52aa8f72778ed7b36c262cd2347951da9b28b95a51c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3c9c294088f11794e82222258b3f32867523423658dfaf6e408329f7fcc5331e
BLAKE2b-256 checksum
How to use checksums
d0fae3a7349a1b827732b22bc1e1060e819c9ef76813ae5395c56a62befbfef2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-win_amd64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-win_amd64.whl
Size 981.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
e894d632e1b3c97ff25bd2832576a54b51230b01baa4fba3f8c4046aef83d7de
BLAKE2b-256 checksum
How to use checksums
a4c1782b1013e10c430097233946c57f13e722972dbb460bea4a0c1b0ebedff8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-win32.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-win32.whl
Size 944.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c1100f7c3dd13e7d39a250451b52ab468ecfe80fbe3ad8d2e2d8343dcbafcf70
BLAKE2b-256 checksum
How to use checksums
16168077d91c56c2b5626d55059f9533af02721fbc843a4be47c98a2d56e876d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 6.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
8aca1dfc85f9f47c7273e915cfde18a51ab04aa7ea8f6ec9c5b9474f63aa3f2d
BLAKE2b-256 checksum
How to use checksums
d080e0aa39b09027dd3426d0da325d4e9a6ea377b600e62a63855ccf1a5f1944
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl
Size 6.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
ba6e8d8cba05dfe1e745477fd352d27516b9b31bc6ed11e4228d4707ab484f41
BLAKE2b-256 checksum
How to use checksums
97f3b9987f361e30e639109a6077b5049abbf8d4b92f897b5a5a1f8174dfc895
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Size 6.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
ad590e6bf0963738895173353e0fcaddc1ede42fbcd969e086d4d56199439e90
BLAKE2b-256 checksum
How to use checksums
2b9f4f30ed93f0221ec1c0d0f973738598760eb24db4ab3c3c139bfca3d7e8ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 6.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
786cdce69a952e95c092897f37086c75ab985230c030660b267d6188530ff4b4
BLAKE2b-256 checksum
How to use checksums
b77d8f8db964f695f4585f9c24fcdceccc35787ae8dac3d8b00e902c5202533d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d4c7260220798d93166dd171d09cc4598ee56914324b5d237d7b9e48b6227b7f
BLAKE2b-256 checksum
How to use checksums
5c69f13505332c8aecf6e87d36701f388e52bf582c8c1c43a00e2da5364a25dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.6

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ff8a89fcf0abadcc9dee31ebffc79b964cf1e010a07c6a9e919f9e9c8def9a57
BLAKE2b-256 checksum
How to use checksums
15afbd664f5042447ab04b704d041c7af0d804d284a9d30620fc4668c9deccf5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL pyopenjtalk_prebuilt-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0342ae462873c746e908afb9e4945b0fa214f3a1f65df68cbda5a970e8a4a5da
BLAKE2b-256 checksum
How to use checksums
9601ad15dd4055d6f4028aa27487b4e6955c61b0845c72142e01c10ffbb5acb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release history Release notifications | RSS feed

This release

0.3.0 This release

66 release files

0.2.0

66 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page