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-0.1.0b9.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-0.1.0b9-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

error_align-0.1.0b9-cp314-cp314-win32.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86

error_align-0.1.0b9-cp314-cp314-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

error_align-0.1.0b9-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-0.1.0b9-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

error_align-0.1.0b9-cp314-cp314-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

error_align-0.1.0b9-cp314-cp314-macosx_10_15_universal2.whl (1.2 MB view details)

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

error_align-0.1.0b9-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

error_align-0.1.0b9-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

error_align-0.1.0b9-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

error_align-0.1.0b9-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-0.1.0b9-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

error_align-0.1.0b9-cp313-cp313-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

error_align-0.1.0b9-cp313-cp313-macosx_10_13_universal2.whl (1.2 MB view details)

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

error_align-0.1.0b9-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

error_align-0.1.0b9-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

error_align-0.1.0b9-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

error_align-0.1.0b9-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-0.1.0b9-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

error_align-0.1.0b9-cp312-cp312-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

error_align-0.1.0b9-cp312-cp312-macosx_10_13_universal2.whl (1.2 MB view details)

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

error_align-0.1.0b9-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

error_align-0.1.0b9-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

error_align-0.1.0b9-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

error_align-0.1.0b9-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-0.1.0b9-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

error_align-0.1.0b9-cp311-cp311-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

error_align-0.1.0b9-cp311-cp311-macosx_10_9_universal2.whl (1.2 MB view details)

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

error_align-0.1.0b9-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

error_align-0.1.0b9-cp310-cp310-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

error_align-0.1.0b9-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

error_align-0.1.0b9-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-0.1.0b9-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

error_align-0.1.0b9-cp310-cp310-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

error_align-0.1.0b9-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-0.1.0b9.tar.gz.

File metadata

  • Download URL: error_align-0.1.0b9.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-0.1.0b9.tar.gz
Algorithm Hash digest
SHA256 7d6ba71c27b9fadb246fadc0cc7d99e0b4f3afd59fd798b604b992bbb8d14620
MD5 aa246e6097a8cc2e18895cd6984956e9
BLAKE2b-256 60ac46e1a678cfd41b99dc759890a70dfecc5d6c1014cbb8df8a0df1b510af90

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7556a164ddf9bb81954515702dc4427e7058ab6dbd2a0d13bcc2571ae683db6e
MD5 2d971d8cfa449419aa5010efaa7aebe5
BLAKE2b-256 b9a39144341c98009696e8ef24a2fe22ffa291937d599daa2ab9064099391391

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp314-cp314-win32.whl.

File metadata

  • Download URL: error_align-0.1.0b9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for error_align-0.1.0b9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bdfd31654e4e731176e0a958d0377b2086f6a632c83bdf43fccfb5ff7813feda
MD5 15be163b152f9fd194a87348243300e6
BLAKE2b-256 b703483338aa86c32905845084058b862955c9d29bab1beac3016f7eee08e4bd

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67e17fd4c74cecede50aef2002d2be30fb0a044c6ef41cfbef7c65e615c8aa6a
MD5 1fd075589b7a135f7b73aeec3551416e
BLAKE2b-256 03461f6a3b76941614fa492157b4c18ed506afc7539d89d4061ebaa38acca4e0

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ade94910e756d68fd882ad6cacc36c528a1e0e3b568fe010eeca90a80873baf7
MD5 8f057e313d326a44c3f4c31c7401eece
BLAKE2b-256 5b132535d3beae54412726e15d04b6df03c8fc55cc70e991909985cf8377d306

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa256e03a8fd4e6302eac8e8476022f8c2d464832f424d1bb02fd061d6c8d8d7
MD5 90c4477b1a234baeea6ff90c3ff40507
BLAKE2b-256 8dd24c8b833b3c0bc4bc3a9b82311e7114ee470d1a07598e24990687358973e0

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d8450c378e3794ad11d0d0ebacf64dadff5214ab1c45eba15368a81679a9a529
MD5 71b68a55da0851ba7e6b2cfe32691214
BLAKE2b-256 9081aaedf740136404274800a0357f2fca4ede704cfbbf3e48e116ddcd767dc2

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f6769ffd6ed3c042cd13444b35a10ba560226b29ad9f5290c9fc9328471de72c
MD5 59260ee9a30ceb0a06d3b88b05e8b99d
BLAKE2b-256 4270ada68ff2b7f3821be34f2e4c668f4e1fc3fd78f09144bfffae3d4989e6e4

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f3706425b71011d26d364c988d69ac7f32667a82409cbca3646380dee2f3ff15
MD5 3181203c4c759dd6ec89d4dc03e26940
BLAKE2b-256 9721f29111512b993cf3969c7ae1bab0ad3694a72a8aa2f39a38f890017f8083

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp313-cp313-win32.whl.

