Skip to main content

This library allows indexing many strings into a file, and then efficiently fuzzy-matching strings against what’s been indexed.

Currently, the structure is built from the Rust program in memory before being written to the file, so that phase uses a lot of RAM. You cannot create/change an index from Python.

String search is done from the file and requires little memory.

The index is a trie structure in which trigrams can be looked up; results for each trigrams of the input are matched and sorted to get the most similar strings.

Example:

>>> from ngram_search import Ngrams
>>> ngrams = Ngrams(path)
>>> ngrams.search("ham", 0.24)
[(0, 1.0), (2, 0.25)]
>>> ngrams.search("spa", 0.2)
[(0, 0.375)]

Release files for ngram-search 0.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ngram-search 0.1.2
File Size Uploaded
ngram-search-0.1.2.tar.gz 53.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for ngram-search 0.1.2
File
ngram_search-0.1.2-pp37-pypy37_pp73-win32.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-32 Details
ngram_search-0.1.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.12+ x86-64 Details
ngram_search-0.1.2-pp37-pypy37_pp73-manylinux1_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.5+ x86-64 Details
ngram_search-0.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 Details
ngram_search-0.1.2-pp36-pypy36_pp73-win32.whl PyPy 3.6 PyPy 3.6 7.3 Windows x86-32 Details
ngram_search-0.1.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.12+ x86-64 Details
ngram_search-0.1.2-pp36-pypy36_pp73-manylinux1_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.5+ x86-64 Details
ngram_search-0.1.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 macOS 10.9+ x86-64 Details
ngram_search-0.1.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
ngram_search-0.1.2-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
ngram_search-0.1.2-cp39-cp39-manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
ngram_search-0.1.2-cp39-cp39-manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
ngram_search-0.1.2-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
ngram_search-0.1.2-cp39-cp39-manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
ngram_search-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
ngram_search-0.1.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
ngram_search-0.1.2-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
ngram_search-0.1.2-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
ngram_search-0.1.2-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
ngram_search-0.1.2-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
ngram_search-0.1.2-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
ngram_search-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
ngram_search-0.1.2-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
ngram_search-0.1.2-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
ngram_search-0.1.2-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
ngram_search-0.1.2-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
ngram_search-0.1.2-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
ngram_search-0.1.2-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
ngram_search-0.1.2-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
ngram_search-0.1.2-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
ngram_search-0.1.2-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
ngram_search-0.1.2-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
ngram_search-0.1.2-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
ngram_search-0.1.2-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
ngram_search-0.1.2-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
ngram_search-0.1.2-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
ngram_search-0.1.2-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
ngram_search-0.1.2-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
ngram_search-0.1.2-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
ngram_search-0.1.2-cp35-cp35m-manylinux2010_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32 Details
ngram_search-0.1.2-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
ngram_search-0.1.2-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
ngram_search-0.1.2-cp35-cp35m-macosx_10_9_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64 Details

Total release size: 3.6 MB

Release files / ngram-search-0.1.2.tar.gz

Download URL ngram-search-0.1.2.tar.gz
Size 53.1 kB
Tags Source
SHA-256 checksum
How to use checksums
c7668dce1d2eb12b2a5b580c08859f929b7df6833edf53fc8eed3fee14f3b440
BLAKE2b-256 checksum
How to use checksums
36d35fc3fa993e8633c73464bc25db910205899e8781ddba1d9edc7ceca6f6f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp37-pypy37_pp73-win32.whl

Download URL ngram_search-0.1.2-pp37-pypy37_pp73-win32.whl
Size 24.1 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-32
SHA-256 checksum
How to use checksums
c8c983a5d162aa0d3ada5c7e2c56826fa13c37782f49147121a63ba2a71ba1bf
BLAKE2b-256 checksum
How to use checksums
5e2af11da85c8c1b279bf02c3918dc9ea375adf0e193f267be14d52162993f42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl

Download URL ngram_search-0.1.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Size 29.8 kB
Tags Linux glibc 2.12+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
ee4cd52a8e978ff40d1c622fa8fb651d3c30655ed3305c83cf23eb941de25b37
BLAKE2b-256 checksum
How to use checksums
00d603eb9aa5b526dbb462f9e7b983bdb61119404f525eb7de4fde0e14bb8307
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp37-pypy37_pp73-manylinux1_x86_64.whl

