Skip to main content

16kHz モノラル音声に対して指定した音素をアライメントするライブラリ

Project description

pydomino-prebuilt

PyPI Build and Publish Wheels License

pydomino-prebuilt は、pydomino の事前ビルド済み wheels を PyPI に公開することを目的とした、pydomino の派生ライブラリです。

Changes in this fork

  • パッケージ名を pydomino-prebuilt に変更
    • ライブラリ名は pydomino から変更されておらず、pydomino 本家同様に import pydomino でインポートできる
    • pydomino 本家のドロップイン代替として利用できる
  • Windows・macOS (x64 / arm64)・Linux すべての事前ビルド済み wheels を PyPI に公開
    • pydomino は C++ や CMake 、サブモジュールに依存しており、ビルド環境の構築難易度が比較的高い上に、PyPI には公開されていない
      • 特に Windows においては MSVC のインストールが必要となる
    • 事前ビルド済みの wheels を PyPI に公開することで、ビルド環境のない PC でも簡単にインストール可能にすることを意図している
  • 明示的に Python 3.11 / 3.12 / 3.13 をサポート対象に追加
  • ONNX モデルを Wheel に同梱
    • 学習済みモデル phoneme_transition_model.onnx は Wheel パッケージに同梱されており、pydomino-prebuilt と同時にインストールされる
    • これにより、利用者が毎回モデルファイルをダウンロードしたり、ファイルパスを指定する必要がなくなった
  • Python API の使いやすさを向上
    • pydomino.Aligner() のコンストラクタで onnxfile パラメータを省略可能に変更した
    • onnxfile パラメータが指定されていない場合、自動的に内蔵の学習済みモデルが利用される
    • 従来通り、カスタムモデルのパス指定も可能
  • CLI の使いやすさを向上
    • domino コマンドで --onnx_path オプションを省略可能に変更した
    • --onnx_path オプションが指定されていない場合、自動的に内蔵の学習済みモデルが利用される
    • 従来通り、カスタムモデルのパス指定も可能
  • パッケージメタデータの整理
    • pyproject.toml にプロジェクトメタデータを統合し、現代的な Python パッケージ標準に準拠した
    • 適切な classifiers を追加して、対応 OS・Python バージョン・ライセンス情報などを明示した

Installation

下記コマンドを実行して、ライブラリをインストールできます。

pip install pydomino-prebuilt

下記ならびに docs/ 以下のドキュメントは、pydomino 本家のドキュメントを改変なしでそのまま引き継いでいます。
これらのドキュメントの内容が pydomino-prebuilt にも通用するかは保証されません。


pydomino

pydomino は日本語音声に対して音素ラベルをアラインメントするためのツールです。GPUは不要です。 ライブラリとして Python から使うこともコマンドラインツールとしてコンソールから使うこともできます。 ドキュメントは こちら からご覧いただけます。 技術の解説記事は こちら からご覧いただけます

Installation

Requisites

  • CMake
  • Python >= 3.10 (miniconda etc.)
  • Visual Studio >= 2019 (for Windows)

Build & Install

Linux / Mac

git clone --recursive https://github.com/DwangoMediaVillage/pydomino
cd pydomino
pip install ./

また、下記のように直接 pip インストールもできます(コマンドラインツールもインストールされます。コマンドラインツールを使うときは、onnxファイルを指定する必要があります。onnx_model/phoneme_transition_model.onnx をダウンロードしてください):

pip install git+https://github.com/DwangoMediaVillage/pydomino

Windows

Anaconda Prompt (miniconda3) 環境において MSVC の vcvars64.bat を利用してインストールします:

  • "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\Build\vcvars64.bat" or
  • "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat".
# on `Anaconda Prompt (miniconda3)`
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
git clone --recursive https://github.com/DwangoMediaVillage/pydomino
cd pydomino
pip install ./

また、下記のように直接 pip インストールもできます(コマンドラインツールもインストールされます。コマンドラインツールを使うときは、onnxファイルを指定する必要があります。onnx_model/phoneme_transition_model.onnx をダウンロードしてください):

pip install git+https://github.com/DwangoMediaVillage/pydomino

Run samples

Python Library

alignmer: pydomino.Aligner = pydomino.Aligner(path-to-model-file.onnx)

y: np.ndarray = librosa.load(path-to-wav-file, sr=16_000, mono=True, dtype=np.float32)[0]
p: list[str] = path-to-phoneme-file.read_text().split(" ")
z: list[tuple[float, float, str]] = alignmer.align(y, " ".join(p), 3) # [(start_time_sec, end_time_sec, phoneme_str)]
  • path-to-model-file.onnx は事前学習済みの onnx モデルファイルです。
    • onnx_model/phoneme_transition_model.onnxにあります。
  • path-to-wav-file はサンプリング周波数 16kHz のモノラル wav ファイルです。
  • path-to-phoneme-file は音素を空白区切りしたテキストが格納されたファイルのパスです。
    • NOTE: 開始音素と終了音素は pau である必要があります。

phonemes に使える音素一覧は下記の通りです:

