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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

error_align-0.1.0b8-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.0b8-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.0b8-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

error_align-0.1.0b8-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.0b8-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.0b8-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

error_align-0.1.0b8-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.0b8-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.0b8-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

error_align-0.1.0b8-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.0b8-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.0b8-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: error_align-0.1.0b8.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.0b8.tar.gz
Algorithm Hash digest
SHA256 6fde6a6fe1507fd08450f66e80e264b49f406a0427d447122bdb109a4dd3d97f
MD5 1fc7c133d194b29f36954077cce9e287
BLAKE2b-256 12e8132917c8f4b1bed1bb2b4d2cd468ccd3cd4c6da7cc1f038442deb304ab0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9ff3137e695ab919d097afacc613dd0af103ecab5a963c2644f0471f96265aba
MD5 f13b4b0c162a152ac3c84a9a3b1da875
BLAKE2b-256 b490ffe6c17d8b0e3abae95e78eedf1ac59dc4b3bac4456cb07c88e8f6dc54bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b8-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.0b8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 dbe19ffaf1bddb12a2d1b6a389a3153bc679a11ba253424a02b7b7311d0d5b7e
MD5 46f0e6fc8ced1e0a4afbdefaebfd9b25
BLAKE2b-256 54901f19964a4f7e4ba0099835aad67ccd08b5a991e8c6d296c95d5388033907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f45f61ed7461fa8c1fe5d3627111f0bcde2710a2b801841c6fdef2c4787e0a37
MD5 12f3491ca0006409ed8fdc3f30240eef
BLAKE2b-256 815e0edb67725ebe49d4c56db47e9afd83ebc4636c503686bf9f8aa9580b11c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 da4122155df74579b4ec575406653648ef06ab0a16e974ecd82b3ecdd999156b
MD5 9523d029e7b806f5cccb0a49918b1be0
BLAKE2b-256 e74d086dbd83dc4a149ad7cffecda5f4f64025f0d5861ddc7fde3ca0788a019b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9fc79669d7e3bc7ff01468dc2634ad9bf6ced35e240bb6ebc769188db991d10
MD5 0d1ada403a6c7f9969fd53cc0512b4a4
BLAKE2b-256 0250e65bf9673ad5a5d5eb00c0805a00f03c53220f2506ec38dd45d13f35982d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 494b7e3fffe472d23296525afb5258b9bc597903b9f5d42dbbe292cc6ac87e9b
MD5 0b29798d18f2601092919d4370e97fb0
BLAKE2b-256 836b8882032a3ad130ace5ae64124f6871325dd16b253670ab4ec2214773e992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 151246fee5536836b31a99b3a89890ce17a264ad03e534ce14a07fa8a817dab9
MD5 aba7b1f566eedd643330482ea9f539f0
BLAKE2b-256 043daa10f94a957a53797d27c298bab493a99fec6c4471c9dd7f3589253efccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6264697a6ed4ab838c38ee410cbe1b37f17a38e86e72258779e4a5d4d011ba00
MD5 c0e5416925fcd97e02186e50dd67c7fc
BLAKE2b-256 b4eb09240388d8e95f699dbec6c172167dc43f6d7bfb38ad1f694e3c0282e503

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b8-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.0b8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 044a7c75dbdbffc1e3dfcf2af4ba29ccc17ee9a3a1faf7ac2e2b03eece6b6d93
MD5 bdd36f07584811746eaa526939dc71e0
BLAKE2b-256 152ba7d8df24c5d0cc07fcf98a21f6560c9121f07928384d45a6a3c7b1f98be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c3365465c6cac41a6bdd044cf5ebae3e95fe943a8f1e1bacdcd2661516d66e8
MD5 e9465eced7716b96471079b324ed4aed
BLAKE2b-256 2b2d46e78993f2559f20bb049780a434744743c16082e540cb679754525e39c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 19156cda63210c4b580642cbe39abdc480df1db35823702d966b10b7f29df402
MD5 3b13ed2daa90d794fad0d576e61d1574
BLAKE2b-256 9dd2f8917c056b629baea77e0db3caad4fdfb549c6d3fadb2bb70e03b323b3e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc63708d3143b8ac3fb866f71222475f100467ec15deeefb46c33bd6c04ee27c
MD5 04f21bc69c9e8407be230ce0e696c863
BLAKE2b-256 af400d19c7fd49b710d8ef61226d95fd6b433882d2ee1a3d8b42fa1cb595a778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 22e726a826b7240ccf1728eb88e42ba56699f7ec9a1f09f0b2940b0277664c8f
MD5 ccc14347981c90b227df85014a75d5d6
BLAKE2b-256 983e2f177b2b4b14568e5973ceb1adbe4d012a9eeba5088150cc61cc4382d0a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b5c985771baa34c61b8332b53aa2a97f41dbe7fbcde54c5ccbe16120af7a2645
MD5 59d96212c4633f25187f080eabb15ba8
BLAKE2b-256 d4126eb6f24581cab60d2c4fb2bbd9a505da4daf3885e6454d287165b573099a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eabeacb2af25f8aff12c54428693422e3c0f1652c3352f33b4840f0b62b45b24
MD5 f2e34a0649c2824f9b4cf68407fe286f
BLAKE2b-256 d53f44106ae3f7654d9a1f9807f77a453ff02c2c045b1ba1a9a2618057ab179b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b8-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.0b8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f1f5a700099d1c38b69ce9ac193059796a45f5ed10d8264b3fc1069a8e4b2347
MD5 3720596a22ac6178234eab8c5043a67e
BLAKE2b-256 381baabd838f34a9dce487775ddbb932cf8352d768506e1bab0aab878f4bfc5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e7ad0d32709aa2e3225e93bffeb93496ba566e0b06b712e79fe988c74fdc9d9
MD5 a41d7b29f2b141fdb813af804c983f97
BLAKE2b-256 38b7a732ec1ac030d35f1bdb41261b4456b86341f7100a098646e34f1e067d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 769fc34360a4e6809a2640ce8e83bd21e500ef9d2e2fbdfd380060845635ade3
MD5 6b41de366fbf6905e15a1b29e90c7bb2
BLAKE2b-256 e7bbeb009529c65038c441662ea312a7ec67e0f451ae13ea1056e04bbe739f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6d4d1ad167f59b837969a7317979e17d74767f52edcffe65d8f23c3912244fd
MD5 9e29408ddcb18aae65e23be565f3e187
BLAKE2b-256 f11281bd0aeacc7254348211d47470f1fe09e91852289c3d1260824d3d9c8ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eeb46f65aa834377043b51930921959a4944d27e45b0a2a36ac173e100c7bae5
MD5 ccedb6af1e379ddd8a98de97db010857
BLAKE2b-256 fbd63b66856a1678d650c7fbaf1a1ba505a3f8275a7f2f27026a3ce8d29051b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 770859adb3b3e5e5f7b0a6752d95c934587984996e0aad289035ba67a7eccd51
MD5 073049aeae734a42218755c55693c234
BLAKE2b-256 8c8b01602617a1e36b52e558fee074f7782d97b1279bb8667130fc4e56b06f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4478df9327de42cac21bac627fc1ee745f7672550a86ec224b85377a94e2908a
MD5 3c54849f156f89a1f30e481a9de5b198
BLAKE2b-256 207cc6f5e4d8479518a80280b2654c11f36801499cc75468f432f71dee618977

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b8-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.0b8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9c217d7e47aec813f712b3cbaf09403357b09bb2804185e1980ba78c690d8f35
MD5 c8f5d6c179c9eb732e98e95571f06a37
BLAKE2b-256 b42d4d4e61e12fbc51d7813748fac092ff64f1139a5ac8472db1a157d5a67d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33d5c16d5d50f11091a338a7994c211ea6d678909073292429d4553121167bab
MD5 20adce1d1e2c4212e259dc297c0c8047
BLAKE2b-256 f0733b8c60b068ab756bb84a67aa73ca42efdbfef749b763b1e42a9f0854e105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 35fbebb0c18e2283f0f400bfba452421b1990f8816414f9eb6c3a519352ebbf1
MD5 aac34e8884a20d853e6eb7958bd9d9c9
BLAKE2b-256 b983f52292605411e95822fb5faef9b67c05efac9da39e3247cb98a9b00570a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13654234f112d0e94fb569819612adcb4093b8bbfd4ad43747b6eff8b9ed78a8
MD5 26efd2eedde216f2d534ad6e37b3fbcb
BLAKE2b-256 f0949f0fec41b666729d073dd783b44accb1c9ced451a2c58a5146338a8186db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c24e20e7442bd758975adbb00751e6dd91b466050699a13afe07225c0cd242e9
MD5 0e974797c68e04d0bf72cedace6473e3
BLAKE2b-256 faf1e6ccbd96ea366efea50bc656e081fb9f405eb9c3356d6964a9e8833e5830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c31f3a38aa01888536c937bc8ac6c91e9bbef6be7752a350c1ab733e4d336735
MD5 cf81bd4116a79bbdf45a3eaa6c1f3dd4
BLAKE2b-256 bfe981d87c967af0d2c28c0b2317c1deed4d159d9073c96bf8242ce55e97da81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57a2b430f11662f6d1f6874ee0c9898c532f15a523c85474245ccc8589c5c4bd
MD5 6416745876a3306291aff0e588f7eef9
BLAKE2b-256 4194ac1e16bd9f6e068942d3c69bc198220e86dfb709c0b23401ee3fa859c1ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b8-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.0b8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 72ecad254a71ed647d79da86a8a0a9e34c1141d36b6cf4da990bf8a50a0cfeec
MD5 ee7271b02be8d8a3b1c56a95696b7e63
BLAKE2b-256 2a30893b44b18512607726a7ac0e8e9b08ccf79935d6614ef74a87d036e28873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fbac3d704b48b3d60069e1447a388742e9c00ec2f37df85ac9aa43516de0be7
MD5 57a938307b55326e8cf7bcc8b36a3ac7
BLAKE2b-256 96517bd7e982f4a1aae6f1c3ba72291a753f3a71fc55300a6b602e104096a95a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9aa06dd8c0f67a4b87d396651280cede03180c899dbc92b7bb80699b62f75699
MD5 1f6188c283634a6a204341190d03a5f1
BLAKE2b-256 93469fcaaab38826664bc0f137cca34464d734112b49ea867f66c81a4e83adf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd0e9d43cfe734c109a9ea28af1562c24aab54cff1a0a69f9292e6fd9abe7797
MD5 be939f9837d3b7045fee0d79c841547f
BLAKE2b-256 443f395363cbfdba4b9781c39bc7b07d9521bd3b9d33971eb0b978c67349ef60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ffa4f8cd21ef03241b6ae410fdff9dc00173c26bb22eaa470e69916c1fe76491
MD5 9b2fcb3d671dc8cc94d4ba075c56d1b4
BLAKE2b-256 fd1428ddbbf9822c6d97fc19f63e03bb6940e65d761f0542563eb28447318e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 10425a341713f5502c0bd669be7b1d0137d18b73a050eaa3f498e7d5eda8a3db
MD5 d35b99ef195bd97cd38289380bd21016
BLAKE2b-256 d204b96d7b22acc0a2e87302aaf65889d014fd0d19c3738b0d55b6bca5b7c921

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