Skip to main content

Text-to-text alignment algorithm for speech recognition error analysis.

Project description

ErrorAlign Logo

Python Versions Coverage PyPI License


Text-to-text alignment algorithm for speech recognition error analysis. ErrorAlign helps you dig deeper into your speech recognition projects by accurately aligning each word in a reference transcript with the model-generated transcript. Unlike traditional methods, such as Levenshtein-based alignment, it is not restricted to simple one-to-one alignment, but can map a single reference word to multiple words or subwords in the model output. This enables quick and reliable identification of error patterns in rare words, names, or domain-specific terms that matter most for your application.

Update [2025-12-10]: As of version 0.1.0b5, error-align will include a word-level pass to efficiently identify unambiguous matches, along with C++ extensions to accelerate beam search and backtrace construction. The combined speedup is ~15× over the pure-Python implementation ⚡

Contents | Installation | Quickstart | Citation and Research |

Installation

pip install error-align

Quickstart

from error_align import error_align

ref = "Some things are worth noting!"
hyp = "Something worth nothing period?"

alignments = error_align(ref, hyp)

Resulting alignments:

Alignment(SUBSTITUTE: "Some"- -> "Some"),
Alignment(SUBSTITUTE: -"thing" -> "things"),
Alignment(DELETE: "are"),
Alignment(MATCH: "worth" == "worth"),
Alignment(SUBSTITUTE: "noting" -> "nothing"),
Alignment(INSERT: "period")

Citation and Research

@article{borgholt2025text,
  title={A Text-To-Text Alignment Algorithm for Better Evaluation of Modern Speech Recognition Systems},
  author={Borgholt, Lasse and Havtorn, Jakob and Igel, Christian and Maal{\o}e, Lars and Tan, Zheng-Hua},
  journal={arXiv preprint arXiv:2509.24478},
  year={2025}
}

To reproduce results from the paper:

  • Install with extra evaluation dependencies - only supported with Python 3.12:
    • pip install error-align[evaluation]
  • Clone this repository:
    • git clone https://github.com/corticph/error-align.git
  • Navigate to the evaluation directory:
    • cd error-align/evaluation
  • Transcribe a dataset for evaluation. For example:
    • python transcribe_dataset.py --model_name whisper --dataset_name commonvoice --language_code fr
  • Run evaluation script on the output file. For example:
    • python evaluate_dataset.py --transcript_file transcribed_data/whisper_commonvoice_test_fr.parquet

Notes:

  • To reproduce results on the primock57 dataset, first run: python prepare_primock57.py.
  • Use the --help flag to see all available options for transcribe_dataset.py and evaluate_dataset.py.
  • All results reported in the paper are based on the test sets.

Collaborators:



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

error_align_fix-0.1.4.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

error_align_fix-0.1.4-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

error_align_fix-0.1.4-cp314-cp314-win32.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86

error_align_fix-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

error_align_fix-0.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

error_align_fix-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

error_align_fix-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

error_align_fix-0.1.4-cp314-cp314-macosx_10_15_universal2.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

error_align_fix-0.1.4-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

error_align_fix-0.1.4-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

error_align_fix-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

error_align_fix-0.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

error_align_fix-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

error_align_fix-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

error_align_fix-0.1.4-cp313-cp313-macosx_10_13_universal2.whl (1.2 MB view details)

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

error_align_fix-0.1.4-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

error_align_fix-0.1.4-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

error_align_fix-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

error_align_fix-0.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

error_align_fix-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

error_align_fix-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

error_align_fix-0.1.4-cp312-cp312-macosx_10_13_universal2.whl (1.2 MB view details)

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

error_align_fix-0.1.4-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

error_align_fix-0.1.4-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

error_align_fix-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

error_align_fix-0.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

error_align_fix-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

error_align_fix-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

error_align_fix-0.1.4-cp311-cp311-macosx_10_9_universal2.whl (1.2 MB view details)

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

error_align_fix-0.1.4-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