Download URL ngram_search-0.1.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
Size 29.8 kB
Tags Linux glibc 2.5+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
e5abd009da21842cf7ce669a40b7e8aea86a44466939f072073b9365302d8af3
BLAKE2b-256 checksum
How to use checksums
b93a3e1460389a82cab39a6360a7bbc9c18e8013f9c4d1191da1552795183a8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl

Download URL ngram_search-0.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Size 22.5 kB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5b48dea53ed813b335c5bd8e8dfba554803cc4bb46902b0a2f38d14889144a38
BLAKE2b-256 checksum
How to use checksums
2dac3b50ed1c3694eb7d27688209e3d2189cbabf5cf7d8d5d3e32eaba46a9150
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp36-pypy36_pp73-win32.whl

Download URL ngram_search-0.1.2-pp36-pypy36_pp73-win32.whl
Size 24.1 kB
Tags PyPy 3.6 PyPy 3.6 7.3 Windows x86-32
SHA-256 checksum
How to use checksums
64a9d4290e20f2054c055eb74eed17142e4f06f5246506682e928326c091cdee
BLAKE2b-256 checksum
How to use checksums
89df7b68ca6d95a60ebd98905d2418084097dc919f4641bdf142c0df6718d140
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl

Download URL ngram_search-0.1.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Size 29.8 kB
Tags Linux glibc 2.12+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
ce7ea15a96f49e873a97177e65555f40cc8785d060c7d2c1d5010f39299af00c
BLAKE2b-256 checksum
How to use checksums
e5568efdd11208c169dcdcea1c6f5c05a58350cdbe2c6f4a32907b4c1c99b188
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp36-pypy36_pp73-manylinux1_x86_64.whl

Download URL ngram_search-0.1.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Size 29.8 kB
Tags Linux glibc 2.5+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
d23a402c41a6466500b93043c871afb9e729b206a080cdb4218bedcd80d0cf88
BLAKE2b-256 checksum
How to use checksums
7b7a84af6d93b5458f4236daa30b2bfc34e1d365103259b65a6058f81211aa4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl

Download URL ngram_search-0.1.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Size 22.5 kB
Tags PyPy 3.6 PyPy 3.6 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f634691ac14f85bad2a864510299eb09a7bd13dc73a40b92751329887d55ccd5
BLAKE2b-256 checksum
How to use checksums
a3c8a90bdcebff6dc758fdee147da3daab2aa778e83a8eab2db01c55e73311d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp39-cp39-win_amd64.whl

Download URL ngram_search-0.1.2-cp39-cp39-win_amd64.whl
Size 31.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e5bd3b9a78444b10705ae6e68fe32175801e2024be45440688edf17a9001eaf1
BLAKE2b-256 checksum
How to use checksums
62b125fe0e13ce34849d323cd59b74d736577ac7c7ccb9ccbc96f256b3feef78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp39-cp39-win32.whl

Download URL ngram_search-0.1.2-cp39-cp39-win32.whl
Size 28.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
83a7050ef2731299fc792096de955b4a9f35d5ecedfbcc2efadcbbe8fd899e97
BLAKE2b-256 checksum
How to use checksums
a25dcdae96918e7c68e5b6609391f0cf5fa48bb63f6d1733519957cf8c9c02c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp39-cp39-manylinux2010_x86_64.whl

Download URL ngram_search-0.1.2-cp39-cp39-manylinux2010_x86_64.whl
Size 156.4 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
f02b88cdba00011c008dfa4223457510cdacec17dbbe6ea0fc263337bd577c5b
BLAKE2b-256 checksum
How to use checksums
5c0232afb714d3081ab3a2bf1dd8f2a5b1ff5ee2a3eed03ba67b0554cd320735
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp39-cp39-manylinux2010_i686.whl

Download URL ngram_search-0.1.2-cp39-cp39-manylinux2010_i686.whl
Size 152.6 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
feba6b7e98b8d0c9e84bdb50493d3c08e8957680ca88c63f116fb278d39a9752
BLAKE2b-256 checksum
How to use checksums
6287ca41995e1e3bdb5144bdbb05159609e980191a5539f30e20858d8d1bf9c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp39-cp39-manylinux1_x86_64.whl

