String distances considering OCR errors.
Project description
OCR-StringDist
A Python library for string distance calculations that account for common OCR (optical character recognition) errors.
Documentation: https://niklasvonm.github.io/ocr-stringdist/
Overview
OCR-StringDist provides specialized string distance algorithms that accommodate for optical character recognition (OCR) errors. Unlike traditional string comparison algorithms, OCR-StringDist considers common OCR confusions (like "0" vs "O", "6" vs "G", etc.) when calculating distances between strings.
Note: This project is in early development. APIs may change in future releases.
Installation
pip install ocr-stringdist
Features
- Weighted Levenshtein Distance: An adaptation of the classic Levenshtein algorithm with custom substitution costs for character pairs that are commonly confused in OCR models, including efficient batch processing.
- Unicode Support: Arbitrary unicode strings can be compared.
- 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").
- Customizable Cost Maps: Create your own substitution cost maps for specific OCR systems or domains.
- Best Match Finder: Utility function
find_best_candidateto efficiently find the best matching string from a collection of candidates using any specified distance function (including the library's OCR-aware ones).
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
custom_map = {("In", "h"): 0.5}
distance = osd.weighted_levenshtein_distance(
"hi", "Ini",
cost_map=custom_map,
symmetric=True,
max_token_characters=2,
)
print(f"Distance with custom map: {distance}")
Finding the Best Candidate
import ocr_stringdist as osd
s = "apple"
candidates = ["apply", "apples", "orange", "appIe"] # 'appIe' has an OCR-like error
def ocr_aware_distance(s1: str, s2: str) -> float:
return osd.weighted_levenshtein_distance(s1, s2, cost_map={("l", "I"): 0.1})
best_candidate, best_dist = osd.find_best_candidate(s, candidates, ocr_aware_distance)
print(f"Best candidate for '{s}' is '{best_candidate}' with distance {best_dist}")
# Output: Best candidate for 'apple' is 'appIe' with distance 0.1
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.0.6.tar.gz.
File metadata
- Download URL: ocr_stringdist-0.0.6.tar.gz
- Upload date:
- Size: 54.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c733187261ef2ac3c4c27c32c469eb01ed15584c8c77672240000839ac8e7adf
|
|
| MD5 |
6a497f10f12830d870f720eb67149278
|
|
| BLAKE2b-256 |
306293718bcd4f7faf0d633043ff22775140f6d446982a185d76f92e05670cef
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 487.6 kB
- Tags: PyPy, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f1bee6179b0a4255efe15e050588b4f5d2e7f38d8ceda2a981fa7e40c101f4d
|
|
| MD5 |
094ce3d1adece48a7d090ee091d246bf
|
|
| BLAKE2b-256 |
9ee40df75cbb97c53ed043c1c8bf03d2144aeaa5d341c62ab6885aa0211a718d
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-musllinux_1_1_i686.whl
- Upload date:
- Size: 516.5 kB
- Tags: PyPy, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46c71b3061243ef03b8408c5cfb9c5547b7314e22dc27d23c5905954086ea8da
|
|
| MD5 |
3fc2bf57010435a15216b66d31791901
|
|
| BLAKE2b-256 |
b95f07d751186ae0b50a5bfa95304075fd407902ac86436a588a6e86514541c5
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 495.6 kB
- Tags: PyPy, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb81c2bc07a02c0e9a6db1e3bebc924a2e4927b2b34b96ff9769da35197026c5
|
|
| MD5 |
5c84872713412cda2f1cd9de64e58874
|
|
| BLAKE2b-256 |
2041bb7256605f80a86b58b10fb62c554de9dbdb249ec8dd5a9570097727020b
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 317.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58bf5063f98bb57a2925fb188e26c2ed24bf2d68e9fb74dbadbf8e69ac6258e0
|
|
| MD5 |
afae4a28c3ce7bf6d219dd3b92ae47dc
|
|
| BLAKE2b-256 |
090b5c0951b01ce5f7863f300f8c62d5b29bd91d6907707516e49355dd7271f0
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 321.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58b0a31484b51f32e58e9e5c878545629ef3b552fb33fe3e282f657b33ba5781
|
|
| MD5 |
01efade952c3b8bcdc84ed114fa63c21
|
|
| BLAKE2b-256 |
4008031d907e4c39a39442b448192feff373581b7f923f8e1f9b01a0cdec26c6
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 318.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d73bb4b130d32cb96f305de0be64592f59460551531986ab5ef788d9d327738f
|
|
| MD5 |
1a33f2092fb472182f992f58efd0d1b9
|
|
| BLAKE2b-256 |
91a0010a03f9e984ed64c657c2553ba5c2b0a9d3675eef3d017cc4566fe9283e
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.7 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1a2d6e7d284e38e8444532ae21709751b6a1f82a3e6a1f09e0482b0b56f0407
|
|
| MD5 |
651f811e6345a4c74a9e5a732815e930
|
|
| BLAKE2b-256 |
b1a54533a4ea66f1caf9ccdb4183f2677381ebb6329ea69812d5ba66737ebfe2
|
File details
Details for the file ocr_stringdist-0.0.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 280.0 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0df90d71a9bad730c476001ea484a7348d817236a96bb887430e218956ac6877
|
|
| MD5 |
0db5c1821758e70c954e2bd5dc7adbf0
|
|
| BLAKE2b-256 |
19e71a391f2da0b290f457926147983c742456da4cb005d55e2d329ec0656c9a
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 487.6 kB
- Tags: PyPy, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc8bde832aef6fa316c1f91487d279fca23f5b413514d9a0fd8929f56342d3ad
|
|
| MD5 |
7c28076b50b432aca4f6158b32effc41
|
|
| BLAKE2b-256 |
b60e92c2e97eeaf08f3b904289264ad6a06be6bc9c6bacfa1a03f12969295297
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-musllinux_1_1_i686.whl
- Upload date:
- Size: 516.3 kB
- Tags: PyPy, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5c9431121f772ddbfb0715c022c02b525ade26f04abeb1ba9d822fc208d8d0f
|
|
| MD5 |
af8fbf43e6e3364aa9ab6c7788d0d7e3
|
|
| BLAKE2b-256 |
8a66f48d60815f73b02d32cc82e549b1a00b7f2245095910bb0078a14d095d7d
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 495.6 kB
- Tags: PyPy, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbb2aed145a290c1bda96afd98078c396a0f7f64b368f6c97b163722fa01a00d
|
|
| MD5 |
a4f5ad268ad4f338bd10f3c5f492188d
|
|
| BLAKE2b-256 |
e82c5bfdd0202e44583b129f863a93933cb1c43695a90ac7d1fca89adfd592f7
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 317.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c00289ea820f48a52dab168b3ec8265eb8b539a568f213eaff92be91e53be888
|
|
| MD5 |
b4b9ba72b38652dc4d8b7029a0c4ed5a
|
|
| BLAKE2b-256 |
f89a5163a758028b881104002f9de9086b70f85039ada57911f8c1a1954a3478
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 321.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4bc1580d962fddf61bcb53c58d904f8cdf28da1952a397ebd5d8e9b92372479
|
|
| MD5 |
cbda1520d931ba1cd74e0f728c7c314a
|
|
| BLAKE2b-256 |
6a1022acb78bbcdcc20f9632460efd1c1cd5ac5f6e60038aef486c8a909e6b8a
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 318.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f59353b5a6f2172c3664d030f93887c5533b0a69665b78be83d75cee4da6210a
|
|
| MD5 |
f3c34026b5ccc0fd32f3b4ff0784abb6
|
|
| BLAKE2b-256 |
806cc2973ae16634f31a5722d2c9b317f238defa4e5cced9ae59c796ea9f8410
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.9 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1e3bb9ff518202fd18da775db8a809539d56e8230fbad0c08d0e128d3dd214b
|
|
| MD5 |
ca4c8473a4a8c387b91aaf3e999ddf98
|
|
| BLAKE2b-256 |
b871b699895720ee27528a535630b4c2c174321bfc96427f7a6b1bee28679f35
|
File details
Details for the file ocr_stringdist-0.0.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 280.0 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cf6e3e047608d7b8899d5c3e4a1e99eb529783f32d433b65ceaf04ef427a302
|
|
| MD5 |
e78155c60031a6695a6d70bc0be1ebad
|
|
| BLAKE2b-256 |
ba5d0439c4da90f0baa7b46223c2ef06b1876c7e6eeb43c5976ce696fe31bea3
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 488.7 kB
- Tags: PyPy, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30faecc10825ebff03c85c5d0af222d3979254f08de9db0bc5ee0ecd453c70d5
|
|
| MD5 |
55ed291cbcaa1d1f001207e5e9a89a50
|
|
| BLAKE2b-256 |
577c1b23f5d93f0e0af7d3a9e6c2518de8b29888277fb681f9d0eb3996a3e3e9
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-musllinux_1_1_i686.whl
- Upload date:
- Size: 516.2 kB
- Tags: PyPy, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1b840bed79a6b3957e57982e296d70165666d97960a5d5fe0c59781a1f9a40
|
|
| MD5 |
2031bd57d3d526917e03b51ec1b75974
|
|
| BLAKE2b-256 |
93e04dedad4c6425680323774de4d0cc2a172e749d5aab016b97e77c84b1e4e8
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 496.7 kB
- Tags: PyPy, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
485e8c04a6db2d0890e2016d2e9a419bd8651e74d4a6ccf073bbd57d4cf683cd
|
|
| MD5 |
41060826ae8ec098c00d3b7d67d679ce
|
|
| BLAKE2b-256 |
5a39fd1bf443da7b6ce1815fa3c033e8335dc839e48fbb4425555fa826f2a2d3
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 318.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cbe5f8e7e38b8580a63e33cfc07ff94a656d38756a2ef4a17c3268f46cf2122
|
|
| MD5 |
6ce20d21a139626b5c9ff7a548fafece
|
|
| BLAKE2b-256 |
4a5b36067cd4f8821f7dbfd0a2c8da3f1544cfeef661255435e0dd7b1ac07e21
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 321.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca3dfdad24d12638625474c2007232b776829916aac5b7fcaac5749896587de3
|
|
| MD5 |
2be4b1e7800e7c6cef3dac41b9650257
|
|
| BLAKE2b-256 |
10cde8082f22e397b86a91165c929a2f67a46416f144a598ec402d0a3eae7bdb
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 319.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87b763df9d8001ac69cd977eacd1ba60dfe4e06c95b752e8cbda5a91a7b6f0e4
|
|
| MD5 |
1bbe2824ad038e339479395e02408953
|
|
| BLAKE2b-256 |
5e9b09d3676e24330e28145622ca1627183f705a56c6df5f01a57118594b2e15
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.7 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9192d7f2494946fd04bed7e83bd23c5db7dcc460daff532bcdb0426c55865557
|
|
| MD5 |
97e8c7ed81de5be48f6434d219588fef
|
|
| BLAKE2b-256 |
2cced4b2b79aa4336b0a8353bdc73b2db034c46de07bbd35ad8e1a1696f5b2b6
|
File details
Details for the file ocr_stringdist-0.0.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 279.9 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cabcae7dc02bbafdcd08b2407a7e5171540eec54dcc57d88aa1a1cc95e900749
|
|
| MD5 |
1b2b617db08836538fc02158ae4a3436
|
|
| BLAKE2b-256 |
819114179c495ecdf74536dd9d6db51223dac1460d93de85da387b02ff441d0e
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 159.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d29f1b31049e15c4b58cd7db5011c40e6202c5a20756d0bc6ede9adf407d33e6
|
|
| MD5 |
b330329e67a9122831c1f6c5a21035a2
|
|
| BLAKE2b-256 |
a026c7993f00f67dec3282ac09e7c8511e9da1fe3f6d13875d754fcd1639c6ae
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-win32.whl
- Upload date:
- Size: 152.5 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f972f9b434ab525e37bdd349e40859db824ade3e4439c7b8e73ce63d43b72856
|
|
| MD5 |
cc3b97d015dd4df607ab299902110e50
|
|
| BLAKE2b-256 |
c70b1bbb51ba4a56aeff56cb4abb4577d3079d07559d0c6393d0f5cb3e5bac40
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 483.5 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccf4831911d3ef7353fb4dfbc252cfb3d792c47789b3e72fe42ad43c45562a1c
|
|
| MD5 |
0bb015050e290ae69966ad6e88c49182
|
|
| BLAKE2b-256 |
fb136089bfe2eb662fb25d22115b4d095e9147c4825b8acab8b8ed6917ee946e
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-musllinux_1_1_i686.whl
- Upload date:
- Size: 513.4 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cbaa07586667a2de60cb061bfb3d6e82c4cb7a5e1cb8272f7f8ecad8eeb6ce9
|
|
| MD5 |
f99ab9b1eeac6c32d3e629042f543fee
|
|
| BLAKE2b-256 |
67be52bdc58c7db8e789a3ca2d59167af71f05203361e306a17017a26edf02f1
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 492.8 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef0a616395478bf216c678eea6e419249098f35f5d08049d541514dfd05f186c
|
|
| MD5 |
b0c2ca468a77c5cdd479530b07d3ecf3
|
|
| BLAKE2b-256 |
afe028b47e37a7a61bf266e4ee6093bde2a81ee190aa580129b285888e666f19
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 313.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbecac15229393d4dece8ccb9093c4a15f4ff71f092cc8d3b9850b09540dfe85
|
|
| MD5 |
cfcd474959371fb06a5d1e20c61847d1
|
|
| BLAKE2b-256 |
ffbff2397308a29db929f1852b4ee2b447e9ecc2cfaae703c5d02b159984df6e
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 318.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1e16a687c88b8174bd3943499c76c63d6d347bee7e57ce181206d6c6cb3b6e0
|
|
| MD5 |
34cef4392c12300cd2c219f22b1c0d1f
|
|
| BLAKE2b-256 |
0e6c6ff7d9af49116719c0841b8f251debd5a736404428287587d74c48e76fcd
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 315.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d761f1f9bfaa0841360b4e4e8fac4fafe161a85bf26393744c139619b875a880
|
|
| MD5 |
90b562afcea2b91d11dbaf204575f4e3
|
|
| BLAKE2b-256 |
50b64b842b3b2215c9e544959495611a2e8f70610b03592dc8def32fd12751cb
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 268.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cbf1a0f6f9a835de5b61e7b6f1be9557959c922e008fdde6ce0ebe740964b8a
|
|
| MD5 |
53f87793ba8448affe4b21ee814c8659
|
|
| BLAKE2b-256 |
86e229879841474196b05a15374fa69f87a56a6347beb15914e6f033d64f0d5d
|
File details
Details for the file ocr_stringdist-0.0.6-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 274.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f27a36a13e8f8ad40afbd4064fc8fc8eac12216585c23f1078483cdad3472d8e
|
|
| MD5 |
59df6843d3691fcaff200e350b185c96
|
|
| BLAKE2b-256 |
87269e839cb890be996990c4ae0408d553df99c13de3e5532123ca03f737548a
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 160.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
300b8f5d87323cf62e20a8cec3bcc46238d95b41b97de1fb07671f11a4e8de92
|
|
| MD5 |
929669d2c482223ad488b6bd2c2a005a
|
|
| BLAKE2b-256 |
0512d7f5415b3a493971518f2fdb05d3a1af522168cbc8b68bced79372dde374
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-win32.whl
- Upload date:
- Size: 152.9 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ece154ccdf8e7304a925cae36df8eb2b811a94d11832727a4e6d54187ddc0cd3
|
|
| MD5 |
c26d10502872506bb70b46f52af95436
|
|
| BLAKE2b-256 |
47cef959bfcf1ecf5ebf1a62b13d51c829e57698e31f2e5f9dac64e8a9ba0922
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 484.4 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
318da2118f977777502e4f698da80171ab56f0a42c44ccbe4874c3861553f1f5
|
|
| MD5 |
08fd81415e5adc6e37101d141166d70e
|
|
| BLAKE2b-256 |
5277eb1f10aee68538085bbb640e2620221579d58e97e23518e711fe6b80431d
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 513.5 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a387f9e953ba9fac598382069317a2cce7ef0d5cc3fbc5568ec2370569f5bc32
|
|
| MD5 |
a3be4a256934aa2f80cf376ce548134f
|
|
| BLAKE2b-256 |
d97a35650f5864acb360ceac83490bea5779b09475521672af846a5483d907ac
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 493.1 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb6dddeb5cf1335546e768e15d63598b96a3c315fa60b03b5ae546b16a35b4a5
|
|
| MD5 |
81ea7cf7707861617992602a25d7419f
|
|
| BLAKE2b-256 |
0614e990b66c8dcd1d3da0516b0be6864bb783aaa32110f2740910babc8beb59
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 314.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e5440f5e0a8261ab0eb9d2807ee249e9a4fe50729536e8f4ac99c67e0894cfe
|
|
| MD5 |
99e88f090553bbdc9539f765c8009f4b
|
|
| BLAKE2b-256 |
666b0799ea9c8d33d9cb8e13566029ae609bff89eafbdc8d390e0e483ba504de
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 319.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7833a469c24446e3a59a6dc63aee99d60cca70dfa471256e14ab0d23d790bc5
|
|
| MD5 |
0c600a7e64ea3ab0198cc7216b794971
|
|
| BLAKE2b-256 |
08fc6a348dda391bde6aeca4c4c0d6df5b2cd6b8d6e920cd26b9001324935153
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 315.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7183f81204e4efac38c37486e2fa487fc6d840a9d0fc72003d19b2ea97c4d34f
|
|
| MD5 |
14c95d10ee5d54b30745ad4c765a8e85
|
|
| BLAKE2b-256 |
e88457f381c617dd65906176ab1c2f0ee986636974a441801699651d6422fcf3
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 268.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
455a67245e5ac52cb1188bbd5652107925f7d7d3f2366dc6b6df77a7d7fcaf96
|
|
| MD5 |
15809134b9770b22a77f0ff632a25f3c
|
|
| BLAKE2b-256 |
282acd8e4cbbfc66d94a55695e224041aa57109854927bb24a42a740b74a7bde
|
File details
Details for the file ocr_stringdist-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 274.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e38fa0e9ac964b56b18741691011bfb45f2c2d85011de9b792167416525bdaee
|
|
| MD5 |
318e6142de0374af394c13d2334447c2
|
|
| BLAKE2b-256 |
2dc7d092cb1e70ccc05d1afb108fc821c485a5b223ada957145534355e1457ad
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 160.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10e5d536acf5939c0e720b95bd9a09309a7959877f76d0dbda072484bd596cd8
|
|
| MD5 |
307115e3a61d1e29781d966e29ebec3f
|
|
| BLAKE2b-256 |
b373a804e2a4489a9cc29dc3eea288bedb3d9c111542a19b609a5cd97e7404cb
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-win32.whl
- Upload date:
- Size: 153.6 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68cf9b8d4e86ae87961a747a22bd7b9161ce2e381aeb332ce5441d7e9e282208
|
|
| MD5 |
0c4466d7801f70f79b3c92155ce96ede
|
|
| BLAKE2b-256 |
e72858e7784c8ca8b58b47b389da9663d9e2b9d2ad55bc0e055522c70b0eaeca
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 485.5 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbfd97ae5a135dfb2d9a247660a8d93ffbc06ba66d68e8db823aa9566a2f5d54
|
|
| MD5 |
35bcada0c96ce77b28c55cd851352288
|
|
| BLAKE2b-256 |
10496d041070866cab2f417d5c1a90ea68dca390f96997e3d58b147111922a4f
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 515.4 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb943768e8617ad32cf7638489d6380a28b6946446211e00bacfcb0608fca591
|
|
| MD5 |
90c8f90f88fd10eda067bb0b673ed4eb
|
|
| BLAKE2b-256 |
26108a1f7dd13746b2b44f123a9b5733ab59bcc86cc8426c82a730ab08d45c46
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 493.6 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3ac62d805d0c6aa6fc614e841e4fcb8f01d51bb41883ba23e0a727a017bf580
|
|
| MD5 |
d95d079df6d3c8c102a20c8fbb64f71b
|
|
| BLAKE2b-256 |
e3525831d3edf27c75fb6c253527d57adca7b7a3aec8dad8985cd9bf4049e004
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 315.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b766d1a587afbc2fc958c7d7fe11aadf8c4197b6f5f16751697fc50503040ba7
|
|
| MD5 |
a358cb97cc0ae022d51088541c4fdb4d
|
|
| BLAKE2b-256 |
79161724e9479c444fb0b1db131b662a0f4e2ae5d718cf633f48a8cce00bfce9
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 320.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81889eeb30e412e5e99abe7f190cd40b81660f4ad1d6e0aca085de4fb17728f9
|
|
| MD5 |
195495b280bfa439411b97d6dc485ee9
|
|
| BLAKE2b-256 |
dc705cc67557a608889ab02d8ba6f11094309dfd961180ce2d4480654ef00e34
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 316.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1cb1cf9703d1e83cf663153d8c20dba6256313f964611f910d4270dd471b32e
|
|
| MD5 |
7e4e9b8145198fa055b2a307c48feae5
|
|
| BLAKE2b-256 |
4cb01b502fc86821354bc52f176e5d7a67820be5ada674f78546cc025a506171
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 272.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32004fa41e486d5c9d607a73790cc343a0eef2940239854f6de14dbe2e75846f
|
|
| MD5 |
3ffa94a93b5ee57df73de814d10371fb
|
|
| BLAKE2b-256 |
41b36f7b43c0b1e3f8c5e6b16f582de814fa1eadd768fd851f61bfe869ae1e71
|
File details
Details for the file ocr_stringdist-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 277.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39d42c63f0617ab4aa06bfa246895330075f21b7ef0b0288d0a915c85cecc2e6
|
|
| MD5 |
541b9010d4fb25b6e8fc7933822cee59
|
|
| BLAKE2b-256 |
ab6af39ce863ec3e9c2b8585003cd286df6ca2112ee7098c16a8e3837e98da78
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 160.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
553179702e5936a5ff70c8587d777344b61ad326f28a1312652265cd1ce68252
|
|
| MD5 |
d866c5aed6076151cd03c34c42a5c7a9
|
|
| BLAKE2b-256 |
107fc2e31a7459d682cc6b2c6a92361342a25d7dacc48fd29080d0c09fea5875
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-win32.whl
- Upload date:
- Size: 153.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddabc6f592ec585478fada16854a7a3506c3e84bd3ca1caff1abdfdab32a2f80
|
|
| MD5 |
ae6e17ce9e8223b940295c6190356f4a
|
|
| BLAKE2b-256 |
92f7699172cc8b41a8bd243383ebf69cc822a3d6a48e398ca6323737e024630c
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 485.6 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87e29ed7484ff766befaa64a0261db6b3f443b0d19ebc24a2634fac9c5c26c32
|
|
| MD5 |
ecb5bbb6d07c8dbfa107dd06fbbe6d15
|
|
| BLAKE2b-256 |
cdd84e24653de4e8f9727a26a82436f3b0d1170e994ebef9b8ccd879949f15a4
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 515.3 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e3ed9564a3698c019da19419d99ee7350afef446fcb2a3f6a7c905156caa718
|
|
| MD5 |
729e7cc0dbc6dddc62b4373959562c73
|
|
| BLAKE2b-256 |
f251c0c54eb9dede1661a664abca2a1ee999eec76e681b16757766ccb31b5869
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 493.8 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4716ec363a439785df4cea2570dc15901bb847b08e4c7ee1132e3e45f103dfa
|
|
| MD5 |
c44b588e5d24961c0553457194ddf0bb
|
|
| BLAKE2b-256 |
e08052de55d74333fa6f39bae92ab6a69701b12c74f1a97e6852734c0a229402
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 315.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a74631361e87efb817e156d7e0540bda69759501682615bae6b8bbfb77b4ff92
|
|
| MD5 |
5e2fc525982853f2131d89910afbab9d
|
|
| BLAKE2b-256 |
083aea2f733532d352cf970f2486a6ae462c612d3ef702472c52fa3170c5b438
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 320.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e2c1e05ba3d89b8eab3fab3f837ab744ce3db83ec64c13da1452a1e866615c9
|
|
| MD5 |
1942795457384fa97700d10a165afd55
|
|
| BLAKE2b-256 |
be9f365020e4a9ef90802ef60e866e62f78b919f1dd47c47ce8de31a5b59d87f
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 316.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd0b8d06607e6ffb2f18ce94fb61cf4c800fc8079499fdc4b6bfb7e4838e671b
|
|
| MD5 |
513bd842966e9a614b722c20e135c670
|
|
| BLAKE2b-256 |
b6d3a225064cf4bd57d073a657c5a40f463304d39949b25011971fb9454a4e42
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 272.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a975fff77d5ed968aebe0517896c1145898f98e4c4fa528457cc39f33258c87
|
|
| MD5 |
bba890a85d2841e3039d40b825ea18b9
|
|
| BLAKE2b-256 |
43b85db9e232681ce9daef6f9fdf5f27095be9d0f277294f574677aa504ec474
|
File details
Details for the file ocr_stringdist-0.0.6-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 277.5 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5e7076d534aaa316c95ceba32545015eb0b1bc0e87631a3b0a18864ac2dba63
|
|
| MD5 |
5432ed6b3f855cd2463dde3bc61e4a22
|
|
| BLAKE2b-256 |
0481ab45fe94931ec6bb53318efcecc1b46ccd7feb886ff584047e991fc84039
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 160.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44401ad001c54831e8589135d8cedd829c2dac3a6e40fe561f06b23cd0280383
|
|
| MD5 |
fe2c944b6ba1fc90338a1cfb6c66d15c
|
|
| BLAKE2b-256 |
ad508c7236aaf38ef73b9895fc0b2a0d0e75ef8f789b2af52e11ff9567022f3a
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-win32.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-win32.whl
- Upload date:
- Size: 153.9 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de31ed8b9e6fc231bd9a928871f7885a04ae2a7a4584b4deb0e92419c9a14fd3
|
|
| MD5 |
f9ac51af5a75d123c1184e81fc82d3f4
|
|
| BLAKE2b-256 |
be4e3656b384da88667207c885abc0bf0c6910c8225c504386fe817990f96797
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 486.5 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80a227bab2a89588208f5b6237cfeb73791ff74d6de3fd35cac382cf5f7053fb
|
|
| MD5 |
a9ca195a1f789c6197207072c25f3210
|
|
| BLAKE2b-256 |
fd634f53a3cf8ac66240bbc7666bc98a6a8ea5c714002641a758febccbbc605a
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-musllinux_1_1_i686.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 515.7 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72477b1c91246c5fab9f1bc2828c98f10d8ae786c8fc12a93055d547e1ff574f
|
|
| MD5 |
4210b916a8dd8a2e5df6f69501193679
|
|
| BLAKE2b-256 |
1b50b85d841e4add156db734f32b74967c7c111ece480277add420630cb87f2d
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 494.6 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
768bf19ef8a3d524c4e02738f5ffd9c8fba02a73946b2bef94319548ba5d4597
|
|
| MD5 |
f56cf1e7bf675d85acfc72557bb78d8d
|
|
| BLAKE2b-256 |
8a2c1e13de94dbabd51f535b7013bf099d846804ac270ec8ffe82a17be5cfc2d
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 316.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
439c823f9d1bde904aedb5af9ff8502782efa76e032eb831de71178cb260c17b
|
|
| MD5 |
8aff97484e3c9228f3b15f0c3110afc8
|
|
| BLAKE2b-256 |
b1bd8b34d5650b4e654284b757c03186f65839b66368a7c742f4ed728816efad
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 321.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5993d440375da37352cf343f83c8996dd7d11cef16d20b6f9c5108f862bf132f
|
|
| MD5 |
68d59abd0ed169a0233977d8293e93e8
|
|
| BLAKE2b-256 |
43ce8a09e8cb8a2c5dca7af60e1caf1d03a5aa78dbe00e5f4280516b4895a84b
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 317.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb560e278d243a41b36d0d7f06d815ebc12ca99d75b2771d1641928d6b897259
|
|
| MD5 |
69e66e97d26feff05b27c14df6986b28
|
|
| BLAKE2b-256 |
9ea1314ee46b828da8b314ba67a63f232d7a8e2b9e8f1b39aac1c6fa1f87b709
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 272.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6575db2d79a7802b1e97355f8fec1276558e2413c2853574e625a00702197612
|
|
| MD5 |
2f23b668fdf54ce31c80eb2959233edd
|
|
| BLAKE2b-256 |
44b3cecb683bce3e7b36a4096b1c5ae2787dd1845be204b892be392dc4fa989f
|
File details
Details for the file ocr_stringdist-0.0.6-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ocr_stringdist-0.0.6-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 277.6 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
067fc65816bf254890425c1cd3aca61153f0d9641d6fdf718e742dec73085d6f
|
|
| MD5 |
eeb8c26753c98c5de59b88cb135284fe
|
|
| BLAKE2b-256 |
506ecf24a977133194542aeb9481689cc4109306d7b78e5b01f98f4d86376494
|