pau ry r my m ny n j z by
b dy d gy g ky k ch ts sh
s hy h v f py p t y w
N a i u e o I U cl

Console Application

上記のインストール手順における pip install により Cli ツールも自動でビルドされます。

ビルドされたツールは下記のようにして使えます:

domino \
    --input_path={path-to-wav-file} \
    --input_phoneme={path-to-phoneme-file} \
    --output_path={path-to-output-lab-file} \
    --onnx_path={path-to-output-onnx-file} \
    --min_frame=3

また ver 1.2.1 にて、TextGridファイルへの出力に対応いたしました。--output_format=TextGrid を付け加えると、出力が lab ファイルではなく TextGrid ファイルとなります。

domino \
    --input_path={path-to-wav-file} \
    --input_phoneme={path-to-phoneme-file} \
    --output_path={path-to-output-lab-file} \
    --onnx_path={path-to-output-onnx-file} \
    --output_format=TextGrid \
    --min_frame=3

onnxファイルは当組織で学習済みの onnx_model/phoneme_transition_model.onnx を用意していますのでお使いください

label file format (.lab) とは

音素アラインメントの結果を表すフォーマットとしてよく使われるファイル形式です。

各行に音素の開始時刻と終了時刻 (いずれも単位は秒) と、そのときの音素が TAB 区切りで並んでいます:

0.000	0.000	pau
0.000	0.080	d
0.080	0.150	o
0.150	0.190	w
0.190	0.350	a
0.350	0.460	N
0.460	0.490	g
0.490	0.640	o
0.640	0.724	pau

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

pydomino_prebuilt-1.2.1.post1.tar.gz (20.3 MB view details)

Uploaded Source

Built Distributions

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