Download URL ngram_search-0.1.2-cp39-cp39-manylinux1_x86_64.whl
Size 156.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c299d158e633b8be111e3f54f9609f2e699eba09f4b1c70f0bf71b4d578503ae
BLAKE2b-256 checksum
How to use checksums
cc4bc700cce194512d7cac66090d86d04fd2f01ed201dd9b9779aa8cd6d40409
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp39-cp39-manylinux1_i686.whl

Download URL ngram_search-0.1.2-cp39-cp39-manylinux1_i686.whl
Size 152.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
efa8a0f7c459efa3ad0bec9880562468dac06040ea35860fd541f0b68fd9d12e
BLAKE2b-256 checksum
How to use checksums
e70c08224621d8e8eb0478886a0a8d1f706404292cd6e1df8e7488655265eabf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL ngram_search-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 29.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c38ffdd4ea79c46e539edad6c10d347cdc6e234d111c54a93818f49e6db23acd
BLAKE2b-256 checksum
How to use checksums
d86da0ebb447ffa98af118360137d99b93120d795e5f9f99b60d534720e207ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp38-cp38-win_amd64.whl

Download URL ngram_search-0.1.2-cp38-cp38-win_amd64.whl
Size 31.9 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
1c5218a6c7b83b7223861df153f7a159790b9ffbaac9c178f04d9918c91af271
BLAKE2b-256 checksum
How to use checksums
76dd7084b40f2eca1a2a1dd11e73dffe82c751699fc7749d8546dafb282ab72b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp38-cp38-win32.whl

Download URL ngram_search-0.1.2-cp38-cp38-win32.whl
Size 28.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
cbbd64ee823885266fd13dbc7868fe76c132fbb0ed327c348e72fd42e46e5cff
BLAKE2b-256 checksum
How to use checksums
1f6863d79a98a8ffce721450964232b43ce478ac36e0bd6e6b87a9292c0d59eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp38-cp38-manylinux2010_x86_64.whl

Download URL ngram_search-0.1.2-cp38-cp38-manylinux2010_x86_64.whl
Size 160.4 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
5b5cfbd7cd7f633b6a3cd838050ec1df956729c211d5a61212d9b22a6b6dfd94
BLAKE2b-256 checksum
How to use checksums
043519481d16c80f8eb7fd20619cf7c38582f3259c59abade1e4e1508e27b66b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp38-cp38-manylinux2010_i686.whl

Download URL ngram_search-0.1.2-cp38-cp38-manylinux2010_i686.whl
Size 158.2 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
e87726faa10d5bfcab5e65eaef27e2c83a727388869dadfa115b308f2bb5614d
BLAKE2b-256 checksum
How to use checksums
cec1182e3be5f779dd3ac4083e9b0fbe4fd46c6aad95d950b3a0616094ac519d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp38-cp38-manylinux1_x86_64.whl

Download URL ngram_search-0.1.2-cp38-cp38-manylinux1_x86_64.whl
Size 160.4 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a853ea5bc73b5eb2fff5069c4f6e8ad18ef651d00d97afc73f5e9be3f46fdd42
BLAKE2b-256 checksum
How to use checksums
096217328f7938b2bc231a9e41982b46fbad9d68f863e1763ecb33515f35bbb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp38-cp38-manylinux1_i686.whl

Download URL ngram_search-0.1.2-cp38-cp38-manylinux1_i686.whl
Size 158.2 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e28788cdda00f819cb31a4a416f8af397f4d5fc1df1d5c4add53b7ef85460f19
BLAKE2b-256 checksum
How to use checksums
8036a2cbc2d5497c1352beccec95b482780b01cfc319efc573769404013d04e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl

Download URL ngram_search-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 29.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9181d7159e603f87286876877db0a05589ef5a7baa53397a8392e6f9dafa0e84
BLAKE2b-256 checksum
How to use checksums
de642244fca127bf67350e7770bdfe41c63fedc59a2a4fbb7def1328e0ae9930
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp37-cp37m-win_amd64.whl

Download URL ngram_search-0.1.2-cp37-cp37m-win_amd64.whl
Size 31.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
498ea45d8c63a40af0ada2da4ec0aa48e54af07dc446c5e5a5ede867cb0a5958
BLAKE2b-256 checksum
How to use checksums
98acbd56a94c98db14f3479779fed8f7f911c44bfa9cb59984824c4929b0cee9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp37-cp37m-win32.whl

