Skip to main content

String algorithms

Project description

PyPI version Build Status

pydivsufsort: bindings to libdivsufsort

pydivsufsort prebuilds libdivsufsort as a shared library and includes it in a Python package with bindings.

Features:

  • bindings to divsufsort that return numpy arrays
  • handle almost any integer data type (e.g. int64) and not only char
  • additional string algorithms

Installation

On Linux, macOS and Windows:

python -m pip install pydivsufsort

We provide precompiled wheels for common systems, and a source distribution for Unix systems. Manual compilation on Windows might require some tweaking, please create an issue.

Usage

Using String Inputs

import numpy as np
from pydivsufsort import divsufsort, kasai

string_inp = "banana$"
string_suffix_array = divsufsort(string_inp)
string_lcp_array = kasai(string_inp, string_suffix_array)
print(string_suffix_array, string_lcp_array)
# [6 5 3 1 0 4 2] [0 1 3 0 0 2 0]

Using Integer Inputs

import numpy as np
from pydivsufsort import divsufsort, kasai

string_inp = "banana$"

# Convert the string input to integers first
int_inp = np.unique(np.array(list(string_inp)), return_inverse=True)[1]
int_suffix_array = divsufsort(int_inp)
int_lcp_array = kasai(int_inp, int_suffix_array)
print(int_suffix_array, int_lcp_array)
# [6 5 3 1 0 4 2] [0 1 3 0 0 2 0]

Using Multiple Sentinel Characters Witin A String

import numpy as np
from pydivsufsort import divsufsort, kasai

sentinel_inp = "a$banana#and@a*bandana+"
sentinel_suffix_array = divsufsort(sentinel_inp)
sentinel_lcp_array = kasai(sentinel_inp, sentinel_suffix_array)
print(sentinel_suffix_array, sentinel_lcp_array)
# [ 8  1 14 22 12  7  0 13 21  5 19  3  9 16  2 15 11 18  6 20  4 10 17] [0 0 0 0 0 1 1 1 1 3 3 2 3 0 3 0 1 0 2 2 1 2 0]

Testing

pytest

Technical details (for performance tweaks)

libdivsufsort is compiled in both 32 and 64 bits, as the 32 bits version is faster. pydivsufsort automatically chooses to use the 32 bits version when possible (aka when the input size is less than 2**31-1).

For best performance, use contiguous arrays. If you have a sliced array, pydivsufsort converts it automatically with numpy.ascontiguousarray.

The precompiled libraries use OpenMP. You can disable it by setting the env variable OMP_NUM_THREADS=1, and it will yield the same performance as the version compiled without OpenMP

