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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: error_align-0.1.0b7.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.0b7.tar.gz
Algorithm Hash digest
SHA256 30b87a46b8049c9936437ba476317335cff72784ef694b6997f4afeccd410768
MD5 4f517da86de1a4b2d71af8c1e4cc1ca9
BLAKE2b-256 a6f2a2f3442832536cdba97765accc502d81bf1853e3abc8d77d376a037a5588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6dfd075261c2de7dc1b5d5432a95c53609dfe3a5db530bbec378e7d40d368565
MD5 0323ba0ad55095d642b05336d018d228
BLAKE2b-256 784df7931149da10d4416f6bdab83cb1036a987f0af3efcc17c6588093927ac3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b7-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.0b7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e14349c781575c5464fa27605bc72492d776f89d1dfd9be1236dccfb6b1fe0e9
MD5 b6e947eb86e785b23b6a8119299ed449
BLAKE2b-256 036e89e20922405f800cfba78f60e5d7527b41e1e0873e9fafdb443243d74f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21307af4382124945fbb95ac4565b66e8f3ddb8bed68c28db49b8cd0d66ad2e2
MD5 e05ce82bd05c05de9d2dc1f6268a1467
BLAKE2b-256 1e8f34080373328b0610dd2ae6b1e3571a1c0624b468609632d34607f4cc00cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a63c39ec03218db203158091392122b85aea39cf1d6aeebd4e9bb1c3e8b5edfa
MD5 77f5de650bfb02d962118c3aeee2e6d4
BLAKE2b-256 92da4403304650676450afcd41342984e4fdc1c11f3f00f9e33df19e6b08c92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 170c65e3a3346b3add48c0abec803c13dff8efaa0355e75d1c9504501bdf6d11
MD5 0525b45814e9186cd2fb5e87bb5f3394
BLAKE2b-256 9fcb07b5d39a0cc1ad7379cd27799c2f57a70fb19367f2363232f883cf8bdf46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f6a06a9306e03c53b3f25f04f51bd1de8f53d89c464585b7aec1086e45a88d6c
MD5 f5d4cab982f12a6f1bdc3ced2c832dce
BLAKE2b-256 295a1e2329545345fca1af489fd335b9a6ccd027cbaef25a0110fc22ef748e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 17fc5e34ca195d21d6da59c8c47e24a9e1cfe07f4a7c7f45cf214865e10be3df
MD5 4459e3ad35e0bb6e6f8937a8651f8baa
BLAKE2b-256 febfac4c5c6c62a576cdfcc0d4d63472fc191ec2629d99e4c1bcf370d7d9781d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fefaeb51907f064c593e20b4935d86a98d33cea3b6b8192668955c8012364402
MD5 058edc86e860307540a83402570cf90f
BLAKE2b-256 4c845e97e69b9d97a8e13f1bfa59bd2f7234a8515ce6acd6e06e1770716f0d93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b7-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.0b7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 81898e9f2fbfe3c7eb90dcb0605227fecb34dc4429080073ba07fd7665467776
MD5 c66bf81d98f4fdc4921e6877840ea3b2
BLAKE2b-256 94147e24285e2c293292bbb92c334ff5ff394e148ae0c37dbe75452afb09a3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 044065900d94337cb1807ba804efee105458ef0e626451ff7495f61634a9e8d8
MD5 0becc5ad35e38126596f09a38ccedc38
BLAKE2b-256 b526f2e034b49631d945e275fe1f421ee0485cb41d6ec91a83a4b4ede166f8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8a9f9a2ec95848bd9d16a87a20620fa6ebedbd6e21c7c3df19144385cba5fc23
MD5 e62676c6bcbc1292080f7d9b7877222f
BLAKE2b-256 0f81c19b9bc93471fd48a32a975ebfffa91398e46f68b68149399bc95afb4d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fad5e7434c38be5db00e2adf17ecd1035b1fe741c0e78a7437d7d735f2447eb6
MD5 5de81630151096724361362f096873b2
BLAKE2b-256 99d1d4469369afb79f1039674d2f8b2ced7205a06a5519811d769f570ae92ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6739e82c54038264b28f4d1720d40dfabf1433962eae819953d53d7da566f83f
MD5 2db2a6138d071877b233e6f294876f21
BLAKE2b-256 90e8eeec675b1f2ac7b55ab6c18cc08f00a29c1d642f83a6070baaf22cbd0227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 984d18265377474fee129fffea01d0d5aaa1d9d72637c7eb7031455cb774769b
MD5 b47eb9f14bed022cb6c2d1017f293772
BLAKE2b-256 f8f2c05b547b71e9101cb86de861521bd219b1e68aa84d0a67b65cf4af35ab19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d4bfd50c983acaf5f244cac34930c7e0122cfacda10ca9ffb875040aaeb489ab
MD5 99fd807ee165beccaeb26e1d95f3d1c3
BLAKE2b-256 08665c5257a74afdb3d5fa07b7c68e9d8ea8fe0dfa2e695535ed044518e16dc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b7-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.0b7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9018f5b7199f607c31d3bbb0da43796cd9f9fef943578aecf93eb56737c93b84
MD5 056f22dce8e2312f1012035f186170a9
BLAKE2b-256 cff305788648d3a330557a737efd623f39e8ad5a428b31e3a82527296ae83516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 397eea0761669c0a8907d825e2dd4b71121b580294d30177f660d843ce403d6a
MD5 e5d903f5b06b3a546ae408d0f6f51719
BLAKE2b-256 81954eb53695664de201c24339e6b51af705213c51223d56a58f5b8cd3e60dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3a0fde41fc5bc3258828d4bc3205dc721c65a1d45840b0ca1597a39b8b53b8f9
MD5 4615c8ab321e4772f1b625bc4e2366aa
BLAKE2b-256 a429bebb2f7fc1734db89489d696bd90fe1574c8ebc5660213433e1097cae693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19ac533a83465fd55377c173457548c8c6e1676193bd60daa37906899c7110db
MD5 73a3322e53436066bf76b022cafc4771
BLAKE2b-256 1396fa9acbf876e0db5efa4b97dd001651c547e51892e6c9f356bd6015668d9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 414533fb07de4ce66d84d2bfd3947526513c04f50ca45e5011a45f92134f4552
MD5 a2b04a1b54097a1f442dd99a57b29337
BLAKE2b-256 5f03c7ba53a9963cb5ae50acfd8283fe0bd675b19906ea6b0cb1029de8db3d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6a3ab96f8698a35d58db7b7879f473d0be6b6cdd20331d403194bd53d644ce1d
MD5 7fee452664c06b7b12f9e54861fad3a0
BLAKE2b-256 c3755966494d99a118309c17227ab9bee8c98c7a07401a98bc4ffe8dcfbacd0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 156780261b702b8ac9c467b496826aa86cc3c264e438233748be8629dc99616f
MD5 0576cf728755c20ae45240412cb34815
BLAKE2b-256 e972d6ef555aa8d3b8d3809ed4707657685f843cf4f470fdd86ae5190b2bcf5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b7-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.0b7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 22578c1f85683d42686bd4efae13db4af11a374f24710589ac88b623e50a0003
MD5 7053f93fb067cdcd5c4d09f7c1b2298c
BLAKE2b-256 9430bcb8cd9d5dac9480ddcb76658dfe8b61210406a682d8138960e1cea174d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c5bdd386f3a988b42b2dd83ec387e5f146c6e46a22f9793ad3cb2b06efe3f75
MD5 4167d0947ec1b4a88993e288a7feb2e3
BLAKE2b-256 6ad687874d4aafbfdaca13656fe4325be5a95c1bf5a6b05df8df5818363f6ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f912145d8ab6d6eaf681387d55c60db836ae55f352965925a43eb9a58afb0f90
MD5 eb2180f5c01cce749181ad1d02f4e1fc
BLAKE2b-256 edabb89060e72925da92e84f31ca9b48d44575d422782507a4d00936b9b6c457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 886a8b9433b3500b6a230416539d9040c5ba670a5fd99c072cf8074e19f94935
MD5 d464d969a28e62873306ccee61950b66
BLAKE2b-256 bc24a96e5dec9ee77d498a88dd90bc29b6bf485aa2f5188b50eb7b1270515a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d36f0fad5ba3afaabd6393cb118b5568dff8ee8b1558adeb21c9ec4fee5b9eea
MD5 3a8913f11fdcce8d68253051ecaa3dd2
BLAKE2b-256 a11ea67da32fd3ae1e249ade9dc98c59b1bdbeee9f2350244e03b8b1306b34eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7b798edd6599c264f798e91d07fa63d365024f9c081e917c40df0251c1090092
MD5 28ad4197c775c4b89ec31a029c5903b9
BLAKE2b-256 a6cdb368d247a0391ae404e1b326a5163f9b09d00716315ada53e5b9618f5970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 75a99914d48bf7e9cd5c44b8c2441c50a12b1118020dda849906d0f438951037
MD5 3f47606313f115bb1fad54fa4ce4b3be
BLAKE2b-256 b96ee19de3d4d58a81386ae8e3bd42cbd1190abc30e62ca0d5051d6b26a0ada8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: error_align-0.1.0b7-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.0b7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2dcac4eb630e7902a32b820d556f9de473894cca6daf1d31d8028f299c597e30
MD5 26564c0058539b28828c496a402e1d9a
BLAKE2b-256 1866fdbb285dfa8eb85f261d7360ee460313ba9ac0da04727472f7f9828b40d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07cd242a38ca68060db407f6f43c953351e8830f23ff17cb0a0383f642a64efa
MD5 38e57bc231a74f5036c764febec7c2d8
BLAKE2b-256 9e6d53e14ecf23d2357e43f798513ea3946d2a22ec4d16396a86f2ab0f86a23d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4dda9990ef059c67d38719d9039116129205bdfd6c79098e04bcb6cda82fee58
MD5 ea5416d440b25e575e9028d5067d2910
BLAKE2b-256 2a33b157063d0110dc840e6a8f3ceed928a0395858c69412bc0ea9198dab91b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bbc2efe300057b3985a0577cad39b8924ea332f2d8a65837f18275d99649752
MD5 b7a206714ba1a94a1489e4d4c6ea14c1
BLAKE2b-256 fdc7fdb8a35c6bff2f18960d5c3e5185b56813968dcd00d284b668d155f31231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d649ef0ed4669bee94d1f1608066d3484431934a15b5daa569766849e106211c
MD5 827537fb01ef3e3a54ddf4eed9ee70ce
BLAKE2b-256 70943dc8573c8723a3248e0d3ca8f39110c122a8bad30490935f9dfd9e317b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for error_align-0.1.0b7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e612c9fd915b0eb3c48881c29c77902241c104d11a0cbd850a60d691acdc9e0f
MD5 70324fec5bbb4816316a1c4d64839e60
BLAKE2b-256 7e5fb8f334be6409729a094a3f2777737c04d7d7a3140d39c694c5d1c5c92541

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