Download URL ngram_search-0.1.2-cp37-cp37m-win32.whl
Size 27.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
765a9bec54023b15dc1ad6001af5bc1f664fee84bf214b4abcfe1f8613eedad3
BLAKE2b-256 checksum
How to use checksums
406a6d3faed6aff0c35b0f9e6e55116347b8f0e7bca1d4e3e19edaedf2820562
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp37-cp37m-manylinux2010_x86_64.whl

Download URL ngram_search-0.1.2-cp37-cp37m-manylinux2010_x86_64.whl
Size 137.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
98bb4ede9fbf0464f061a3421f42d01836f4c23ed52c4f3d8548041729210a2e
BLAKE2b-256 checksum
How to use checksums
0c9702ccd0bf7bc2a4b91daa82520b8ee4ce9837c9f99fdd6afcc54cef91a335
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp37-cp37m-manylinux2010_i686.whl

Download URL ngram_search-0.1.2-cp37-cp37m-manylinux2010_i686.whl
Size 136.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
7e1d35edfd96a752b1abd4d0068df379a34a9092346bf79ae26c7971a7082b81
BLAKE2b-256 checksum
How to use checksums
47a4988e4f5838cf6e78464fbc48420068e89167e61b4698e6d51915b0297fca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp37-cp37m-manylinux1_x86_64.whl

Download URL ngram_search-0.1.2-cp37-cp37m-manylinux1_x86_64.whl
Size 137.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
35a560dda49f86f8ab2df9dea7e90cc4bd1bbca65b32d452e8ff78c2d2276853
BLAKE2b-256 checksum
How to use checksums
82261be3c09397857cd206678b80ad9121bccfd4b3c6c81e4f98aab5a9c23658
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp37-cp37m-manylinux1_i686.whl

Download URL ngram_search-0.1.2-cp37-cp37m-manylinux1_i686.whl
Size 136.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
915e52757085074e57c2bbf254ff5aec168af1683304ddd73908c4329aa1efff
BLAKE2b-256 checksum
How to use checksums
1b27872dad86efc839274177542df606eb013798941ee03277353d45334f582a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL ngram_search-0.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
Size 28.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3b464bc09f3c70e352fe6d4fad413b400d625791a564c18b58056ddcfac04599
BLAKE2b-256 checksum
How to use checksums
6b74cf35bd3436a997e4962a3c59f6c2a4fca57fb1ff1512e8a1c12b933c7852
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp36-cp36m-win_amd64.whl

Download URL ngram_search-0.1.2-cp36-cp36m-win_amd64.whl
Size 31.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
0f3c91af0b2161bb21d17cfcd826d924893fdda1d49a34affe986c611ef384b7
BLAKE2b-256 checksum
How to use checksums
b0acc54a78e06d60bfd501dd08a30d3e1936e9b1b73109e40dd203420b5a5dda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp36-cp36m-win32.whl

Download URL ngram_search-0.1.2-cp36-cp36m-win32.whl
Size 27.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
fac73de7049dacbc3c697de43d7bfed9df6df2c37a9882cb801e5246c35c810b
BLAKE2b-256 checksum
How to use checksums
d39b54bece1783f2ca73fa96e8e3a1555e9b909860c197e660ed1dd781133d12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp36-cp36m-manylinux2010_x86_64.whl

Download URL ngram_search-0.1.2-cp36-cp36m-manylinux2010_x86_64.whl
Size 137.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
104a462c92cd187cf818bf68cede3fa3ffc978ce3d5b205da9aec8b810d6b831
BLAKE2b-256 checksum
How to use checksums
6ac4d2465c277e351c5aa18bab44716c2158b9878559def9a6a61f41cd4f6d45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp36-cp36m-manylinux2010_i686.whl

Download URL ngram_search-0.1.2-cp36-cp36m-manylinux2010_i686.whl
Size 137.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
e117fbdab71d2905100c2c2a3861c9ce81e3b8d0de5f81b93edcf9b251dffc13
BLAKE2b-256 checksum
How to use checksums
b12cc7b3ae64b98746d071fc66a3e5a80bf7c3b7c944eb057462104fbd659e41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp36-cp36m-manylinux1_x86_64.whl