pydomino_prebuilt-1.2.1.post1-cp313-cp313-win_amd64.whl (28.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pydomino_prebuilt-1.2.1.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (33.6 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (32.8 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp313-cp313-macosx_13_0_x86_64.whl (45.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

pydomino_prebuilt-1.2.1.post1-cp313-cp313-macosx_13_0_arm64.whl (45.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

pydomino_prebuilt-1.2.1.post1-cp312-cp312-win_amd64.whl (28.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pydomino_prebuilt-1.2.1.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (33.6 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (32.8 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp312-cp312-macosx_13_0_x86_64.whl (45.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

pydomino_prebuilt-1.2.1.post1-cp312-cp312-macosx_13_0_arm64.whl (45.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

pydomino_prebuilt-1.2.1.post1-cp311-cp311-win_amd64.whl (28.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pydomino_prebuilt-1.2.1.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (33.6 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (32.8 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp311-cp311-macosx_13_0_x86_64.whl (45.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

pydomino_prebuilt-1.2.1.post1-cp311-cp311-macosx_13_0_arm64.whl (45.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

pydomino_prebuilt-1.2.1.post1-cp310-cp310-win_amd64.whl (28.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pydomino_prebuilt-1.2.1.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (33.6 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (32.8 MB view details)

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

pydomino_prebuilt-1.2.1.post1-cp310-cp310-macosx_13_0_x86_64.whl (45.8 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

pydomino_prebuilt-1.2.1.post1-cp310-cp310-macosx_13_0_arm64.whl (45.8 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

Details for the file pydomino_prebuilt-1.2.1.post1.tar.gz.

File metadata

  • Download URL: pydomino_prebuilt-1.2.1.post1.tar.gz
  • Upload date:
  • Size: 20.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1.tar.gz
Algorithm Hash digest
SHA256 f653e6c22ead51c09defbea31ec8116e07ee5679ee262055e6fe9ef2ff7ba56d
MD5 4e2043caf4868de44b0afdf7398b3208
BLAKE2b-256 5ebc04e5e2071a12b046de1177d5b691bb5cbe9233dfba719273ad337f7e906d

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 48fc217fa5ea3c228a976f1e391430a70c359be853ae69ed0bb1ac05f3bf7316
MD5 dbeac8866d440b9867395003e7e29f1f
BLAKE2b-256 b0818d86503119752879afce81c92f007a7aae5b67026b5b31127c1f47d622fe

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbc39d91339778237f8439e64b5b03bb65155fb0d2acbe54586a35d5e39a171a
MD5 d3d970a1c6c8723f536fc541302e54fa
BLAKE2b-256 d8b62251b55a2ea6e4ec36867d8530a8acbf3b9751a0c65565901f6a7e42cee7

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2afb2b63774c5562c1cfe6062b6be3932c69f92b01c9fb03b4e3bc63bc35d796
MD5 fdc8c0b5cc752319ae264cdbd035d59e
BLAKE2b-256 4297ea227586d5204e2bd76e4d8b61fff71b62bacf2114c8238cae1a12f34543

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f52783abb1802e546c55d65d3895f774599b2fe04b38b46a7d4855816ac3f97c
MD5 0d9630c27c6f595753671c2ae7c0e39e
BLAKE2b-256 7a3aec925a4dd813470735525368a93e7ad0bff11c4c6322a25cb617aaf6f99e

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0bcd917d48484053c84c55531c12cbd427710ebc657b5d55480f8ee4e9cce130
MD5 72544edcb7d5afb807b9b95d40a4a210
BLAKE2b-256 8d4d5fcd1a0ebd3d79ded48455418c378f9d3ce5b7f83f0bc96be19501fadd0d

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe0236b794d5faea6dbbeef5d75afe527bd3f14df900dbfd714fe961999db563
MD5 7cae0c68080215f8c27f716ff357d6bd
BLAKE2b-256 3bdde2ee2f7d3d4f8eec0194522ea3547177f698ef53dc14e493d0ef55aeb117

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c19e90f24d6d8c0d68ccf480c9bd5eb659e0a6afc0542d3c05ea29332c49a11e
MD5 91b7f39785231411f7804f0bb2cf5c55
BLAKE2b-256 00813a667d04d55555fee79bf9610cdb36c4d60c93747b0800d820a13bab5cb4

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 271380fac9c29a59b90245fed2b01ec00884b3ced9fbdd41914a726fe9e4c354
MD5 7c8bf82ddedd18a3f01e11811928be16
BLAKE2b-256 18016e27d452168b024a7c0365e0ec11d0787ef29d2f795c8074e9928a81199d

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 251504ceac7a0048ad37c72fa24dd4430875705c7ab1fd04f54b781c535eed7f
MD5 69373cfbae138cfffbaa22e8559fc7a2
BLAKE2b-256 3629d0913746d85cf2e1de23c5a8fc7a441082228180c30cc840c545d704a272

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c3765067e101d034a21054667f0c032927cadf02ef41f214045e0b80769a1a9d
MD5 0b8b1eac6cee36f27b767f81ae3698de
BLAKE2b-256 7c439cbe2b40f593c2f2c5dbe70a00c86bea2f3f8919d5e24d9af7192284d86b

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7cc9c951a705c7f7a5dbdadc48621d743d0ed72eea90de0085f7061ebd74e9e0
MD5 aaf66364daa94b537e477c77bcff996d
BLAKE2b-256 e5c5e6ec4054176a955b34590e9d1713331e2f3451c6df003f669a1fc6e57a5e

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 613b5ea1efede57da0d875bcb5dd3ea88218226128f1a0f9963ff34165cfbf45
MD5 0a6f9bdecb23f8441477e2295b128626
BLAKE2b-256 22aa0202ea568849333c34d9c53e5e2cf1340b108bbe0a13d4a646d62d47b408

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99aaaca2a66b470052956788b239e4ee3c9f3bfc7d922c31fdbc9429c435ec11
MD5 7ca48d3e5e15a20223f316f76f777ee7
BLAKE2b-256 0ec22662dfbde338f2c23686de3cb96983208436c50a273d5dfed209a30a7024

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1029136eee75dbf0fc183e5cf258f956e9ac23292a6746ecd1e06c3681a9af34
MD5 9baed6075a8323b06c5e3b8d45f37942
BLAKE2b-256 116b0c0df5f7e652a31013efbab15cdc9806294cc2c54dfa1b36825c6a9d4398

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 aefa14da4660b26c1bd806aa5413d81d49940963dc5eba2c253f11baf958d294
MD5 9d1b4d45dbe087406203ea79e2844be0
BLAKE2b-256 7e7b2aa516645f74e04fb3703725ef90464b43e45a523b45fae5fbcbe950457b

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0b820da894e755a45b46340cbb1345cdfa64d07d0a086d5a59f0a31daa04eba
MD5 aee69bc62e206eb1d4fbbd3b3e88e91c
BLAKE2b-256 ea753ed3d13da1e5c30c3c27f0f16184ab8ce1c7c7ff6f30d0efed25119615aa

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd2032662f325b340f78e57daeba8a8ad89b21265434ebec2f89ca2033bdc42d
MD5 4bf722c0af76d9e68bf560e1643df5a2
BLAKE2b-256 fb89e79b799c8428ab0804e28661471f271d1401f5ee90cea3081a2212f9c64c

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68a58b0ad868f9900037b3f89c4f68558ca9732f49292bc858130636f1910463
MD5 ed38190254c386121bd1d4974571e193
BLAKE2b-256 4e89e09543bf8bca58cc02928637352fe6644f87d65e6e381187f03b745afbc0

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2ceea3d00439b45eb08d3792fa26a270be34dc9852eed4323e81a58bb2784010
MD5 5ea437fe9c170fdbd21e153defe3fb6e
BLAKE2b-256 7751f4ed1c9a292bfa955ed2ed0c7484056c7c45625c2772031a954875ecb1b3

See more details on using hashes here.

File details

Details for the file pydomino_prebuilt-1.2.1.post1-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pydomino_prebuilt-1.2.1.post1-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c013debd476d7aece5c90d903bf9c2910c0f933dd64535ca1c673e47cb3978db
MD5 0781494bfb5236d351ca7701e6e3d868
BLAKE2b-256 89895237d94e1ee4f7f01479bdea59f7dd0d3bbb73bef2bb7e48ecbaa73ebf2a

See more details on using hashes here.

Supported by

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