File metadata

  • Download URL: error_align-0.1.0b9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for error_align-0.1.0b9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5ba004a047ed8077bd719072f825965e947ff89c7881bfc9bceca4ea95fc8713
MD5 165c3032be1a50569fe83d56a6c7c6e0
BLAKE2b-256 4f595b2a8730a7693e4053f2475badbcdb6989ff1b0c609281b43e860ff0968a

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2f8defd671259a064c1e64b137662d8940d95b21cfbaed71e588fa2ce109d05
MD5 758ab079de48fc29b6170e73dda30d82
BLAKE2b-256 0021419e49cca60151a55573d2f2d5a07353ab88102793a4628790acb82b8580

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7e3c045971d7e43abf18ab1db1f3e46c3e8612b78796618a32d24397cfa33f0c
MD5 418b6b83f88d247f502dd5d8e7164833
BLAKE2b-256 e741665be8b6219a2baea985b98acc34f0799054f19d9e22aeec169b59e8af7d

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 110bca7b38664b225e614d56c1f769dad954990c1824bbbd8a9077463cb7e9c4
MD5 eae3d8c23b359be080a7028d4cf4f69d
BLAKE2b-256 02a16da554f27ee1fbb6c6d8d535311c5d07695a1706af9c6c51c175d15ff912

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3d1d07de87e1cd2113217f27423658aa82d8f16b8ef5c19fb549b41cc1916eeb
MD5 9c5fa31e7135cab3c14bb0c15d342c8a
BLAKE2b-256 8d467f2e897eccb630b069255d194e3d066d0504b45efc2da9d617341b06c070

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 09b9076c244c8727ea4afe2a9f312e149f6314d78b36518db09085f99afcaccb
MD5 03968a57a281e5d66786310d1c1602cc
BLAKE2b-256 53fe93bbfff19271fc0eb0efcab4d9760dcc39be425bd38fd4ce9c80a30a4de5

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c6a9e039101855d67f0a5154587657462f63e104332951e2b40be759652e2034
MD5 fba41f10d0ad9785e7a8671edfec04cf
BLAKE2b-256 23225a27fceb6937056d55e2a6ef604d08c647a08c9213f4afa7d13bf7a92c1d

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp312-cp312-win32.whl.

File metadata

  • Download URL: error_align-0.1.0b9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for error_align-0.1.0b9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4bea92eddc2a767b2bfba2c675c20d9eb4d81e8c14195b5bc9e29efd28ba5fa8
MD5 997405e5c32a1f80ad142c485e278861
BLAKE2b-256 7712ee9664364b0243254d0bea28aa5a1967ef5138df3662828bc4d5b9b30a70

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02c36f3bbe4f87a0cf6e28202ed477095b634c3418480de25210394c425265c6
MD5 51ccb3aa87d3f4b702992dfe87d2c9a8
BLAKE2b-256 2ebb66903d2bb56288d5a67f73b5578691062ff44015798492c90a5b7bab7eab

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b6a4baa2dff9ef20d9f028329580e7e030413c72c2b1a376023e3315786457fd
MD5 99c39f34b1028e414b49fdfac73af9bc
BLAKE2b-256 58d4508ee290c2dc00ecec4a8b6caf7a7ce80826bf668760e916a2e56c7b6e24

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf23695b1602b52ee35bad1a8dedf6eee0bf8cac42442cfdf39a6576c31139a1
MD5 c4cac780c0f72f677b8d7fc3294de8b5
BLAKE2b-256 ae6496d8e89b04e274e1a98b1739a01d8698778ec7b724be0dd3f9b051a04df3

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58422bb3cb93366ff956fe84b8c3b4f1deae5ca6d6645ebbd42608c4c0996a2f
MD5 f772056d451dbac9446e64807108715a
BLAKE2b-256 0f0c9c32979d03c276846956a346cf5d923c8724b212fde64da9494d602f5961

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6e5c31fdefe0694f8e39e0f500d1af6e601a8384c2d23192c042423ef26952dc
MD5 dc6266c725e48ff09125abc6018e5828
BLAKE2b-256 321250e979d9964a222c39754e9b851adc904e7fd96bf232cbc5bd7227b5e437

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3a34f334de18f1b895c896e2ff12f0f4160e579477c11b428ac63280a4e062d
MD5 0132e21eac6a2bd8847ae075e61124fd
BLAKE2b-256 cf12f430bf16acddeb2f99b09972092b3c4cbe13f3483a4a0e367efd7346e008

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp311-cp311-win32.whl.