Download URL ngram_search-0.1.2-cp36-cp36m-manylinux1_x86_64.whl
Size 137.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ece5c81a485072735891c20d9483e578301603f168956d657ee6c128d2b70380
BLAKE2b-256 checksum
How to use checksums
98b0652193d72aa84932cdee27849d8fa850b787d99fdb589f9947eeab487aab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp36-cp36m-manylinux1_i686.whl

Download URL ngram_search-0.1.2-cp36-cp36m-manylinux1_i686.whl
Size 137.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
dbfb0fbb45063fecd7098751f9ce90f564bf97b4d1890c0e917262d71c299794
BLAKE2b-256 checksum
How to use checksums
67347fd2b5db99a4d9e31ee0abe80a97b3d43efce42ef36139b48b2d1d989454
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL ngram_search-0.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
Size 29.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
af906f6e39ea6d28ca38c870ea70e7f12c5dd055a20fa2a52de8c053fd4b0d9e
BLAKE2b-256 checksum
How to use checksums
90f241073e330190f64d52ed3f61a5b08a3afc89c5976cfa101739f4beaceec1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp35-cp35m-win_amd64.whl

Download URL ngram_search-0.1.2-cp35-cp35m-win_amd64.whl
Size 30.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
161e01da2c6a11d44ddf3a5e0aa7df608e425378ccfb008554f3df44f2465217
BLAKE2b-256 checksum
How to use checksums
19a0c73a0f9e0b0a0ab21302eec9cfd66d0ca7026055c850e121945912f8b7b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp35-cp35m-win32.whl

Download URL ngram_search-0.1.2-cp35-cp35m-win32.whl
Size 26.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b2ae83fe3b98b1b3d5f14900a9114edc9ed2b8d3b7cfdf9a369166029ff500e2
BLAKE2b-256 checksum
How to use checksums
edb4fb21ab49c5b7cb67b9be2a28f40b74c1fe247dc8d65dc5fa20d515e17e83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp35-cp35m-manylinux2010_x86_64.whl

Download URL ngram_search-0.1.2-cp35-cp35m-manylinux2010_x86_64.whl
Size 134.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
cc268e5d7a5a885a8595e350af9a8cd43570a236d692ac4ce1dd1016f57c88a6
BLAKE2b-256 checksum
How to use checksums
10a2645ec4f6ba985da309b5f33e5a63fb9c1d986ca303c52e638afab18748eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp35-cp35m-manylinux2010_i686.whl

Download URL ngram_search-0.1.2-cp35-cp35m-manylinux2010_i686.whl
Size 134.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
3b67566d6dff86c0802685bebb5108ce57067d811484e2dc01bb6553b40a0631
BLAKE2b-256 checksum
How to use checksums
56eeacb4046674afdde05cb76835e08c10d26bb5edf2c8d82752e86a41b8264f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp35-cp35m-manylinux1_x86_64.whl

Download URL ngram_search-0.1.2-cp35-cp35m-manylinux1_x86_64.whl
Size 134.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
eb1844b74a6d7e54ceb96daf78ca95706560aa7426c1b697751f7908cd5eec39
BLAKE2b-256 checksum
How to use checksums
ed2fde96313b3355e96e571584d0d03fdfa4bd86eca8ecdcef7df647b79e4b3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp35-cp35m-manylinux1_i686.whl

Download URL ngram_search-0.1.2-cp35-cp35m-manylinux1_i686.whl
Size 134.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d5720c613853b2bf9fcc7a8324d84f5df216f525da39a2e1e9203e22e62d4cfb
BLAKE2b-256 checksum
How to use checksums
6e572be61cdbac2e36b4a6021cd39df396d7f2cdfe8512b4aa3c3eed498915c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release files / ngram_search-0.1.2-cp35-cp35m-macosx_10_9_x86_64.whl

Download URL ngram_search-0.1.2-cp35-cp35m-macosx_10_9_x86_64.whl
Size 28.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1e34ca0e2cf163ffbea66386345963b5bbd2b44a79b09ee415d3312841a1448c
BLAKE2b-256 checksum
How to use checksums
c19978523ecfb2f3d0fb8b5993a11872544a06fd59c86e16d744176bacb41087
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

Release history Release notifications | RSS feed

This release

0.1.2 This release

44 release files

0.1.1

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page