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)
Release files for simstring-fast 0.6.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| simstring_fast-0.6.0.tar.gz | 7.7 kB | Details |
Built distributions (wheels)
Total release size: 6.3 MB
Release files / simstring_fast-0.6.0.tar.gz
| Download URL | simstring_fast-0.6.0.tar.gz |
|---|---|
| Size | 7.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ee23806f47a30d02180d9605d6bc2c6488e7fecf75428b91369822c204fd011b
|
|
BLAKE2b-256 checksum How to use checksums |
a18a9537fb6dd7594715119f36df99d487225ff0121c8b7f3023b5b61f8aab67
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp313-cp313-win_amd64.whl
| Download URL | simstring_fast-0.6.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 143.1 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0c89718d0970f6d4e9565682495035e80581c1bb8d5d4552038cbfbe5c28dc0b
|
|
BLAKE2b-256 checksum How to use checksums |
a0d75796b91abfda67759a6941462fb6516dcc010c94e9b2a05158d4c69ffd7b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp313-cp313-win32.whl
| Download URL | simstring_fast-0.6.0-cp313-cp313-win32.whl |
|---|---|
| Size | 129.3 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
605baa5c7b8f0e55755e64fe130b15b3c91801e1156c494f2fed9fdd3096b47c
|
|
BLAKE2b-256 checksum How to use checksums |
af36cc8e1245f0bfeeee5e976e3cfb5a57fc86d7c6d09d5a6ee5577afc1c40fe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 250.0 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
79b6d62b50d675c07f1b6e673805c21f1421e569d4e76b25dee82447474f11a9
|
|
BLAKE2b-256 checksum How to use checksums |
59e086ff38dafb407206be32e195ce6b12281df95e4bbd70af32b494b92a623d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | simstring_fast-0.6.0-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 258.2 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
689642a8471e0053cc53391bcb93a566cd5b16191e5a9a7a9d370dbd38cdc85f
|
|
BLAKE2b-256 checksum How to use checksums |
ca55125d90f49cb0eaf748ad71c435bcb83dd7a6c4d64d2d0b79816f842b5af7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 245.7 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
be9a8ece046d3f2e6293355e67bb95d5245a00f4bdda26425b2d2988a8f8f960
|
|
BLAKE2b-256 checksum How to use checksums |
883a28d5d3a46025db4231f09db10a5b904519973561d0e20025ec275746627b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | simstring_fast-0.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 250.2 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
ab8ef29e49b3dd7d86c6f05f66d50faf79c5e62183b77052f8a3bdf06fd9c4a5
|
|
BLAKE2b-256 checksum How to use checksums |
f88b6f854e61d5fd838abddfcf6c3d02dd4867a1158107ec78d7b7f33afff1c7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp312-cp312-win_amd64.whl
| Download URL | simstring_fast-0.6.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 143.2 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ed4ad19bf2a66874eb7a2e24ee773af065603d0b0ef685dcccd0d0b414840195
|
|
BLAKE2b-256 checksum How to use checksums |
c41aea2182ddace8358549e10450c85c520cfd56f9da5e2778ca4ccdeabaf996
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp312-cp312-win32.whl
| Download URL | simstring_fast-0.6.0-cp312-cp312-win32.whl |
|---|---|
| Size | 129.5 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3be15c3ac28512dd2a4da477d783aa02342936603cab65768ae70458e599994d
|
|
BLAKE2b-256 checksum How to use checksums |
70ca213e3f630089510306da48c66162c5b147538333c72008ced3dd3fb5ea3d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 251.4 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
9b2fa0b7849bebf8599af75d12af879382d0921b4667dc18e34501a28b080e01
|
|
BLAKE2b-256 checksum How to use checksums |
e78edec67b543ae61feae0ed9a95e203ee1c5fd5d82865ce8192d801fce2f1cf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | simstring_fast-0.6.0-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 260.1 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
a673cf9e67ea838643c6a7a70d3d9df909b88d87081102e0ce286585efff3414
|
|
BLAKE2b-256 checksum How to use checksums |
97109386e691815f02bd92f726340fe3fa6b78918fdda3434b25ae8fbb9f650b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 247.2 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
1849097f5cc7b024351bbb02ad01be58baf33f3fae9dffa7748ea07c0ec5eaa9
|
|
BLAKE2b-256 checksum How to use checksums |
f29d21bb32ea8497b9601bd4c593bd078b26718f0971c7cb65154edb2b08f7fb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | simstring_fast-0.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 252.1 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
d1de1cbe01469638135021bff3be7421558f9cf3a92e8a3d634aa8b8441eb3c1
|
|
BLAKE2b-256 checksum How to use checksums |
cb7754451bb7c7a20990b668538601f6d4e4a21fb7a081505bba2271a86a0958
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp311-cp311-win_amd64.whl
| Download URL | simstring_fast-0.6.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 142.7 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cf0379fa8c6571c011aab20d270c8a2c23e1825c82d00634274ed86eed0ebc6c
|
|
BLAKE2b-256 checksum How to use checksums |
a2050cd60d48d3c4104ca2cec463830e40f11b540ad72890d3ff46853c02f2e3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp311-cp311-win32.whl
| Download URL | simstring_fast-0.6.0-cp311-cp311-win32.whl |
|---|---|
| Size | 129.1 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
7b3d640b5a59f4907b45fd7d2e4b01e5999b12ffa92ec728fdde5e8100ae0c85
|
|
BLAKE2b-256 checksum How to use checksums |
b5db0c3aee1d84aab21efd80647a70e7bacf3076df11dac2f478a086b3b64f27
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 244.7 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3c7a83968a3646795a4d36ef975fbcf60243d6e3277c41a32853995ed8591876
|
|
BLAKE2b-256 checksum How to use checksums |
d044d53856c127eaa18d734cdbf0bc8987bfd7a513b8b9d42fa9b2c2f2d1fed6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | simstring_fast-0.6.0-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 248.9 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
7e9579e1830bf012660765e21ef9c60c77d50d65be968f1570e7ada6b3289a48
|
|
BLAKE2b-256 checksum How to use checksums |
9b8966b58382c565952b2f0ac22065b9f295a7dbd4d9d226bf55a6997d1f219a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 240.6 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
292120346a2fe64e41a09aaee80df917808c3083e81fc6772c79a573bcbc7290
|
|
BLAKE2b-256 checksum How to use checksums |
95c5803f261efcd7dc75f38fa4c61bb36abb13417dcac15d9d583da64c4848b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | simstring_fast-0.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 241.9 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
c65c6f19a2396a5c39dbce324338ec8302b0d8b150e00b4a1908570a21cb66c6
|
|
BLAKE2b-256 checksum How to use checksums |
ba61f4af00c1986f3e1858423242e7d1c43d4151f4bf9a76a3a47630a5818173
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp310-cp310-win_amd64.whl
| Download URL | simstring_fast-0.6.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 143.1 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8ab53c871d4f15cac0f5e77a4976132681dfea6aded67e1eb44c49e5da6bf6c1
|
|
BLAKE2b-256 checksum How to use checksums |
ff70a23366ecc2fca0aaa230770ebb056ca3337bcbe84b616bb1e42dbf6f5b68
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp310-cp310-win32.whl
| Download URL | simstring_fast-0.6.0-cp310-cp310-win32.whl |
|---|---|
| Size | 129.4 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
a65590f0ae3423543645df64f5d47ad6f8d5598be8d0562df6d1770c6361a1f9
|
|
BLAKE2b-256 checksum How to use checksums |
0f1c6b208b1b1d553fea24c9bab7281532fb9c604b7f6e02bf442ff4edcc6913
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 245.4 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
64639fbe33bb79ed32ef4ac6f03269cb2f4d8c75e1fce14fbf39cf181395bb7a
|
|
BLAKE2b-256 checksum How to use checksums |
a7ab604bf2b854cb9f2df05cc4f66b75d73a09e200e130650c560179400b2842
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | simstring_fast-0.6.0-cp310-cp310-musllinux_1_2_i686.whl |
|---|---|
| Size | 250.2 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
71996c634118b354af716e3ffa9941e83d863da71c213c1ae9bcaec375222141
|
|
BLAKE2b-256 checksum How to use checksums |
92031b411cc4df332a8ecc3975f6ba273fc3555af4002518d3a5c8228552be06
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 240.7 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
b43e00243440ce3615beb3ab258391ba7e5732d8caae79ab4e757ee39ebd007d
|
|
BLAKE2b-256 checksum How to use checksums |
9640622fdb25baa26a3ec3691a7d818b86eb959db85c91a1b38a6eff3b64cb38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | simstring_fast-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 243.0 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
d0ce0d0587d6d0e1de021978d53cf65d82be420c379d738ccc549527f8f7ba98
|
|
BLAKE2b-256 checksum How to use checksums |
86aecf927d55a2faa02fafeb0268f8493d194d4802e22ddabfbb30ce06e9d9f8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp39-cp39-win_amd64.whl
| Download URL | simstring_fast-0.6.0-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 142.9 kB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
460c4677b3c86abecc3d101b4f8d07e4b3aa77361393ee037c6f09bd0e9e456d
|
|
BLAKE2b-256 checksum How to use checksums |
af01b37c8d4d8a01bdade1e39e6acffca076eae7e4f569a74f3b2607e7a70d85
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp39-cp39-win32.whl
| Download URL | simstring_fast-0.6.0-cp39-cp39-win32.whl |
|---|---|
| Size | 129.2 kB |
| Tags | CPython 3.9 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
a9a089760d073eac34f3aed40a294ebf27d13c57e537807b1cf260254d40c0b2
|
|
BLAKE2b-256 checksum How to use checksums |
cea2b65a9a492a89797a60fe72217c7027fa7794eb32d194837c974db81619fb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 244.8 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
6e75a0086caa704a43c173e749b03ad739cee15eb17dbb66acab794b5da2ec56
|
|
BLAKE2b-256 checksum How to use checksums |
41faddc22e1cf373fa28b0b1a9d62df7cdd5bd9d5c9766cd7dd90ec67d85df4f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | simstring_fast-0.6.0-cp39-cp39-musllinux_1_2_i686.whl |
|---|---|
| Size | 249.7 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
6acce300d57c7fc89c645db4dcd8bda2a2a8cb424c39fc5e41cc9404a511dbcb
|
|
BLAKE2b-256 checksum How to use checksums |
49c9c9991249452241382be58d0c5c6316a47ecd65c0de3920db0d268d8eb1cf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | simstring_fast-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 240.3 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
e02ee90111d6d23f49178efaec8e7c582a155ee05c890b95e48c41e26cf678d3
|
|
BLAKE2b-256 checksum How to use checksums |
0593c53802bf6dfa12fee694b56d74594f05d75f3f99eb2ff1a29e7ca84277cb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|
Release files / simstring_fast-0.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | simstring_fast-0.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 242.6 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
97fcf8b63c027da1da87148a411ea94683a14dc15071c8e3ae72da52be4e4451
|
|
BLAKE2b-256 checksum How to use checksums |
2928ecb68728cec4c4600c234041156c765b50d69c81e4e6c6201842cc442073
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.22
|