No project description provided
Project description
OCR-StringDist
A Python library for fast string distance calculations that account for common OCR (optical character recognition) errors.
Documentation: https://niklasvonm.github.io/ocr-stringdist/
Overview
Standard string distances (like Levenshtein) treat all character substitutions equally. This is suboptimal for text read from images via OCR, where errors like O vs 0 are far more common than, say, O vs X.
OCR-StringDist uses a weighted Levenshtein distance, assigning lower costs to common OCR errors.
Example: Matching against the correct word CODE:
-
Standard Levenshtein:
- $d(\text{"CODE"}, \text{"C0DE"}) = 1$ (O → 0)
- $d(\text{"CODE"}, \text{"CXDE"}) = 1$ (O → X)
- Result: Both appear equally likely/distant.
-
OCR-StringDist (Weighted):
- $d(\text{"CODE"}, \text{"C0DE"}) \approx 0.1$ (common error, low cost)
- $d(\text{"CODE"}, \text{"CXDE"}) = 1.0$ (unlikely error, high cost)
- Result: Correctly identifies
C0DEas a much closer match.
This makes it ideal for matching potentially incorrect OCR output against known values (e.g., product codes, database entries).
Note: This project is in early development. APIs may change in future releases.
Installation
pip install ocr-stringdist
Features
- Weighted Levenshtein Distance: Calculates Levenshtein distance with customizable costs for substitutions, insertions, and deletions. Includes an efficient batch version (
batch_weighted_levenshtein_distance) for comparing one string against many candidates. - Substitution of Multiple Characters: Not just character pairs, but string pairs may be substituted, for example the Korean syllable "이" for the two letters "OI".
- Pre-defined OCR Distance Map: A built-in distance map for common OCR confusions (e.g., "0" vs "O", "1" vs "l", "5" vs "S").
- Unicode Support: Works with arbitrary Unicode strings.
- Best Match Finder: Includes a utility function
find_best_candidateto efficiently find the best match from a list based on any distance function.
Usage
Weighted Levenshtein Distance
import ocr_stringdist as osd
# Using default OCR distance map
distance = osd.weighted_levenshtein_distance("OCR5", "OCRS")
print(f"Distance between 'OCR5' and 'OCRS': {distance}") # Will be less than 1.0
# Custom cost map
substitution_costs = {("In", "h"): 0.5}
distance = osd.weighted_levenshtein_distance(
"hi", "Ini",
substitution_costs=substitution_costs,
symmetric_substitution=True,
)
print(f"Distance with custom map: {distance}")
Acknowledgements
This project is inspired by jellyfish, providing the base implementations of the algorithms used here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ocr_stringdist-0.2.1.tar.gz.
File metadata
- Download URL: ocr_stringdist-0.2.1.tar.gz
- Upload date:
- Size: 72.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2537c0a9ebcb6f3d9c4ed86c3081bcdac8ded45350a2ed29fba5e6c5577f99e
|
|
| MD5 |
48632d0a509a3d2d9d45cecd63135ace
|
|
| BLAKE2b-256 |
66f0ab387194542ccad42cad268f06b1620d31ffef2cda633f1cfe03bdf94f06
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 518.4 kB
- Tags: PyPy, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8523213d630b5f8980ea4741cfd56c853647b4e7038f4c5bac6d9940a20e28e
|
|
| MD5 |
d7f40283087321f056752f7d73f760f8
|
|
| BLAKE2b-256 |
51d8a384fc975a4af113508ec1dff83c7b0f6b915934016a748b05f4de549c33
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-musllinux_1_1_i686.whl
- Upload date:
- Size: 547.9 kB
- Tags: PyPy, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6243dc41bd7dd843407c41ae98049d3a6ef517d75681bc0849abbd9de718d7c9
|
|
| MD5 |
5f469ab813e202b51a5917f3e7fb33ac
|
|
| BLAKE2b-256 |
5cb647b1b8a4aec3c9e6b0278acd18402f00e1d06d2e0370217addc99c7db62c
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.5 kB
- Tags: PyPy, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9e2a8b0b1f69b1687a215abf4736a2074853631fa479ce95f6a3d307ed61a94
|
|
| MD5 |
4f9c5d1434e5ea96ecdeb630a1786996
|
|
| BLAKE2b-256 |
95ebdd7c9cdd34d157272bc9e1511a041aaea91ae18fb0a2e854b2188e2a3256
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 347.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea4d3797615eefa081fcfd3c93a64a1cc61bc30833e8826271704fce5824b33e
|
|
| MD5 |
0eedc616ec6dac9ae83645616be54f39
|
|
| BLAKE2b-256 |
f2220ac0a3f28af80d2b6f76387f4a700dc7ea235ff302d8b1ae644d7d8992a6
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 351.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1a30f94c70920430fa9967e6bfc491474d38994e54532b5c7ad5599c908ea0d
|
|
| MD5 |
c155cb5c2ed98b9f6671b9a77cb8e2a2
|
|
| BLAKE2b-256 |
8bd773caaef4cf2872544fdfd5a20b3aea796759f8e32cbc996dbfa446055381
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 342.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87250f2e07d40c5e0f69d1dd291d8fe1dc5b12641e6095670fefe015c0b1e8c0
|
|
| MD5 |
e138363901613a7115ec7b063f886df7
|
|
| BLAKE2b-256 |
57de61546b0e31b6e2ccd9872ccfcb484019da8aa37f0c20ddd3e9959e89b4c2
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 300.9 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd8f897f2ee5caf2f1bcf05d2959260a6fb9465d9be53df8d6a672370e49369
|
|
| MD5 |
63d5c0fedbdd3b933a6c9161795f6487
|
|
| BLAKE2b-256 |
6511e18a8819a5626d23cdfb91af5f6c27df87498b029d67ca9f9b814add4334
|
File details
Details for the file ocr_stringdist-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 314.2 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66113e89664549137126ea5919ed8f7e3d9f2370e0624c785399ad2711ef9cc8
|
|
| MD5 |
ea75d2674a26b83db3ea657655ca0c42
|
|
| BLAKE2b-256 |
150371b5a267f6154665afa46dfe5ae9d6e6dd766c968690f00b321d05070577
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 518.6 kB
- Tags: PyPy, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91dffa3eca8010a1cd540f9fc727e7da7dd3fd3432a19fd833aa04914bc751b0
|
|
| MD5 |
be6383a78794c17565c452c49ba2d1ea
|
|
| BLAKE2b-256 |
c32e8c46e2d1cf18c025675f7dca0758f33146a2f2c60ac9df66a6f72111053f
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-musllinux_1_1_i686.whl
- Upload date:
- Size: 547.8 kB
- Tags: PyPy, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe5e11e2126f1b72893aab39f379113f87d40463b603653b52dd0171e9ab7587
|
|
| MD5 |
2a29c2ced4a62018f2799d90e8b82f52
|
|
| BLAKE2b-256 |
ed4e161b4cc592755f80aef65408b8cb542a5eece5499fd37d2025a197d33d0f
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.6 kB
- Tags: PyPy, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
135becf1f1a5ab8e9f4f5f5f3ed0462e2ce92a15bc4ddce9b6e7dcc5ddec2f4a
|
|
| MD5 |
88a2c9e05be2e42cd2abfce91e59b38c
|
|
| BLAKE2b-256 |
1020418502bca585c9d67dd3e38512ce282cb98cd877ee3c0f01aff769ae02f2
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 347.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a73d702ad6cd6e5198b54405711b0e72a042fc41ad0272b636dece45dfcdf41
|
|
| MD5 |
8167abf9d737f2f0380331a20c3769aa
|
|
| BLAKE2b-256 |
2125213f7af554ea11c74792639d27a6b920cd318373822703b158d6b4d9c88e
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 351.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba37993726b86fef3b791bb3f9badcab24bdb644a2acfe2fa9b3c612600f98bd
|
|
| MD5 |
248e23fc3e17e599324327a2e377e6a3
|
|
| BLAKE2b-256 |
68535055f2cd8c3a610ed76b9faad3ac9f86830718505cbde7c11d160a28798f
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 342.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
390c7b680c35d69eeb22b51310d877abdb09c2d7c8b50815455fa8b21b19e067
|
|
| MD5 |
0cfb2ece0a1886da0bc6281e9398380d
|
|
| BLAKE2b-256 |
0a8a229312799e430d636f1097e751ecf4ba347f0196464adcbecf7e26f62c51
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 301.0 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6a698886c3f5fddc3bc2826bc55dfc57b163dbcaf34ee0e3df215203dfe8709
|
|
| MD5 |
b80254e3b7483db30d8c8b9ce32f946b
|
|
| BLAKE2b-256 |
6f1a680d79b0fc0358832759f4a28e8df200ac88e41f47058f969b600eb5c4cd
|
File details
Details for the file ocr_stringdist-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 314.3 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d952ae954557c8cf53f012272f59f31f3069e57de6a1280e81e3d9281f2f9c8
|
|
| MD5 |
405d6b9ada4b95538ea9a3357f532dd5
|
|
| BLAKE2b-256 |
9803e8a1bf13e98746885f8609ec4090cb4ca16e0cb44765d718916f76b290f9
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 518.7 kB
- Tags: PyPy, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03f539b0995c6390d75404823a82ca53cebc1b5edf21f75a9f6ba2c7bff158a2
|
|
| MD5 |
58a9295c6c8b6df1d42525149ec0187d
|
|
| BLAKE2b-256 |
571573d4ce88f01db57f5db5610ad342e2a7d783da2fdc9fadc32eeea1c1a930
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-musllinux_1_1_i686.whl
- Upload date:
- Size: 548.6 kB
- Tags: PyPy, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9bf7032a0d320f561a582f1640891171f7f4aca7cff4b8b8371c429b4788c9b
|
|
| MD5 |
cd8cbfc3b92e30473e19beca894d0d29
|
|
| BLAKE2b-256 |
bb5b94adf1369da4a76a7c9b8623cda43fa87326008ab6a53cd5636628b8af28
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 521.0 kB
- Tags: PyPy, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2809f01424bae8c04b212baa4aa569cb6897ac64665f2274783205b78a88c57e
|
|
| MD5 |
7627ac0b59d987ee4493567e4d301934
|
|
| BLAKE2b-256 |
960ed75cc3967dd5d3e58c229ee29a3ced90b4315f911c72f4e52fd15d9c194b
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 347.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36862e3331e0e3a7ac5f04a76d0bbf902ee1dee203ee853536299bd7d07b515f
|
|
| MD5 |
079690ba9266918ae6ce4174fec0f142
|
|
| BLAKE2b-256 |
fb0e88a73b596b5ff6352d8d295ff55c22f846e404d425e191c035d3c6d961ea
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 352.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0056ac1909eeff9d0d2fff86e26bbb4f08d96405d1ee180480302b5e5281175c
|
|
| MD5 |
30ecf66ca983c1958fbb060f271b11ef
|
|
| BLAKE2b-256 |
76216b763e5232c35420d21194f1f2e3ff87a5002e656939f46d904d8aca9545
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 342.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
694d615438777137c9bf838e3f1be466784fc1ff827f5f3f9f95f90871368dbc
|
|
| MD5 |
95d3566010d1bc26f9d784086e423812
|
|
| BLAKE2b-256 |
add67e123d5db8a54c6de5f78d0f84c7cbdcb65bf4276552ec1c5fa79a22cef7
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 300.8 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a98265db2f46fe31ffa29437cee98f124918e6bedaac1600ae0cb9153ef90f42
|
|
| MD5 |
fc59f200ffa1d883caae8abcbe1f864a
|
|
| BLAKE2b-256 |
abe7086f884d274c732b910670f0152562c5743c709c571f4da1bac81286e24c
|
File details
Details for the file ocr_stringdist-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 314.2 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4df141d93eb870b0afbc2351c76dbd2b5367f2dc3b5903bfbd04658eafe52c5
|
|
| MD5 |
f0a9191f3874774159f4911922e2ad80
|
|
| BLAKE2b-256 |
b0be0ae4791ae6a520b1162f2d49d60246fa1663a759c2fe40aa3d06fb080c6a
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 181.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a481109a75a2d7f394024a33026b5d5284b51acdbccf05a3301a3c116228980b
|
|
| MD5 |
32efb5b7307fd711ed8c2c6c189e82bf
|
|
| BLAKE2b-256 |
84efe1b091768510efc509dc504d8f463affc5191ed976330673bf9383d78a00
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-win32.whl
- Upload date:
- Size: 172.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15cb941a0a7a0e46ac9ec96d9db0a86b50535099d882bd62d1cd62c23858e7fe
|
|
| MD5 |
7c5eb5e77d892e0a2c2cb5264ef7db72
|
|
| BLAKE2b-256 |
e71ad7e855fd419d439afcd3372f300b4c3acb84d7bc2d2064ee927c1560cea4
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 515.3 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13861a249a8b2bf39be0bcf0226b460c726edb0ddfc64b955844755f6472db51
|
|
| MD5 |
d840e725653ffe183ab873acf268f788
|
|
| BLAKE2b-256 |
819bc661e9b3e384ca97d3589e4c4978293e7876317d1aec77a6b129973c87c7
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-musllinux_1_1_i686.whl
- Upload date:
- Size: 544.8 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4ca9c04708d9574b0405ea7c43a2b8e101b429cf7ec732a5cb376f6988732c3
|
|
| MD5 |
8dc0ee38a7ecfc1668765152a1381b3a
|
|
| BLAKE2b-256 |
44040ec8ef2b0ebc96483962f8c6c1fea74ead4aed824f060d3c36b5b611c674
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 517.6 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
138d768bf70d2869cf2511c0231aef34614decf16afa92fcd4309488961d8f3a
|
|
| MD5 |
6cea743e8473054adc1d23baa3ca670e
|
|
| BLAKE2b-256 |
b99cd53e181863064a3f20851180d1ecfa7dea0bb939af46d19cd7c02050d0b5
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 344.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbabd1c6e1b60b9ff18ad6c20d4c77ba057bd6f297e03015ef8711ac13e0436b
|
|
| MD5 |
d80d713f7ce0a0830b70aaca299332b6
|
|
| BLAKE2b-256 |
90ad589b16733e026f13547494259a8e033e890255eee2fbee8c4b55c2c39540
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 348.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00f589f44b33a2ef7181ec16bef35b90c3a63790da636ef2bba1f0c2b54b5e78
|
|
| MD5 |
e794b2984ed6c3cf26849fb63451212e
|
|
| BLAKE2b-256 |
a0ac51f313f9540b1416cee21bfe67aaa029770b26fe2553352fdf8c6cb56de3
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 339.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
030ea506d80ce3f8cc920b5be49bbd338dad487e5954a182f414dc22289b2058
|
|
| MD5 |
ad1b3db3d4cd02083cee8c03e071ccf6
|
|
| BLAKE2b-256 |
fe8f3c3835537f33c292dd8611573617b47c62e021fef32046383b280c480685
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 296.0 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdef97a80295473ea91dc4b91b1afc717711ddb4652b1b416db4b7e29a5f5772
|
|
| MD5 |
004c72582fb9835d4058181f63680360
|
|
| BLAKE2b-256 |
15e6dba856e2991f6d40c14e73c985efb301e55871558889f88e617ab1ff2233
|
File details
Details for the file ocr_stringdist-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 308.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27ddee0177781bf5f8d28fc67938bf18b45be9536f9bf65c48403b79bfb5db25
|
|
| MD5 |
da033152977d3bbcd66f59ce2603f1a0
|
|
| BLAKE2b-256 |
ff66adba5b8dd48db4a286bafc9890a850798896df1a1c1b09e42e0baccbea72
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 181.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
108b58a178ea1bcb457f6732bb3b9b00c650b7fe249a73d2d15a74f8a6b3483a
|
|
| MD5 |
d361113171e3a18688d59f7dc726d0ef
|
|
| BLAKE2b-256 |
2fcc1acef6600123cdefe483ed0ff0fd3147450d8c6a74815dc3073315bdf379
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-win32.whl
- Upload date:
- Size: 173.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
501fd0a510c519c167f0325a1cbe8ca0f978734abf4e09a2b10ea7187cc63b13
|
|
| MD5 |
55c8eba35d2639a0523a8e9934d98175
|
|
| BLAKE2b-256 |
7e72aac232561796b9fcf79b96da68bf90515ef9ecfaf6a3e20735c0d87dd820
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 515.6 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
492370f095473e5168870eba380af2b3bb27f64ddedff88c5caad8e7386f81c2
|
|
| MD5 |
259cf90870f400095adf4f596037cbc9
|
|
| BLAKE2b-256 |
a52d034641b6d128a09230da2ca6fa9372ff7e36a26596753d5d7f8e6fa9639e
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 545.2 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31f4a6adec5d2fb39a5a3c098e9ea8678ccadaa00939a3e41e4f1bb50c1b8ccb
|
|
| MD5 |
624a22d1c2450e2294f82f4803e2ee61
|
|
| BLAKE2b-256 |
1ffd46b1d4007578febc79251bfd1a9bd9edf8867b217e565df12ed2fc2e3a7f
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 517.9 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfbd8e68bc5aacb0b6c0e35f2d503b73196a6f3d83544f3baab22a8340d2f6fe
|
|
| MD5 |
21c2a75a9241fa0d23ef2ddcd8fc3a56
|
|
| BLAKE2b-256 |
ab129c1692938bc73a68ebeb2ea46b23e6c475a3bc58b9a2bb564cb47c063ca6
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 344.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbcdba1b527eea3cb63fe48ab8ce39485796d8f108b741f6729fea57fec59f8c
|
|
| MD5 |
32d4731877455f85e4d77d6d450e374a
|
|
| BLAKE2b-256 |
38eaa2d24f93074c54aa49f447bf7b361a4684357fad54cd40ac6255f2cc62d2
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 348.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86d7992718097812df4009e1a10b2f20f019db16650517befe8d4547d427c799
|
|
| MD5 |
c9a734abda03c79421a9c607b5cdae5c
|
|
| BLAKE2b-256 |
97be1eb51c76d1c2392bc1de940f979651b59d5ca984557e6f7102f45857e19f
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 339.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a3380d7ba80531e0d7ea543debb3e34454c2b5c4b2b0a62f50998cc34ddd7c2
|
|
| MD5 |
d7aa07febc55457f1dc9ea3d326e5e0f
|
|
| BLAKE2b-256 |
93b7e7395e2aae7eb492ae7416eaf40100faa080ec8ab22a12753f5dfa3d2a79
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 296.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b143af710aeb2fb0faf254eeddd9564b45f8a7926438bbab59c0d664fdd118fe
|
|
| MD5 |
246e8567b6258248b0d53c670a83cfff
|
|
| BLAKE2b-256 |
d03bbc022a5d8de0c7cd6f071e344b9679b9f23dc0c0d1b99dd28d447ec9bcb4
|
File details
Details for the file ocr_stringdist-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 308.8 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d9cbd5b9befc257a7c288076781ad5fe3ceebe2c32a5f727b08bcbb1b92076c
|
|
| MD5 |
e67b39dcfba90dbb3bac9c5790270afa
|
|
| BLAKE2b-256 |
c896c6759c7e7eaf28d7b8704fcbd5e66f8f0755784ece5752d5ca3516f8d293
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 181.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4173db81acbcb8bc71908035984f00dabe6a55e4ad6ac1bbc6a308974b1e9532
|
|
| MD5 |
b98ce8610bec4bc7be122e8cf6d247b7
|
|
| BLAKE2b-256 |
3b1df5e10051c464e00678fea9823e3eb8d2925b53ccdd7ede5f1f561b387b52
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-win32.whl
- Upload date:
- Size: 172.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f514b5ea9032b67459a4a898693a6f910437d2387d6b6e71dbaecdfb9e81e0e2
|
|
| MD5 |
4591a9104b05df4a880a3b8230a0e5e5
|
|
| BLAKE2b-256 |
689c79f8142662e354c824581154f15ef0faf61e6f8c2d32024fefc0e5ad3e89
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 516.6 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a4963d98b73ea033803e4f1d7226e3d6eed112b57b9f894fc6ce5879255bdbc
|
|
| MD5 |
af9a69b9d647c66514145667877ffc3f
|
|
| BLAKE2b-256 |
7615a74b6d45c08becbad50b66c46090afb950b33d7904edd604cd47fb2069dc
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4635d61a2567892b4345c1141ef9cc9efa1525d649982dde0386a0484a1fe3c5
|
|
| MD5 |
ffc7176296db07f4a26337360331d070
|
|
| BLAKE2b-256 |
5a5e5c37eed5b0e9a95780783d184651bdbc758f0c423c9adb060cb5c9ef3cae
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 518.7 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b746235895facac7b0ae8806024018ba68cc830178bd3f95dc3605089cc1d9e
|
|
| MD5 |
d841232402fba4998014fc8c708d3faa
|
|
| BLAKE2b-256 |
0ca4fcc1c12687dfc3b7c680e8609251022e173ea8a317891dc7f4926a090bbb
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 346.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c91272af45a66dc112ffd9ec89d8e77b60ef4d0eae5337e77d83a273647f4e4e
|
|
| MD5 |
063381acdbd3652284fd4525d3792d3c
|
|
| BLAKE2b-256 |
eb3e43a5ef9a51c4c9f8469035c9a3bb4b3d5fc1975a6d9f56b0b720452a6624
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 349.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
729ba6f194c54401a0fdb84703b5d15ee150d47d3f7252c49814318fcfd43257
|
|
| MD5 |
2347d4a0b32e11d9c43f6fba2e7b1193
|
|
| BLAKE2b-256 |
bfb633cccdfa19861a6fe2d34bc6b362741297f088852cbb5c135ff6126049f1
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 340.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
705e1549e14e26c93c81ea6baead15100593b81d57bc66a2784c6795328821cd
|
|
| MD5 |
0442a29a42e1bd99061200ec886c38c0
|
|
| BLAKE2b-256 |
464c0ad5c3ffcbb5804d28f8cd80abbe937a6f99a27b940a7b8a8d58a9019246
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 298.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b02ceffb5aed0768f000fb304c47c763fd46191df811fb4d550b2d1d165e3728
|
|
| MD5 |
a5ee588c02de1c00aa40d1dc9072be06
|
|
| BLAKE2b-256 |
294d5bb6b498123d22df164370769489bff0a1d20a0e1ed5e7246c7b715c97ba
|
File details
Details for the file ocr_stringdist-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 311.4 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18d86bf2b5e4a358b506f2495bbd72e8a60688939ce07ada5e10f0084400d2c4
|
|
| MD5 |
77e9c9abfd0f8bfb7d2625984c46a02b
|
|
| BLAKE2b-256 |
d98748c58eeff14102565abef0acedcade249579a5d5bbbfc6e849bec792bed6
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 181.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5467c190612595ea44fde0e195586689f9d7ae9cc597536b88cc178d1b078925
|
|
| MD5 |
79d138be060d163802ee2cd0e7f8dba3
|
|
| BLAKE2b-256 |
a30e62d582b3acf57dd7d77cb5be0c631d81f525017fcb2b7c996e5ef0cc3476
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-win32.whl
- Upload date:
- Size: 173.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b49a3f8a9ce3ecf889476a09032bb9748b6e660fc6d8176938e02527ed29404
|
|
| MD5 |
292cb1573b1cb9b15275d731ca7fc43a
|
|
| BLAKE2b-256 |
d280afa854ba1841141f01ff2466f6fe32c11394a2c7efa1387f4de8f8596ef6
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 516.7 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d7fd29fa60e10cc1d30b3a2247a69a9817728a8eec15dd3d8cfb2318ee94412
|
|
| MD5 |
cfd3e33b1d2657b5f4fc81140e3b44f8
|
|
| BLAKE2b-256 |
8330bd1f5f3713caf52a4098cd5d239c33a5744df02aeaf66f9a46e7fdbb0387
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 546.6 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e743fb9fabf07041e6a75ad94764ce3f28797c5256aa8bd0b0f4c1ba92061e9
|
|
| MD5 |
70f3349bafa470d0cd4bedf823f3b103
|
|
| BLAKE2b-256 |
fda7a913b9a364238d971b8d7ac76c7955bfe458f12aa89162cff716b90dacd9
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 518.7 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9df7c7ebc677bbae11ffbddce8405d60770358a0f7d4750cb01d364684832a0
|
|
| MD5 |
eefad0ff70c9d725b2ef54aba811e22d
|
|
| BLAKE2b-256 |
bef4e3fad65689bb71708a063c736cdabb26f6197e2e3af81874d4fa1e026bd4
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 346.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f096230b40c1c884b141217b931f9b23d56292958811da1bfedc9d000bf1a10d
|
|
| MD5 |
2b27aca79a4bc95e734cd6e7370a215b
|
|
| BLAKE2b-256 |
167d32b18645057c825bcdf3165a8a5b641d0832f79478bc95b645420f7d17e1
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 349.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30bcb35b53961de83cb193c640bb89118dd89f54bf22c7f7293cc1089731c699
|
|
| MD5 |
969cfb24bde86491c559100f0c39ed6a
|
|
| BLAKE2b-256 |
30af9d5e8ffcfeda5aa69022e97befd1dddb4aa27ea487355f3bbf2e28d04de8
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 340.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a194cd8699e7e6cdd11e6cbe13104361f2844634e13aa644c6db64ba30bab9f
|
|
| MD5 |
e8f2bea692e47187be86c8b0d827a2d1
|
|
| BLAKE2b-256 |
4315d69970772305f3728d23145be9bed30416b42d9de3b91baafc9d6627b399
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 298.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aed7dfc92085714d535181e419636921fb1440cb586f60a19d4155731268ffa6
|
|
| MD5 |
2f7a4b04ed3cc6e4ee8b0a3fea94153c
|
|
| BLAKE2b-256 |
338ccbf1561a4636bc9bcce179a51c5adc1284566658e0fdf684b6983523fab3
|
File details
Details for the file ocr_stringdist-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 311.8 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6ad7b31a2b4af08d7b9b2d9cbdbb94e83213f78e8e872746885855481345f50
|
|
| MD5 |
2aa3cc94540b6921d6ee09d96355bc9d
|
|
| BLAKE2b-256 |
32e2bea0229a207b33d3197234b061e1382a06b291d496b6f6ccb21f2745edbf
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 181.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3738f8d15eef480ec5cef3298489ddf7e14b9f7fa86bffb46f9749ab561ce27
|
|
| MD5 |
f53aaae974aeda19683166b5b23197f2
|
|
| BLAKE2b-256 |
3fd8ccd69141bc3984113e3de607e561a452bc3a92b8f1cb3e815da4d9bb0faf
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-win32.whl
- Upload date:
- Size: 173.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e354d4811a15f6e33e506160715690fbc930dd1b10b5e2aa1ed7fcc3425cd070
|
|
| MD5 |
6b89f67a5f2a360eb43da0aced10624e
|
|
| BLAKE2b-256 |
64b1650bb84ee9fcc4b58007849977ac8c4f1174663675a6523c0bfae15c9088
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 516.5 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35b4606ff8055aa16f8c8c47be101c8e643c394eba3c54e17e08368e7a560c15
|
|
| MD5 |
b96b89edbae4eb973d1d5417614b4345
|
|
| BLAKE2b-256 |
0310f795ad1f78bc8b1664c0ab2fd2a432a25d7cad2c3d1ae09b2164b667bf7c
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61bab5dc189cb5bb0a14236e80b9a90201a395913828536d2072b2e3e4ac7919
|
|
| MD5 |
c9e6549c9426441c6e0a65f8918519df
|
|
| BLAKE2b-256 |
2c23b766f2cf3f50a80d1a695b6a6be103adbca9bf17e656512d870e46e0c0b0
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 518.5 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6625ae384b37aa3b245e2e1a7a3c75fbb423fa58dd297d3571251fc9bb0ba2df
|
|
| MD5 |
4ffa78c5333218e211e6a534a70271d3
|
|
| BLAKE2b-256 |
39c471770b9735933794ef980d5692cc237c35712b46a71314849ce919e52dd8
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 345.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
592eba0512dce5c002c5513ec9af12685881e7ce3b0bcc2bf06b33b4791e8084
|
|
| MD5 |
9af093faf21748d270806781061ad171
|
|
| BLAKE2b-256 |
b9d0465c8b2e82af3be6f992b6729a8a354009bf13fe25a48d19a7fc8f1f1237
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 350.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c410c13a4f1d55d2b84a772cc69ca58b7697fad3ee1ddb414e6ab5a3e10354b0
|
|
| MD5 |
9dcc6660bd2de420bb1854a55b3bff56
|
|
| BLAKE2b-256 |
b12242567b184359999f0079bdd682629d7babc3cd021ab3706945724bcc8446
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 340.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aec907a82d0d15d64a607632e44d7f2202b57e505671e6d5325ddc12e694c4fe
|
|
| MD5 |
3eb53fa30e1abc0cd015a4aafba76b75
|
|
| BLAKE2b-256 |
c8eaf43f7036541503dea8bc2fdaf5baf0557aad6a67d4a680005a6c9f38aab5
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 299.0 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fe493f4847a37bcc76c13bc0547fc7febf417fc761383af2f2068c025b8d558
|
|
| MD5 |
6853f8556ed1f858c5acc7701a650b95
|
|
| BLAKE2b-256 |
21e9cae81dd221867d3608729c5b2d37497d17701c33102e56d80b2f6ec0e968
|
File details
Details for the file ocr_stringdist-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 312.0 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54bc26f3d8f9c50e6b24e441626353fcd5d8d24fb35da2791fab0419c5047348
|
|
| MD5 |
463b6fcd76861970d6a6e6b50afe622e
|
|
| BLAKE2b-256 |
43c1e4e150ac1b9ca98e7d9a254aeafe406463589805cde03c48c22cfdf626fc
|