The original libdivsufsort only supports char as the base type. pydivsufsort can handle arrays of any integer type (even signed), by encoding each element as multiple chars, which makes the computation slower. If your values use an integer type that is bigger than required, but they span over a small contiguous range, pydivsufsort will automatically change their type (see #6).

Acknowledgements

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydivsufsort-0.0.5.tar.gz (222.0 kB view details)

Uploaded Source

Built Distributions

pydivsufsort-0.0.5-cp310-cp310-win_amd64.whl (212.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pydivsufsort-0.0.5-cp310-cp310-win32.whl (179.0 kB view details)

Uploaded CPython 3.10 Windows x86

pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pydivsufsort-0.0.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl (265.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pydivsufsort-0.0.5-cp39-cp39-win_amd64.whl (212.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pydivsufsort-0.0.5-cp39-cp39-win32.whl (179.0 kB view details)

Uploaded CPython 3.9 Windows x86

pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pydivsufsort-0.0.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl (265.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pydivsufsort-0.0.5-cp38-cp38-win_amd64.whl (232.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pydivsufsort-0.0.5-cp38-cp38-win32.whl (189.0 kB view details)

Uploaded CPython 3.8 Windows x86

pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pydivsufsort-0.0.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp38-cp38-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp38-cp38-manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp38-cp38-macosx_10_13_x86_64.whl (275.5 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

pydivsufsort-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl (261.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pydivsufsort-0.0.5-cp37-cp37m-win_amd64.whl (224.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

pydivsufsort-0.0.5-cp37-cp37m-win32.whl (184.5 kB view details)

Uploaded CPython 3.7m Windows x86

pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pydivsufsort-0.0.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_i686.whl (926.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp37-cp37m-macosx_10_13_x86_64.whl (266.5 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

pydivsufsort-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl (256.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pydivsufsort-0.0.5-cp36-cp36m-win_amd64.whl (223.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

pydivsufsort-0.0.5-cp36-cp36m-win32.whl (184.5 kB view details)

Uploaded CPython 3.6m Windows x86

pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pydivsufsort-0.0.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_i686.whl (930.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pydivsufsort-0.0.5-cp36-cp36m-macosx_10_13_x86_64.whl (266.1 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

pydivsufsort-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl (255.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pydivsufsort-0.0.5.tar.gz.

File metadata

  • Download URL: pydivsufsort-0.0.5.tar.gz
  • Upload date:
  • Size: 222.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.9

File hashes

Hashes for pydivsufsort-0.0.5.tar.gz
Algorithm Hash digest
SHA256 508914409b99c2737f4e7064091c77c489f64c3e4be9669499215ce1d5f79526
MD5 2035ec5f326442d0b123573301755191
BLAKE2b-256 babd8311a6b71d781daf493209fbd51a2e701e2ae15a3ebb91c711a5d5d19edd

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 212.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b85a85780466b9c552c335fb6bb0fac592f6a7726b8c6bec6634ecc30937a481
MD5 3ae45508428f543160a9ca76e9719288
BLAKE2b-256 0ebab57134e154b0d70d3f416622efa84db1fd844e148ceb6720f3397f46e44c

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 179.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 395e5f8dd36a41868121491b0d7c0b8843af8db76e810c99da34d23b173128c9
MD5 38bfa7a2a86f5d450670950c3129ed04
BLAKE2b-256 c2dfca6c02993ccc9efd38da74d0b5969ee6fc14d094e641e8364ec11ec076f9

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41021fdcda25f0fa22cd204dc5a8ff5146078a326cbeb8719c0e37d4eaa22815
MD5 c350f53f741bfc6b4c25a5c8521f100b
BLAKE2b-256 ca490fe4c0848f8a646d2a7d48e763902cb4c4e0e372c242f6c62c274ac17d5e

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fe730e14a0ece21b46e81054f9a52a6be8b05bccc27d821019efb74ed18d7151
MD5 487d8f2fb07326609831e56ff8f24447
BLAKE2b-256 cdbc4701e7e816a1210388f6e77a2fd1f9e2f1ecad7730cd01a2c559f328179b

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d949a35f8dbc9f42e30698d6fa4656e6f98c2f4272de4ddad322832f3497a9a
MD5 e5b529e15053acea0b1d85e937441934
BLAKE2b-256 f9674e72944d40b3ba92890a8861d34fc4a043f53885de7b005fab3b17a4bdac

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a45d09eb9289c5c3eb4ec0d95b1ba99599a9fdc316f14c87c7583f2834bd3f99
MD5 37f26aed7445aa55404022763bef7ad7
BLAKE2b-256 64feb9621134ae60014ddcb8d2a4d7811ba44eac77e93efb3ee04e93482f30fb

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 265.5 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pydivsufsort-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 806665957c613e8f6b5cdfd6eb02ec4bd39c791899d805c929da76dbf8c80d5a
MD5 6e63ed1a6d531dd418ccabcb7a0aca7f
BLAKE2b-256 589534cc425495ce5a756a965bef33398264e4f0a55d8c5952a30477ec60343e

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 212.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 02b4d754e070fe5507206fad30366f81f4cad19f61cd85130c58ea4eda3ea9b1
MD5 f29b68d20e9970197718e91c258c5d5f
BLAKE2b-256 7deba56829fcbea3d83b1df44d68760a7ea295508066d7fab5352159134b2cf6

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 179.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 33dbadb13afe46550281478cd8ae68016dc72974a9aa237b82f7e238836c5ed1
MD5 6b8c1ab6631c7b32f373f219db070889
BLAKE2b-256 858abee2ea60345720ab6554dc5a32d8a2de288febae328a2e4218ca6fec6703

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bace290eabe5729ca417b343e045bcbd18e54d22b457218f51230653e59cc4ae
MD5 2c81cd082513408f408f20c6a161a723
BLAKE2b-256 7a382b3087670ed6ea8da6a9e9b8ca62c13618ffac421699f4ad2122490a8337

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fb3ac4aaba3e666ec50f158edc124c529b748f0ef317a7eb31f8d7e312778a3e
MD5 8b71fb3a6416f6990e35dba9f98dbbe1
BLAKE2b-256 2864dc6a7c0c0d6b477059f9e36386b76f563d484be1d6f59d522de804161432

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c89d8deb2bad635040472b28697d5d77711705ae092db3956ea05c7497be9e01
MD5 2bf6827d78da920399960d32b762fe6e
BLAKE2b-256 f6eada423c8289ddd0cfa6c89d6f846331aa1a5aa12f34474b522f543ed96734

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 492faa1ceebf47e990dd92258717ba3a31f94fa5d568f3e29a298528ef2f7573
MD5 5e45834f691072cd30283069f246b2b5
BLAKE2b-256 72880bda6f1fa778d93c90e7f7f4ebfcee2f859f1d2ff6fdad1b9ce96a859f79

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 265.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pydivsufsort-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4c2eb53ce5eb1a7b0f3379b3b99b1f7bb9dd2a4166b8f35d28d7698cba3e4ce
MD5 148aa5eb324eee14ae03de9fe136b175
BLAKE2b-256 f737f7fbaf4fab54cdeb9cd51f9573958e4a9f3c78a414ab48326e9c1c14ec75

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 232.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88609071411da499b7a6604423549e100e8f287cea941c4f2ae58fcead484811
MD5 5f1bf331e32ae5af0c3b6419761194f0
BLAKE2b-256 01d33b411b1dd1e9e855ea0746ae34d8681d907b8ab9669fac5d2868ee41d3d6

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 189.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1816e5741621789976baa3e30bccb5b241884f25806b68fd3f280de1720ccca4
MD5 48cabf2c44b6f28330784e6db1918ee7
BLAKE2b-256 72159a34da0ceab7e4685fbc22b623a4fc7ef86e6908964653a041742c91729f

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e45475408527afaf58da2d0bda5a8c0e0a7a6d949c82ad07087c004f4674cbe0
MD5 e926919220eb416c8ff1fa7c3393d8a5
BLAKE2b-256 55485314b1e1ae56a212d4172fbe9baab94eebb2ec6b2235beeba17ec9e1d3f0

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e1320a08e131e69c250dc3f99518141927400e30cddcf43c697374eb7c2cd36c
MD5 6445c41f652a05d8065abcd1d1887028
BLAKE2b-256 d8e7ed3dbeb832f23b53194511bd4bf1953512a738c8135ece78a62f4f0541ed

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 49cdf2fa793bf3f4f6cee1aa586998697c561c9b743a4d949290eafec1a0b3e0
MD5 2a3ae5c2a102199db4220780a7a5a060
BLAKE2b-256 90b5ec8e4a241e1bd0f571ca4fa41e460330fdae7b742ae44aad712866fabac4

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f91e94d1fdcf4adf2b017f360707c96b9a9a5a213409f5683a57b9e28c58cbe8
MD5 9f1e38a901f61270efc2832cbe93e7e0
BLAKE2b-256 c09ed7526a5c2c19a9171549015fc10ee0966489a491642470152009abe88edd

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c2c4f8b5265cbdb13b8aa4a4872e82bf4ccc2fae4812f2afcb47cd076fe66976
MD5 9840ed8fa51e2c46ca27b07fa11f5f5a
BLAKE2b-256 c59bee6462cb734051f18e281cc33e79e5ff99522d69f16f3065f47cb4b2620d

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d960ec5c551b9f78c31188e9eabdba525bbbd145c12d99d2a4fc7bed5f5dc4e1
MD5 0f42c104e2b04264809d875acf937a92
BLAKE2b-256 2a61a7b68d2a84460fab4ea0b851a5e2d031d24f9780ab236185c212c8cce3ab

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 275.5 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cb36b72604fd04c5cae2e871e3fc7f5ef0b3c7d72b1bd96cd82dfeafd9cfcef7
MD5 4edf55b1ea31c3919b5d97574856a177
BLAKE2b-256 a4864cdc30fa20b92bebb137c5c584e15a31b73620fe61f43ea4cff85bd2604d

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 261.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pydivsufsort-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f7cb20cf7f96fead95f21029ee3ff2f4939172a9182d4d47c10c7b7fb4c6c3c
MD5 72f7b2511536be806d6b2d64ba0920c9
BLAKE2b-256 f0c09b8051ba9aea9b98080c7684867df99b07dcdf2f5661b404bb86e7cee5e9

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 224.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fb6f166b762ea78225037fddff7ec863a14b1f0087d3403a902764f2af95944a
MD5 c3ca4a33dbf45ac4b27b6d9a6e811cb4
BLAKE2b-256 3109626ab54f5bf3fbdef6d7e1555b6e91a50266336ffe93b44ac975fa387845

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fe5920d9ca87f488353f34eb151b681ed5995f6299813c1bb7928383cb6a2b22
MD5 d2e1f27d3f85b66841a2521453200064
BLAKE2b-256 5d7e5bb2a7c375ce2595eaa328a8f13c9dd664e5ba568e19b0b409c3b4d94cd1

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e2ba4aee5d4857db12e6e9234c15ea0592d1a86637995ee720d5b99404743686
MD5 dce9a9303f144378642828a61189a09c
BLAKE2b-256 df64581bf028ea8a09d575f6e6bb769153bcd25d44c800415e88a0b792e6c58e

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1136ced0f7eb2c34c0d8ecf96d083d6a0bfaf28cecc981bd16ab6cf59bded794
MD5 9a34c1ea7ae3abda85082a954967ca47
BLAKE2b-256 d0c58e0b024c421e68744bc514afe54ef70d91fe00da235f2d345058f0e0b6ce

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 593d4434f5db91844ae908c9a932c269879e3367ec6c68577667089cecdcf7c5
MD5 ac5f79211a1c93e12aa8c10865495322
BLAKE2b-256 edc657f6f38a4e01d4306993fe697cfc1858d1e3d939cd574b9fc5b1a7f16fee

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 388ca11c5c39f97508b4b92d718a8766f386033cb77aff01a1808aa214626826
MD5 83f5a945d6d846e8b5ffe1474bb47bbe
BLAKE2b-256 f53bf3d55c8ae63136239364017f71afbcb3d4d0db07bcee101ed8be3a639f28

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7550000a461b1941a98aed73a410ad34ee22b010277f9cc342d7eb47dae91bcc
MD5 4aefddcdcddfa5cf791c05e133eda584
BLAKE2b-256 d483c4dcae731e2d70bd1e640af2eadcec4f227efae7a6084d7181d163e03396

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 926.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f3a0d04519d7f902d89bc4ef9dc2d6066b40cb7791eb27b60689ef32b74daf6d
MD5 b0144b1485dddafcba74f7bc29de6158
BLAKE2b-256 f58f8ff0255c813a50788309e10327880d7dc6c096c7d07b90cfe1d08b1f8034

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 266.5 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eee7d2e5cbf3dff2d5818d58591c35c9dbb0a8aced5d934f914612e4fd495f18
MD5 5b837a8a7e6b681957237b6d23921119
BLAKE2b-256 d68440190beb4975ada0f76ae8484885710af0843483e7cc9e48e5ce47dc7123

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 256.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pydivsufsort-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58660c4d078f1be2559f49f14a137c1b79020a2bf984823efc9c0fd5096b58bc
MD5 05fe39546084b782da1d0eeea7d8dd16
BLAKE2b-256 831f6b1fe9b3d3921c028c42c9df06d2f1f44262fa55bdb996b46afe2b506c29

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 223.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c220e021a54b64766587868ab923885dd289918615a44e47a0a1b96a39bd55d0
MD5 b1e976c58b2a8985c74d9134f27e700b
BLAKE2b-256 386ed0af20d2b2de9c3232b9bd9d99d2a75372a9533e29c60cabd3eec25824c3

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ea3c3ca55db6c3c19ff3b446b4e353497816ae5bf378fdc50edc7b6aa809cd2d
MD5 e5609cd1516d7e80ebbdc0b33fb4308f
BLAKE2b-256 56e41a7abb20e5d80c4869b311afa156f337c47d6ef6fa1631ad1347c2bd327a

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c500f71c8c46a9d46331f89e25919bc6d24c873b3d568234741395124983cb73
MD5 edf3f3b992a2bf71dca42f81e4891bf5
BLAKE2b-256 50f8797152d60215201d45a6977e38b2c6dc0edf11e4d9a1ad062433c58b07f2

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 15e70ba7e1010da2b02dab4d987f95d8def5d82aed524f925462d9df463ffd99
MD5 b90f3d3d33fc6e3d9d070167977ba60e
BLAKE2b-256 242403a5e1ac8ffa942b4f7c850d9b4d284495815b18e5dc7f3cc866424bfe13

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 150ca207cef79ff4e398916447cd3e7f365f31a0e41c9f72dace4d376d1a043c
MD5 72a0aaa518789dab9864dda7fdc65222
BLAKE2b-256 b412e3b5b479cb87259b5b1a6ae690df9fff564474729336cbd33e52f666fbf2

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc97f3975e42e850338bd963bc8e17d0faef1c3c3e998c591b002f288ec16193
MD5 e8c9ec3fbfa59c9c4c479b62e4d50e51
BLAKE2b-256 0cb66307810ca9695fcaf0d1f5662d631fed5c4c18eb71c127bf1a12dc67d3a3

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 29a3f8c1aac178ff4af9ab354911d1c6a97d8211ada8ff6ba3d6ad5163a69d9a
MD5 26086a20e726ed1bbc36dcd66f238bf7
BLAKE2b-256 2872153ed8bec0d5a899fa53abd48f074fe6ef48a997c67045a225ab091a5162

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 930.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eb7d21d0f3511c67c1892479eb01d3374d9f9ba322d58389905781c6f391fa2a
MD5 3fb80531de9bb55dcb77d1b88fbe68b3
BLAKE2b-256 aaf0406e5d035fca2c8f9163fc0c9fc6151e31a237df8dfd345b70001d52a08c

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 266.1 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fef66f81390a4621f257b41069e3b9a196b4465438a3909aefa8171a42cc5bc5
MD5 e41f7479d8675663b039eea69de50c2f
BLAKE2b-256 8b52f909c45df127fae5e62b68ae51e62d1ed81d600448c224dd8fd6175e9b90

See more details on using hashes here.

File details

Details for the file pydivsufsort-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pydivsufsort-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.1 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pydivsufsort-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2f6f6f33164ef932fb056d434ed0978e7af82d1e0648bfbbebf0faf84e60edf
MD5 b4876b46e0082e62b9a150368005c6c4
BLAKE2b-256 20d52d2bb10956f18676cc2d5cd2a56ea6875b1ffaa33700f899382b20b2cc55

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page