error_align_fix-0.1.4-cp310-cp310-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

error_align_fix-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

error_align_fix-0.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

error_align_fix-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

error_align_fix-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

error_align_fix-0.1.4-cp310-cp310-macosx_10_9_universal2.whl (1.2 MB view details)

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

File details

Details for the file error_align_fix-0.1.4.tar.gz.

File metadata

  • Download URL: error_align_fix-0.1.4.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for error_align_fix-0.1.4.tar.gz
Algorithm Hash digest
SHA256 7a7e4a20315fdf0e50ed63a3585591848a5fc49f62730503d43ab7aa55ab4db2
MD5 e6dc45c051029a2e4d29b23eaffa5b7f
BLAKE2b-256 e50b869e78a47a1983ae260277041bb406aa852b4f2d71c6b7b40e3b1affc559

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d8b63dc92b4e25a14aedd12430a9724cd84c812462c75b0ae9cb6d2e9687f495
MD5 5b4415bc4427c6f0ade51888a4ee0c6e
BLAKE2b-256 6ecea7c71c4e31f1ce40762901dc8db83477cff100c46506d882e4b89d855763

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a448da34451910eca40477e5b2541408d73f5fe7c8d1d91f730c425fce177f8a
MD5 0fe0554644c938f890ef419d6250b39d
BLAKE2b-256 5be1abfccee5203e9e30c57f2fc4de1cf6ca0537fe61954c0cd33ca5eea2da64

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b9ee0d074e28fada53cc1441c33765495534fc9a5729c37df00bb11465c60fa
MD5 1cd6243e7c5ba0bb6904c167b3fdb3c2
BLAKE2b-256 ffba29272429bd47fc7d89bfaf404c8eb990db5b964184f29dd190398cb4b5dc

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9eba6b3ecb8af40e5b12e87c34a3cb235b0a144222c4477dd2fe3e4ffc390f37
MD5 04867c59b14e2d0d7d3f6565202138b5
BLAKE2b-256 ec361b3765eba53665999389ee7f964fd6aaec93520c9201513dfea0b5126568

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c632c49eba2a8adfcf59e88221f69cd56bd5ae498b9481c7120c948adfa071a6
MD5 e3abb122e8266584092118ef64385fbe
BLAKE2b-256 6fce6af37f7af58a1a90610a79e6c9c04394657716783df36c0fd848ae2ccc75

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ac67464783e1c143e0f4a56410f4d2fb94d43b9ed67a4becf47b5f235071cfd
MD5 ec774aab8e1c19276b836f089d4e0e6e
BLAKE2b-256 b345af0c69927bbfcdaab31c702169a573de843634dfb00eb8a45b78ae6158fe

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f9191bc24c65a6d8d28c6208346704b3d148a3da5517f6d4446492c120780ae0
MD5 170100ce3cab2a24d90265611fbd7b0c
BLAKE2b-256 16bc4c2993ea4bdcc518829c37d0711e451c451150428eeadadf6a58358ce4b9

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c2d6f9d123114f836cdd2800a9d73111ed9a3bebe0911be47f9960b4e946f7b6
MD5 b0b5aac3883b6c59fc3df82b3ff7f7d8
BLAKE2b-256 0d02dcb1c994f15d684e6d861a4cfdb59ecf9177c426d8f6b4ae31c7ea6f11cc

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d7c73066cc9767da559c0002529586ef6980742263c1b93d81ec2e1f43d487b0
MD5 2527e11c9e902356c166f0a97a4d3fd3
BLAKE2b-256 c7c258ef96b4ce8bb70298eae9a25db82b7a4779b3d6b7729549dadc8051d0ed

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff8ee3d80127001d54351d92f0ee309c182b606d96c239ea647b15b84bfd22b7
MD5 591e1188f540bc553c63b96d8ad11145
BLAKE2b-256 8a3b0adde9da745141a37640d1cda9195ea86a4d03c78f92a86f65b1e5486d42

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4c8d43054335f218d0ed0257d8f68618e20a2350732faacda12eb90757614be4
MD5 acbcaa7b4470b5b1d6c1c122a9d3de0e
BLAKE2b-256 340b7d4fb997292f1acbe00b6745aac61c38bb56d3c29f72a1a4af7f2a317db9

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c966b47019acbf655f6c54689d90a4812a01eeb60b6372d90a29c2aa6a9436f8
MD5 7743db778a6caac8a0aea6e8fcddf995
BLAKE2b-256 d5b32b67dabab7ee4a4fbf351dfb5a4f2f541193d82816a08e6e3ab5f5c25553

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 07198396282e7be1df64e5f9f2ce62ee92b5903533b8b9643429571787cc6f6b
MD5 0dc9cd170da03bf51a0d9f307ea956ef
BLAKE2b-256 0ee5f3459519acc8c9b14dbb54e40097b7e7b182588eef14fdf76b6cbbab72cb

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a78cb6d131d95bb4e96094aec85b8aca83010fc48c97bf148c4e32de2eefbdf3
MD5 aa1696f3ce7184a64f335b94f94ba49d
BLAKE2b-256 f0a167c8f92fd551803d4c5c1c37f7f9ae9039d5b2f46f97ea872d3e9a66de2f

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c527cd7dacd392bc47ce426d8077d9eae01643382eed7e4266106b5be47880e
MD5 beb04c4e011b3802a68f7e23c0313e6a
BLAKE2b-256 edf6cb951c983608d0467bf01ff23076a8de01a5a4b68bfd5bc261cef0312aa9

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8a11b16d082b8520495ad8f00dfba6a76e2f5978d20d34b94ea95590e3e7033c
MD5 0f0ec23b6c1145a01bfa51ff945c4f16
BLAKE2b-256 ddf2cf0e0699e39bff962d28f5cd04eca0b7f879bef799ad5a5c3605b882859d

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6d1bd2920c280fbdfc2bef0f6381ac9ffe7c176480c2ac829b94ecef484115c
MD5 4f4c4e2af346e424a788c5d4d9034dde
BLAKE2b-256 5c94575c5103b35e9550585f227b11a9716fbdf512d64206581804c2d378b572

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ad6af385d8d273486289306eba4bfb229be9fcf9cccd254274faa04effa556cb
MD5 cfacc0cbc6b34ffa9310182b93eb3f74
BLAKE2b-256 409c17f8de5ee6c2ad4f6111458fa1e7d09d1d4516dd44f8782f7a2958479902

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7629110cedb6b21742211d2a2cf7be5f5fc8a7a271e393aa19197c142a487553
MD5 0abea1995b7d968beb84d887fa83d4af
BLAKE2b-256 1088490d4bbf880c2bda2384f01c45d38e5700c76fd9f374483b0593112f27ee

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 09b128be0457b99d9c8c8c71fd72899233e02e99720442112ed38614b9e811d7
MD5 50a0ba41cdc7f6abd6e32bdf63305946
BLAKE2b-256 15ffa4e967afff828760c60105a4e4b245b7f222e24c7ef51b4c81f582ca4704

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6a78434d94bacbbeb9776621ee5a8c2a3c2f260cb8e57c5708e6f2134eeeed64
MD5 1cb44ff7f3a610da114b7ddbc22727cc
BLAKE2b-256 08e07a305768674cfa09edc7d541334644270ed9e3166a708743522649a264a3

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d2100979e7ce5bd0a3a43d7d9baa698ee9da9b6646fdd661162c61e0d4301bf4
MD5 5dcf90c8b12ea1dd1ef8a55158d3febc
BLAKE2b-256 6d1c9a6438af5d2d75c94893476aa21638c5672d96a4d0fbd4616f0bb66dcf4b

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7d8b1fab8854ae0a44a9757c37336521049534bbac9c01536c8a05cbbaf88777
MD5 fea3cd65840b3ec12315da14948eab57
BLAKE2b-256 764aec85624612d340e3ea3f889517e6d96be6fb6bfbb4a6e6d3fd5e771610ce

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 457cad82fe27b82d14b4d9239ed42a1898f3144388a0a74561abd59b3d59df3b
MD5 f8bd431ad31f7b7a7c2c2828af119ce9
BLAKE2b-256 d5b91abe5b085d6b0f162efe35ed03eca5e8518fac6d9dcff7d6ac7a308e5a76

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3c52ff41ffad8eed54dd0abb5090670c46f90e106221c8094b9eb22b56eb2444
MD5 f714f87fa5b07ad8222dc101fb6e13f5
BLAKE2b-256 54ec4e4c61032f2bec55971c7a1424835919b691022d908036aba42868e1f5ca

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15bb55041fb30a353276528b9e8cb8eccc54793449dabf40ef4095f89f5af591
MD5 a91d52d18e7106d1f40d4a2719cba272
BLAKE2b-256 7b933442d4af537e3d34d0a7b3062a6e07b104fda9cef5aeef91b4ae3b17ebd6

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 729052308287149a4f379f77422f847ef4ef1101f427e74c9abb8e00382b6b28
MD5 87f45d568394f32e5c6e59bfdff6b13e
BLAKE2b-256 5f2121092526f53d8ba7d9607b5da1278f4b8060ae8adc5c8fd89e84f3b28c0d

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 242355fd0885ae7e4188b4362ebc7c707c1666372167758740937213edaea17d
MD5 f8b3c224a0a15fd13fa3c1626ca0611a
BLAKE2b-256 579ecb72f9a6d6955d10de615d453feb666e35dd55e60148b605af410f7cb3e9

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1448bf2d7e60c5b155c934008f5a2f00e14e3d1d2169b58fedade8499da2c529
MD5 c55729a6dc7bad037905d50e4c636e78
BLAKE2b-256 4c9e2e02938855e8acd16bf929bc8506885d26d52be4c83377db166aeec412d1

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5d7ba21f6c152097d4ce97b9ba7868c83332c3fe0ed349c666e58b9f378eb4c3
MD5 358f3bb634a9c16c7cbc93d019386172
BLAKE2b-256 424f8fa043da6937af34062c5b42311b07bfbf42c3f4e9fef4220110ea9f62f8

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92a87659eb7d653ac272aba0fb2484099f992f3af3b022e41b351a32a96c9d61
MD5 134ea9b33a08d17e7c859f98c6a20c9f
BLAKE2b-256 add1e3b47294323d48d1f5c4bc02dc097c90393ac9c6a136aa26312ebf326260

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 34396f5d02472d43ccc5601f5c1c239136e2b019a51aa2a269a7151ad4fcc265
MD5 e73951d58076b8b34d17d7f0fce79250
BLAKE2b-256 487983724bfc70d084c6305b2e75225949f218f8628300cc87b0a36555fcf7d5

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c63cea624c742b84585e012a6f2910d9548d2f76399619857b022e547148eab
MD5 2e49c63c3b82de868cae70d600833f05
BLAKE2b-256 62545da7d7d1e61e6e28a45c899146c9c9cfe6e9880805925e847c8cca621758

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f874a811c97048be98541d771738fa59fdbdfc1feba382fc2a1c51ea2ca5c8e1
MD5 65e15f9c917720e22a0596b4f04a16c7
BLAKE2b-256 ab30b367926ab2e8354ae9443fa00f79be0e9de991d471a15f89fe0c83be0d8b

See more details on using hashes here.

File details

Details for the file error_align_fix-0.1.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for error_align_fix-0.1.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2e96842ff1132c9b8ebe56ca029ca501692c6e92de8cee91fa0115f113e4fd2e
MD5 d8280cbf35615d35bb5738b97c77c830
BLAKE2b-256 8565730091525a05272fde964f6ddf1abbdf1298656d0e3668d073c926e1162d

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