File metadata

  • Download URL: error_align-0.1.0b9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for error_align-0.1.0b9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5e245b8ad36b559f164692e1801a00385bb2e15852168b05b732129cec2de3e8
MD5 ec109a0257d4fe98e317ca1b9b5bf700
BLAKE2b-256 9602eeefb5d46787439072b6473d11c33959437a863fff5de57a6f1f07cfc926

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f78179137069a8736b63947f79741dda9b4eda5ee4cdfc5856093db2c287613
MD5 70470c5f1c47835a28c90363e9393e9d
BLAKE2b-256 a4a6b042485c01f8e446feb3e7292599c9f46c5f9ebf7885131a64043719c23a

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8b01cccb9ab05dfd6be581f2d046b3cb118dec4d82d9e2ee63fb5581fc399312
MD5 574493b17a06a74a9debf1f48e104d23
BLAKE2b-256 35481dfd78df65d123edf08f4577e6aa6bd97ad0c75833cb6b98b26878ef5f3c

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7140d366b5b08d5b1f4c4e30fd62605d8d6f6cda62cfd9307c83ea9ac88a6b93
MD5 b980e4155ae041319ba902410401721d
BLAKE2b-256 e658dda36ee9d186d9b45bffd0b4b08f2115342a2321756b3e54e4f35cc022a4

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e610ac09664568281176251fe6f7c78a7d6f04ff31a2921dddb2fa29dcd59f24
MD5 38f864ae17e0466c5c301ec2c50c4928
BLAKE2b-256 41ffa07eb3239ead3a670196ada5d2976216732f88f8a4d7b1b93337c2b55954

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f6177a9ba1d775061f592567ec4038294e6dd88da6e13fbc988f41f35f44fae8
MD5 d7d0509c4c6775b5f7f78eacca7645ab
BLAKE2b-256 fd55b539fd127c4147cc01faf636bea8ee5a28825e9a7890de275e6eed9bf842

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6da06a67082c614ff0b34aae2b2aee068e83b008d36b90d30838ebf779dcb25e
MD5 3286cd18cf85ed981e0cfa46f39bc77e
BLAKE2b-256 5d00cda16ca7d0b21eb4c28db803e7c34d5ab49115446d713a0fedc2d9e8123e

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp310-cp310-win32.whl.

File metadata

  • Download URL: error_align-0.1.0b9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for error_align-0.1.0b9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7f04da954e79cc901574c4e83c1537b51fcbe0411770469569fd178c8085eb75
MD5 7d7ad9e0220fd0e9343e2f4e8e19aeca
BLAKE2b-256 e3b9bd6206c442c0437751ec3743697b6a8561f9adc8156f123c030e9c6e2cfd

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7de6a0f7ba85d81096150377125406331cb80c397e081db047d821cff56198f2
MD5 8dd12f17cb1a5bcc35fafa3a65a18aba
BLAKE2b-256 197b4be56fdf4a269cdae92e0c54971272973287ebd7af092e8b76736a9fc26d

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 676f1057b2fc8e91fdbeedeae0ab55bd1311065e852d331b6af78ed7f22afccd
MD5 f7ce6d460a8082880619abdd4f0ca820
BLAKE2b-256 0d9b1645433180cd6e24b83ed46ed1b16aa738aab2c9672f70e169172bf081c9

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f695845253b5c2c67ce19d33cd66c8e302aafeb378574442f34f956ec8caef79
MD5 f51da25a95c328fa755f820a71781a45
BLAKE2b-256 805a23941ed7f132908c66ab77a03624168cb47bba4cc1f73d2c65e72d091700

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47f36c2055e7eca9896934b7eb0108b3a0497044225b3627a5dd0b6cf9bba0b4
MD5 78b9f501a75e4c0c53087286aee38a97
BLAKE2b-256 4aa6f9e9aefc3d3e64e768e15af2148599be3804344f2c9b1b79f0f53d8822ef

See more details on using hashes here.

File details

Details for the file error_align-0.1.0b9-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for error_align-0.1.0b9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 81aad877573798ebb87f5bc14ab7dae7a6b101994acd124d401ed04e3ef34e83
MD5 76c6ecb7ab39ee3bb30dddba66c98821
BLAKE2b-256 ea8df50fcbcaa9b63eaf6616db91300e7fcdb99b982fcc7765695e719d61c673

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