A fork of the Python implementation of the SimString by (Katsuma Narisawa), a simple and efficient algorithm for approximate string matching. Uses mypyc to improve speed
Project description
simstring
A Python implementation of the SimString, a simple and efficient algorithm for approximate string matching.
Docs are here
Features
With this library, you can extract strings/texts which has certain similarity from large amount of strings/texts. It will help you when you develop applications related to language processing.
This library supports variety of similarity functions such as Cossine similarity, Jaccard similarity, and supports Word N-gram and Character N-gram as features. You can also implement your own feature extractor easily.
SimString has the following features:
- Fast algorithm for approximate string retrieval.
- 100% exact retrieval. Although some algorithms allow misses (false positives) for faster query response, SimString is guaranteed to achieve 100% correct retrieval with fast query response.
- Unicode support.
- Extensibility. You can implement your own feature extractor easily.
- no japanese support Please see this paper for more details.
Install
pip install simstring-fast
Usage
from simstring.feature_extractor.character_ngram import CharacterNgramFeatureExtractor
from simstring.measure.cosine import CosineMeasure
from simstring.database.dict import DictDatabase
from simstring.searcher import Searcher
db = DictDatabase(CharacterNgramFeatureExtractor(2))
db.add('foo')
db.add('bar')
db.add('fooo')
searcher = Searcher(db, CosineMeasure())
results = searcher.search('foo', 0.8)
print(results)
# => ['foo', 'fooo']
If you want to use other feature, measure, and database, simply replace these classes. You can replace these classes easily by your own classes if you want.
from simstring.feature_extractor.word_ngram import WordNgramFeatureExtractor
from simstring.measure.jaccard import JaccardMeasure
from simstring.database.dict import DictDatabase
from simstring.searcher import Searcher
db = DictDatabase(WordNgramFeatureExtractor(2))
db.add('You are so cool.')
searcher = Searcher(db, JaccardMeasure())
results = searcher.search('You are cool.', 0.8)
print(results)
Supported String Similarity Measures
- Cosine
- Dice
- Jaccard
- Overlap
- Left Overlap
Supported database backends
- dictionary
- diskcache (sqlite)
- redis (in development #37)
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
File details
Details for the file simstring_fast-0.5.0.tar.gz
.
File metadata
- Download URL: simstring_fast-0.5.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfe722607ceaf4d63b3b405e1d423187e553c47b46440bc3617459831844eb82 |
|
MD5 | 31a3a63d8a63bb3fbdc492b99ec6e3c5 |
|
BLAKE2b-256 | 1bfb3f28eef6acd742d40746d6c6e58f9faa50f0a054865add81f8940335bc2f |
File details
Details for the file simstring_fast-0.5.0-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 142.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38b2e87d9d6a6987d00897dccc947c553e179436f902a280ddcc094a9088273c |
|
MD5 | e358a2f72308f1b37144da196a2a3454 |
|
BLAKE2b-256 | 064bdcea8555c7f41fd087481d5d332755de6317ac7c98e4288f7b8f5987efc7 |
File details
Details for the file simstring_fast-0.5.0-cp313-cp313-win32.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp313-cp313-win32.whl
- Upload date:
- Size: 128.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddee4ee5beeda69dce55787689ee18322cbf60d54a67b633b929026f7190a3e9 |
|
MD5 | f5dafc6eef5f8b7720f3d862c0e65636 |
|
BLAKE2b-256 | b30705bfdb5d02c4859bbe4b7c64575676a53c26f9d550bf4537c553d2e615e1 |
File details
Details for the file simstring_fast-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 244.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec8252263c214e37438312f1aedd42fdd215a3350e6f022f37e7edaf1cc2a359 |
|
MD5 | 6ddeb9f20480bc954ad8a37e2cf5766b |
|
BLAKE2b-256 | a6f8995ccdd975fa30d1968484063482caa4e3070900551277bd6e4c46f3f193 |
File details
Details for the file simstring_fast-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 252.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8ebde89e4aabe179ca602859815bb00339fb6536cbfd848695ad3b6d1aaed65 |
|
MD5 | 66f2d79f1cc12bb73ff3ed763cc47887 |
|
BLAKE2b-256 | 9e9d9a4656d9008187e74ec7c6da59d3134bd0f8c01bc1970384d1da4956047c |
File details
Details for the file simstring_fast-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cda03925491c76458e087b3909b2be464e9fb3da418dfb9640369d84ce669992 |
|
MD5 | 3bfdf00e0d4e3529766067f50a1f2e65 |
|
BLAKE2b-256 | 8cb00ec6a785cdd5416863b97c2f29a777ecd94e5b7e6e442fd8476e19daff06 |
File details
Details for the file simstring_fast-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 246.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 637bf3ed7256dfeeab822ed953c4802c1986451987e941bde0eb620bb084566b |
|
MD5 | 0dd25f4081cfb97bb75f9f1cc6a5bb57 |
|
BLAKE2b-256 | 3d3e5716f83119fac17a9b9a2f9994dcb3f877091bcf85620050253876740981 |
File details
Details for the file simstring_fast-0.5.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 142.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a5fc7149174fe443c8e307a28663df0f55b48c4401cbc24880d3652f76c85d6 |
|
MD5 | 49638f72e9b7d70858f1b10995d0bd9f |
|
BLAKE2b-256 | ea9a15b4c67cd3f9396ef434472fe50e0b521308805d7340b1667a35a67259ff |
File details
Details for the file simstring_fast-0.5.0-cp312-cp312-win32.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp312-cp312-win32.whl
- Upload date:
- Size: 129.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27f08eb2508a7e7e35c35aed860358301f734f6904db591f549e88231fcd256d |
|
MD5 | 1dc56c3c046951b4d5bbe6f6c814dbf8 |
|
BLAKE2b-256 | de811eda0d6c80f457d85c54e2bc358e5fac89b18a25d7d26afeb074ea8d9426 |
File details
Details for the file simstring_fast-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 245.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 992e1bb87696dd70add5dc0f06af44763b654c5a0045b3be3feb4375fd38fd80 |
|
MD5 | 57cba19b357eda6f8f5316fe2d0d9f4a |
|
BLAKE2b-256 | fe0f6c31e8253ad9339b6534fb8868bc77d5b97673e154858c14880069e2f073 |
File details
Details for the file simstring_fast-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 253.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f04ac3d6635122f00fba769c07d8563ea10cb354216953f583cc502add901ff3 |
|
MD5 | 1885e53b370f2ec06f6d6f897b188ca8 |
|
BLAKE2b-256 | a0629c0c454ce56d015efd0e986e30390bd02e0a2b73774bb0db9d00f64c876b |
File details
Details for the file simstring_fast-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 242.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c51f71831dd2643f04bafc5e014e2e8ac7be85b28ffdbc3a032e90d93857f11 |
|
MD5 | 58207afbc947916c607efc8c57b89b16 |
|
BLAKE2b-256 | 8aff67aa65a6d20310259345c9274b69bacf4e0ff5f1ff5309270bd27b798902 |
File details
Details for the file simstring_fast-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 246.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6d0067ca0ec80a4573e1787ab6b419ce3c6b387023fc639bf87ed66809287ec |
|
MD5 | ffae71a10437ebea8a5b3a99ce8ff337 |
|
BLAKE2b-256 | eadf14ad58eea3ef9e1e3336f24265c3f5580c88101cddee4102913ddc6d25ed |
File details
Details for the file simstring_fast-0.5.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 141.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f95c3a0c140a274f1ca78858f604bcaf1a277764d4b2a79522527725ad8bda9 |
|
MD5 | 579762f653cf2724d8e8fd4cc12b3f6a |
|
BLAKE2b-256 | 6d3456ad142b76a89c9dd96cc7c26964ab72008844da5ad1676511c5f1f48b20 |
File details
Details for the file simstring_fast-0.5.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp311-cp311-win32.whl
- Upload date:
- Size: 128.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 001b86f4eae378f02344cd838cc312f411b0f223e65ff79a96e8999392024bca |
|
MD5 | 2987109b84a8b41c52b5a4b17a21f981 |
|
BLAKE2b-256 | bb887ccfb64a2fd2ae33ab9147cf0f2453c0796ad02ee9bbf7e7bec9fddf6949 |
File details
Details for the file simstring_fast-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 238.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a77e7f5e1b82f4712dd905e375a9f50334f26fc4a49077b6447c13f89ad374e |
|
MD5 | bbbcdc6d086f893c5390f18146c530ab |
|
BLAKE2b-256 | a0193b0cc25d1270308463d4196e668c77e5f2179229203d64728204494b563b |
File details
Details for the file simstring_fast-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 243.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d350584540fb978721b6ed8b69b6e42c2d591983cc95db130b33dfca3215d6f9 |
|
MD5 | 8868994d8f33ba39b8bb8efc00bd44b7 |
|
BLAKE2b-256 | 3eb0ffa557ba7dbe0b89cc252ea10b253e0d3104ae36f70672e7a0efdb82e5ac |
File details
Details for the file simstring_fast-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 235.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2efd49cce5e516f152a20f06326c7142da3402317d8233b709ce761e4472f163 |
|
MD5 | c34b9c57b508518066920ff930dba02e |
|
BLAKE2b-256 | 0f2751891d55ef9f6c8ee93136030263a0a3b60a7af3a6a62d63c257671c1b6c |
File details
Details for the file simstring_fast-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 237.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f711a87a684824546b0929c730b981ca17b430333ab50b19ff77593fc2664b7 |
|
MD5 | ee56f8d8af55dd59df52c9ebe6b6a8e8 |
|
BLAKE2b-256 | 1a7f217f84a45db5b611e2e7b7490166d3d18c30f9536b8ce55efa378482cda3 |
File details
Details for the file simstring_fast-0.5.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 142.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91fe0df0bea70b33abc0dc54e1b43e2fae6f26cfdfeff1e13b90f2b53a0aa708 |
|
MD5 | 6791e2eaa11898ae8b735a46fce719b6 |
|
BLAKE2b-256 | 6fdf4f1a2b56d15307ff3e16d4b7a0a2ff04a9e89ce146327d70cc99b724005b |
File details
Details for the file simstring_fast-0.5.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp310-cp310-win32.whl
- Upload date:
- Size: 128.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e1113d33682bda20a118e0c8577b7eed7057ce77fedd99158302e5ff350266f |
|
MD5 | 9c3f232a360852f03f908141d834f148 |
|
BLAKE2b-256 | 1130e258294b6eeac4d301849cbb315c7310d06276773c757a8adfbb3c105985 |
File details
Details for the file simstring_fast-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 238.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55c1023218986cdd28745a1c29a7bb722cc9a7c2ffc7a1b3efedd1f72336e05f |
|
MD5 | 795f8130f4e2eb87752a742d7c4a9156 |
|
BLAKE2b-256 | fb15fd7dcd3afef00b3b6d8e5c438d699045e3f99938c75d4f0681453d51b793 |
File details
Details for the file simstring_fast-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 244.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e61c27c297828bc9f8d8308308b6155852a57073b26f64b027f8a17eaa29dee6 |
|
MD5 | 8948363c8d89077acdb26ca60ad0f3d1 |
|
BLAKE2b-256 | 0a14201bd1fe4cffbd9084280c5397a2d230f5d5f9301b8b8a32dc42e075a61d |
File details
Details for the file simstring_fast-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 235.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a1ac060b35e0ead524b223d9da63f5e1edd4e0383615f497af0268fcbc8ce9d |
|
MD5 | 30a8f0750c55f261a53d5b787a31841d |
|
BLAKE2b-256 | 477ef99c5071de713394b4b2f99f60ccc181944c5d7c68aa642a062d849251e7 |
File details
Details for the file simstring_fast-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 238.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e514e9a1c02223c10e28bcd42c06f24c2a628eb2110bbbabcc109b816ac5f73 |
|
MD5 | 5189355b9f1208b77fafb180108bab44 |
|
BLAKE2b-256 | 50af46c226ad5a9195548a66421ffb93c6e9c3b60d090f5bb11959d7d333e226 |
File details
Details for the file simstring_fast-0.5.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 141.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3127bf5f42f445e68ea26be91f12e0447a9cb810c06fd5c366e83f6ba42d7cba |
|
MD5 | 323445eab4839709f3e2ecf5c2092c6e |
|
BLAKE2b-256 | 00bc99f192ecf5c13435a68dea86cc4dd469150c167b14a726a275e1639d86c1 |
File details
Details for the file simstring_fast-0.5.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp39-cp39-win32.whl
- Upload date:
- Size: 128.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f69072b15dece19ccd3a6dc345b1544be93dda1e655d8f3a610c11427b262f82 |
|
MD5 | fab435c30e139bc8016580b7ba7ebe62 |
|
BLAKE2b-256 | 618395afc92a1fcec691953b90d3e27dcaae076e8d08638d10d780ce71f9181c |
File details
Details for the file simstring_fast-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 238.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3923af6e82cc261a2524a5a5e520a4d801180738020ef315a050b2ec745200f9 |
|
MD5 | 5d33e489594480d46a72c26d2158971d |
|
BLAKE2b-256 | 3aaf6a09be362a750ac9c67132ab749696ecda9ae477ef9f84c44b6841fa9f3f |
File details
Details for the file simstring_fast-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 244.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b3b9adf7dfa2b0ba7b7804d734d35f4fb92f3e17442713167daf7bf32eee8fb |
|
MD5 | 9d80a3c417d35c59a45cb138352e1f92 |
|
BLAKE2b-256 | 189927664c3d7f4e0d131aa2a78fb6acccc4a8cea18e85fa70d897326478aca4 |
File details
Details for the file simstring_fast-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 235.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a72f7a49f31a48d741c659ca6ffa9b885a1da333b9fd025cf5335c90f6e4a7a7 |
|
MD5 | 18fdb396826a186ad36a64c7f1b1fd47 |
|
BLAKE2b-256 | 828761dfa8ce8ec126e78fcdd31110a87a6e24215719c1bb1083cd283950fdc6 |
File details
Details for the file simstring_fast-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: simstring_fast-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 237.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddc50f5f6f8e9a1f67dcf94ed00eff798247ff83e6880e1e2a58e422fccc084c |
|
MD5 | 950aa9eb366b45f1625a158478694f5a |
|
BLAKE2b-256 | 7772b24808a0ab60b1eec35b5b7242a1ec4017948ea7c99679c8da5df75d3adc |