Skip to main content

Crunch 100+ GB Strings in Python with ease

Project description

Stringzilla

Crunch 100+ GB Strings in Python with ease, leveraging SIMD Assembly

Stringzilla was born many years ago as a tutorial for SIMD accelerated string-processing. But one day, processing 100+ GB Chemistry and AI datasets, I decided to transform it into a library. It's designed to replace open(...).readlines(), str().splitlines() and many other common workloads with very long strings.

Benchmark IoT Arm Laptop x86 Server
Python: str.find 4 MB/s 14 MB/s 11 MB/s
C++: std::string::find 560 MB/s 1,2 GB/s 1,3 GB/s
Stringzilla 4,3 Gb/s 12 GB/s 12,1 GB/s

Usage

pip install stringzilla

There are two classes you can use interchangibly:

from stringzilla import Str, File, Slices

text: str = 'some-string'
text: Str = Str('some-string')
text: File = File('some-file.txt')

Once constructed, following interfaces are supported:

len(text) -> int
'substring' in text -> bool
text[42] -> str

text.contains(
    'subtring',
    start=0, # optional
    end=9223372036854775807, # optional
) -> bool

text.find(
    'subtring',
    start=0, # optional
    end=9223372036854775807, # optional
) -> int

text.count(
    'subtring',
    start=0, # optional
    end=9223372036854775807, # optional
    **, # non-traditional arguments:
    allowoverlap=False, # optional
) -> int

text.splitlines(
    keeplinebreaks=False, # optional
    **, # non-traditional arguments:
    separator='\n', # optional
) -> Slices # similar to list[str]

text.split(
    separator=' ', # optional
    maxsplit=9223372036854775807, # optional
    **, # non-traditional arguments:
    keepseparator=False, # optional
) -> Slices # similar to list[str]

Development

rm -rf build && pip install -e . && pytest scripts/test.py -s -x

To benchmark on some custom file and pattern combination:

python scripts/bench.py --path "your file" --pattern "your pattern"

To validate packaging:

cibuildwheel --platform linux

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

stringzilla-0.1.3-cp311-cp311-win_amd64.whl (97.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

stringzilla-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl (243.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

stringzilla-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl (236.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

stringzilla-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (123.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

stringzilla-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl (128.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

stringzilla-0.1.3-cp311-cp311-macosx_10_9_universal2.whl (250.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

stringzilla-0.1.3-cp310-cp310-win_amd64.whl (97.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

stringzilla-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (243.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

stringzilla-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl (236.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

stringzilla-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (123.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

stringzilla-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl (128.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

stringzilla-0.1.3-cp310-cp310-macosx_10_9_universal2.whl (250.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

stringzilla-0.1.3-cp39-cp39-win_amd64.whl (97.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

stringzilla-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl (243.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

stringzilla-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl (236.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

stringzilla-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (123.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

stringzilla-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl (128.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

stringzilla-0.1.3-cp39-cp39-macosx_10_9_universal2.whl (251.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

stringzilla-0.1.3-cp38-cp38-win_amd64.whl (97.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

stringzilla-0.1.3-cp38-cp38-manylinux_2_28_x86_64.whl (242.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

stringzilla-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl (236.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

stringzilla-0.1.3-cp38-cp38-macosx_11_0_arm64.whl (123.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

stringzilla-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl (128.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

stringzilla-0.1.3-cp38-cp38-macosx_10_9_universal2.whl (250.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

stringzilla-0.1.3-cp37-cp37m-win_amd64.whl (97.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

stringzilla-0.1.3-cp37-cp37m-manylinux_2_28_x86_64.whl (245.5 kB view details)

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

stringzilla-0.1.3-cp37-cp37m-manylinux_2_28_aarch64.whl (241.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ ARM64

stringzilla-0.1.3-cp37-cp37m-macosx_10_9_x86_64.whl (124.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

stringzilla-0.1.3-cp36-cp36m-win_amd64.whl (96.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

stringzilla-0.1.3-cp36-cp36m-manylinux_2_28_x86_64.whl (247.1 kB view details)

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

stringzilla-0.1.3-cp36-cp36m-manylinux_2_28_aarch64.whl (241.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.28+ ARM64

stringzilla-0.1.3-cp36-cp36m-macosx_10_9_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file stringzilla-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47934243ffe1c629dfb35dcf1891eb2af8c39d4f2e84b59d1f98f77e99076b22
MD5 b868241fedd5a57c963a2983431d2de8
BLAKE2b-256 5cddc61ebfe88f239a1090f85afe7c72a25b53f6ca76108e79e24348c8d75514

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5d7680737736ff0e5dc9d08d5d70c715e46e0d32de150fd485b185933e0bdea
MD5 54b9fc4a35c6d04a897cb2ec61472731
BLAKE2b-256 7e91c8f2e0400f6ef777ea3259fd002d4da17a85847aef735002074f9a4f3d0c

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91c6c173eeb5cd321e373d6e6d3523460ac405d4241832250791e1deac471077
MD5 beccc9b5c85e830fd9d7da0b216f0b8a
BLAKE2b-256 e959fb82c9a73635d5226f269d0e2d13de5a974267ac2dc5a1ba49fb65004e69

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b08b665e831d2f1cc7da057fbb3c6ec2e6b81a0f8eca62faf7b6520b1883982f
MD5 e766112f6b61864eb9a724e3f06b5760
BLAKE2b-256 be30f1e34cee8dcc0d17252aa262222d0861fdd142e383dfc9351092e0ba012f

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f42a9f2bd54be64aff2e6c12cb557b90cb4dff5413ebb0ddde10a6855a5a9a55
MD5 260d4e091050ece47ffbd350b5e215a5
BLAKE2b-256 4919dfdd15b2b731a9bc61a7e4f15a2b6b58290cacb0e4ce0a5ac701be388655

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d783233a99b650301260ee49d6e3e21265ab99a71234e848e93d19cf28e0d664
MD5 a96a2e4aaa5722a417676a6293afd462
BLAKE2b-256 bfa7f37474f59039cceaeb23560f86de871fef494929798aa8dbd3749316a9fc

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62d5884759b91d7a87fe825948b5cb8fce54fe5d63e214d23c4a298659bba6dc
MD5 b0436fb18ddc90a2cdb5aac4cf9a7e2c
BLAKE2b-256 d0d5cab0ca6fee25fd5461d270abcaf4d02ad9631f6d33435386c44d56aa74eb

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ad1de1aa7b56196798e068b11b1357fd9b7aaca0a7e7b3be9b5f0f8c8900f43
MD5 06d6d5bf6474e61134784d734b11695a
BLAKE2b-256 602eed81033ef732fe7126206948dd6b4726adb7067655f9151380e126f9cc3b

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 712c5ea949169d446279ba321e3ed55c15b5b8f24a6267beedcab7e99c2c21dd
MD5 a8e7b03a161c1e458054a941d90079db
BLAKE2b-256 2fa2e809107beba35d888bb71dbd8c7f565d6b1069f6d881fb00d59ac27a4365

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c9510fce76c4a8bfa47f1291fc9e057e5cb854a3cae82a719f155998bf83b8d
MD5 bf22798095c80bcf267803dac979fd22
BLAKE2b-256 e5865cace1785d973645f7415d1c0a98f35e6e7bdc9e5551660c30fd83069f59

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 abb0386fedfb376d7129d279bad837b20b734a6ea279fcf778462d67e3b4b5cd
MD5 282166ad96472772edc66221b997d686
BLAKE2b-256 3f905a47435ec1e21e3d7bd30abc19bb22f373228ed401e1792266fdc81baf21

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0167910b326045c7b10f22935fbe8d8883e687bdc8deba27233fd361cb025a3e
MD5 3d5751d2d6954346ca1a4f8f5015fc99
BLAKE2b-256 3a20b94563e9804de6a36362e29da7e60a7c25cf45e566683e69a55253c8b82a

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a39d452ab5259d0c31a3aaea9d18f958ac5d1aa2ef7a9d8ed61d55ad6c9a715d
MD5 6f14f50ec3a16423ef04708a592752a3
BLAKE2b-256 fa50a183917f17c6e8c6c89d6755243208ef76e0f1ce7ff91bd2404bce9689cb

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eba5f1403a56c3359e539e3c83179a1c1f091463300681e78356ee949aa378fe
MD5 e90b8a314f7004509b4918ea015526d2
BLAKE2b-256 b84d9670b8c6df17a6992cb28ab7b10cccd0494dd944c307240fc14e3268c226

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15fb5fa3dc30c228c47b0e8522fa49b202cd35e4e0554fc34ef6b32dafb5cdfc
MD5 0f5050b52b42c67b7b567cdded89bda3
BLAKE2b-256 e60e04a937646f5037ca9fa16ad46596c448e1621acfed55998db0c9aacddaf7

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26e7960f542af2854151926e641d87feb6e5919316e7d2a90d89f0b3e6d779c9
MD5 6db9e8345f559b0286fc9549b5f4703c
BLAKE2b-256 16c9c2f6ac1a5a17d98e770766a03fe29c21e581a04f8a14116dd5a928224041

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 372260003d1583f5ae53d15d77c81ba644f33f10164339af4b8056aab8d2f092
MD5 2163244ffc7b39029f1df31e44b4fb2e
BLAKE2b-256 15eb1f1e5731923ee6723dcf923460a1c44a1e37964331cae03b6d3444844021

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d5c4061daf83ca9d853c66a26947fe17bca5093e5c22f625c7f63a9ecfc1eef2
MD5 9cfb074b32cc10596672b8b1155a61aa
BLAKE2b-256 66306cc3a0f2f0f7ab0969ee3040f6461a3e5bb2d2f379662d086bc920640c8c

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 561ba87343b207999c35de1601dc4b6596b5b02fe220aaab27ab7fd12ab89ed2
MD5 0238d0999b0875c915ffe5ce40cfa7da
BLAKE2b-256 e8923b0023abfa83df768e85176d5ec4146967e57d4532ce6dfd33bc22ea1b9f

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b95f0b42ee388515607772d1f65c68f8a4a4b2ce50ce5b06413071b681016e1
MD5 d2d4449583644f1b6c6a287fba98159a
BLAKE2b-256 6bbdd356714397331a8d60f2eeb11c4f42d056c82dddb4deab8d8e12ed3f20e8

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8b4da282751f89b5d94bcd8b669ee0c97ea849b520f85697a2641681c98b35b
MD5 c37544306c1874627f8c051cde1d7851
BLAKE2b-256 4cacadef2299405df26dcb860cd2defcbbe0c8ed604f364bd5590b66fb3c36a5

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd67802b4a4d7ea884d0c5d92e0203fe19c4649dfab9817ad0e7a37b4b67724d
MD5 06aea3f1585c7351e1d863382c890561
BLAKE2b-256 6730d89e4b62bc0036bc5077a1c1ffdbbacdb656c0bf4f8631055113887f6df2

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7288cdbe4e80fc7de3e4b12077d965d81b24e9bb6d7dd26a94d3acf974699f67
MD5 421e0c7e2e2d54137440f5636a2a09ff
BLAKE2b-256 9a32ebbfce701eeacbaa044faf8e0b2704601e2d9d7bee98123bdfc802cc5200

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 261c136d6a777d797fa51c585b40710b9c2f43a6508e72b4e106a67db863690e
MD5 3040ddb1b627777aaa97e34f7249a0eb
BLAKE2b-256 2714d089c07dbba9d807f1a3f995b3cfa3ef5d87273c097663022f2538f2a60c

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 daa89c2cdb941baaf5b21ddfc396faa0a529c7320600ae9415d01c02929c4abb
MD5 914c1bcbb59396e2437ae97fa9df8bd6
BLAKE2b-256 82714dbfe05fcbb56d379a45ed840e962f0ea3a9d885b1f6d1c67ecc69c9d817

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab666613ee2fa8b7d325d83be863dab8814336e17784e2898ed27d23baecd28b
MD5 d9d06b7a02824b4543d192a91872abf7
BLAKE2b-256 744d46f9bdbd48cbe6e5c0def734c9190ce1245298a78e789c13e7f326ce2153

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b03a2ec3557f56186a21baba571f8cc4ed641cd0c47c65af8ca4e6c7fe1dd833
MD5 7f804ed1870ad53c0e6a67d04c7294da
BLAKE2b-256 dc5ecc47fdd03265384839a5368a9ea0087987851beb177661ccd5fe09a786c8

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 870d273d9e0b487210d913836fd5f92c2476be22b99b01a931349a427b801632
MD5 9d7aedbf06b1226191b5f27a685f45f7
BLAKE2b-256 231cdb6385b58bd1aac3d90ee725d0c801965f36c067ddaf07a0aaf6df266abb

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 662908d7b48ce17af8d65efd0f529916ab67ee740937faacd373904fa064d78c
MD5 a06e4fe6e2c0aac6d55808b0dcbda7b2
BLAKE2b-256 eec2c6ca571ef4f4e187ace88e60de40c3c88028bfe0e8a3308f401f08602f3e

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp36-cp36m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3211666472f24d4f5b2284d6fdc1991c33d588c7fd171e1c952353f8033b16a9
MD5 1b2b2c26e83a341e2752d89861343102
BLAKE2b-256 b8cb5625330f207e6d92dd6c64217104a7510749be5de28ad650db891dc216dc

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp36-cp36m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp36-cp36m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59af79b4627adaa5f3d2d8781d3b77df527a56f079774873d9b4705a8c92f009
MD5 351300255afa3b030ff2c3a657f8fe1b
BLAKE2b-256 da97718af9baf626ac4e9fd5a5aeed3313a8b15b181162dfcfade99c330bffcf

See more details on using hashes here.

File details

Details for the file stringzilla-0.1.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stringzilla-0.1.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ab996a11f0a1abf0865c73393d1fef88aae08bbc060f131525d3661b904195c
MD5 c520a63599c49ba72f0411685782427f
BLAKE2b-256 cc4845b9684014bf4eb5796ee38052b8b9e6511fb17860f46538e77115705c46

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