Skip to main content

NOTE: json-stream-rs-tokenizer is now automatically used by json-stream, so unless you find a bug, you can ignore this package's existence!

json-stream-rs-tokenizer

CI build badge CI test badge PyPI package and version badge Supported Python versions badge

A faster tokenizer for the json-stream Python library.

It's actually just json-stream's own tokenizer (itself adapted from the NAYA project) ported to Rust almost verbatim and made available as a Python module using PyO3.

On my machine, it speeds up parsing by a factor of 4–10, depending on the nature of the data.

Installation

Implicit

Starting at its 2.0 release, json-stream depends on and uses json-stream-rs-tokenizer by default, so you don't need to install it explicitly anymore.

Explicit

If you use an older json-stream version (which you have no reason to do) or need to install json-stream-rs-tokenizer explicitly for another reason, you can do:

pip install json-stream-rs-tokenizer

The library will be installed as a prebuilt wheel if one is available for your platform. Otherwise, pip will try to build it from the source distribution, which requires a Rust toolchain to be installed and available to succeed.

Note that if the build from source fails, the package installation will be considered successfully completed anyway, but RustTokenizer (see below) won't be available for import. This is so that packages (specifically, json-stream) can depend on the library but fall back to their own implementation if neither a prebuilt wheel is available nor the build succeeds.

You can increase the installation command's verbosity with -v (repeated for even more information, e.g. -vv) to see error messages when the build from source fails.

Note that if the Rust library is compiled in debug mode, it will run slower than the pure-Python tokenizer. The setuptools configuration should make sure this doesn't happen even when installing in development mode, but when in doubt, run installation commands with -v to see the Rust compilation commands and verify that they used --release.

Usage

Implicit

As described above, json-stream-rs-tokenizer is now used by json-stream by default, so you don't have to do anything special to use it. json-stream will fall back to its pure-Python tokenizer when json-stream-rs-tokenizer was not successfully installed, however.

Explicit

For older versions of json-stream, or if you want to ensure the Rust tokenizer is used no matter what, simply pass this package's RustTokenizer as the tokenizer argument to json-stream's load or visit:

from io import StringIO
from json_stream import load
from json_stream_rs_tokenizer import RustTokenizer

json_buf = StringIO('{ "a": [1,2,3,4], "b": [5,6,7] }')

# uses the Rust tokenizer to load JSON:
d = load(json_buf, tokenizer=RustTokenizer)

for k, l in d.items():
  print(f"{k}: {' '.join(str(n) for n in l)}")

Note that the import of RustTokenizer will fail if the Rust extension is not available (i.e., when no prebuilt wheels were available and the installation from the source distribution failed).

Limitations

  • For PyPy, the speedup is only 1.0-1.5x (much lower than that for CPython). This has yet to be investigated.
  • In builds that don't support PyO3's num-bigint extension (currently only PyPy builds and manual ones against Python's limited C API (Py_LIMITED_API)), conversion of large integers is performed in Python rather than in Rust, at a very small runtime cost.

Benchmarks

The package comes with a script for rudimentary benchmarks on randomly generated JSON data. To run it, you'll need to install the optional benchmark dependencies:

pip install 'json-stream-rs-tokenizer[benchmark]'

You can then run the benchmark as follows:

python -m json_stream_rs_tokenizer.benchmark

Run it with --help to see more information.

Tests

To run the tests, you'll need to install the optional test dependencies:

pip install 'json-stream-rs-tokenizer[test]'

As the test dependencies depend on the benchmark dependencies but the feature enabling such "recursive optional dependencies" was only introduced in Pip 21.3, you'll need a version of Pip at least as recent as that. For older versions, just install the test dependencies manually.

License

The project's code itself is provided under the MIT license. Refer to the LICENSE file for details. The library binaries shipped in Python wheels have 3rd party dependencies compiled in under different, but similarly permissive licenses. Refer to LICENSES-RUST-DEPS.html (dependency crates) and LICENSES-RUST.html (Rust itself, stdlib etc.) for more information.

Changelog

Refer to the CHANGELOG.md file.

Download files

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

Source Distribution

json_stream_rs_tokenizer-0.5.2.post1.tar.gz (55.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-win_amd64.whl (751.6 kB view details)

Uploaded PyPyWindows x86-64

json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (342.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (333.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-win_amd64.whl (771.2 kB view details)

Uploaded CPython 3.14Windows x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_x86_64.whl (345.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_aarch64.whl (335.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_11_0_arm64.whl (304.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_10_15_x86_64.whl (307.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-win_amd64.whl (749.7 kB view details)

Uploaded CPython 3.13Windows x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_x86_64.whl (345.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_aarch64.whl (336.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_11_0_arm64.whl (304.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_10_13_x86_64.whl (308.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-win_amd64.whl (750.6 kB view details)

Uploaded CPython 3.12Windows x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_x86_64.whl (346.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_aarch64.whl (337.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_11_0_arm64.whl (304.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_10_13_x86_64.whl (309.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-win_amd64.whl (752.2 kB view details)

Uploaded CPython 3.11Windows x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_x86_64.whl (347.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_aarch64.whl (339.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_11_0_arm64.whl (306.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_10_12_x86_64.whl (310.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-win_amd64.whl (751.7 kB view details)

Uploaded CPython 3.10Windows x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_x86_64.whl (347.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_aarch64.whl (339.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_11_0_arm64.whl (306.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_10_12_x86_64.whl (310.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-win_amd64.whl (754.2 kB view details)

Uploaded CPython 3.9Windows x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_x86_64.whl (348.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_aarch64.whl (341.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_11_0_arm64.whl (309.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_10_12_x86_64.whl (313.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-win_amd64.whl (752.3 kB view details)

Uploaded CPython 3.8Windows x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_x86_64.whl (348.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_aarch64.whl (341.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_11_0_arm64.whl (308.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_10_12_x86_64.whl (312.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1.tar.gz.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1.tar.gz
Algorithm Hash digest
SHA256 7edaf7b00ce564f8840c752866d4dab04623e8fb09324e8f56ea8eacfce5959c
MD5 17bc518eff84f2c6134e8b56008b3813
BLAKE2b-256 7322dcf50b82f2339245b5201c322d9daf62951cd40f4443722a77ce66bcae2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1.tar.gz:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 99c2a0ee1a50ccf313e300de8d295cecd973adbd4127b22358c53b7333b12a82
MD5 2ef0e2306a8fac441dfa224f48b4bba8
BLAKE2b-256 39e2ac7ee955af24189ccb06708d52fd7b43366f6666f8952d6d0ad566316152

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5898fca811b8280a5071caefa6db25d62b43943a7fd35b8475db4970a6b1b190
MD5 0fdea3a9d083fc38e6f767f2f10b0158
BLAKE2b-256 864a4cf66bf68752bb44ea093a4afe96eea2cee1ee3448f8acc3ba9f41963a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96e055242234abd9f508aa548e1a9f741df318e24c83d89a328cef5ccc3576b2
MD5 ff656f5eebf4414a3305e4aebd5fc1e1
BLAKE2b-256 d02d742c0acad13e226873c82eef0b2aac631bf7a60c7a6c068639fe65622f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db69eebd024a36ddc2454f0ef68f062735723fb46c29f2bcee1f306fbaf11538
MD5 cb7a3077e2353467e824fa00a0fb36d5
BLAKE2b-256 ab1fa16d0ac96fbe00142056889a13ffbfcf6905fd715b4c34aad1efc4b9bde2

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8ff634d99b1b9a834255e86a7107c69bf95a660e4b24f66b112e93b202113e50
MD5 8135fe680a218be256e01b664b9b50c3
BLAKE2b-256 8e0b824a6bf7af394e6584d7693bb0bafb496edf0ba81dc4a276e326f78ad871

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 141f719a1bbf4b9e747dc1439329ebe69ce8ce8c8fa4ddf57dbfe109bc91223e
MD5 0f68728d4971d9db37f7a02e10f5e08a
BLAKE2b-256 5df35e5796076581f8b5577b6436f5a776e46fd4b1917dd6dbcda95879c6bf31

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42babfeea6d360f1cdcd9eb4ed540d31951af6f8426f43d24334971dc1bad0c7
MD5 ab3f894b5643fb7f13c4dd6c6b60f699
BLAKE2b-256 96e3a46110ee2eac1f6ff7a65de98a1f528c470692112b41808b982887d5488c

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2df94deda0f530861651b729eda1d439703988cac2425f8bba1eb3269aac777b
MD5 b6fff29afe8ec310995f8940b287272f
BLAKE2b-256 68e1a7af6929c33b07d6c76cecdfeb6fb2c17142de4b7dc1a372e7a8d5e13f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c0b7ae7c17eed4cc7bd4fbf7b7e9f57aa39fee6f51339abb939126423a710fc
MD5 7e58424bb1810ca76f93b5a6403f846a
BLAKE2b-256 4dfe15499598cd35db3d05898069dba11dc65ffde5c6b0f331a2090916853c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 be234779cedffccb7e1f197c1bd0805434fbd1d97250a42afab7e00687192594
MD5 c6444360fac16d632e07c2dc2666ace5
BLAKE2b-256 768f13a13e432947beff51965f500033d0ed8ac6d7fdad9d851ced0e571f0898

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d485382806d46aed0298dbf405c5e6cd4c275dff24c4c70d2c5b116696cd64f
MD5 e7a5b364c62b461feb870463307db9a6
BLAKE2b-256 ca02d6d20fca5064772f2107c43ec3e69fd04d084b236858c4ce50312b3e7c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42db3ad1728eb964d388ce3b9164a305e5bd2234b00ba9e2cc7aff54b68950ec
MD5 10ba237e11f696f445e09513aea84318
BLAKE2b-256 05689e773dea8313710da7306c12e5e8b05fc5857d4206dd188624678a6c34f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24f26a8467a87e171fc743e571365157158a24497bf876d7ae07c5ef90aff5eb
MD5 ee42ea6926a809c2ab1630c809227155
BLAKE2b-256 164c2f40e0fea8396efa6e802d1c8a2522c4320af243c7a2932b7eca745d051e

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0ced64f3f3e1592bc68d11f030e831644c70682cc3a1a5789c662e92f54fc7c
MD5 7d7d0d7453fa87d01e8b5a15813e4d23
BLAKE2b-256 484b79c8ade4aded72cfa831437baec1b1df9c92e3b86a2d4e1cefba486bb3c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 54f2adde30ea3329e51894a311586b60428eeabbd9ef302104a218c20ca96714
MD5 9e4ea46a9194a2e93922ff82f9d2dbc2
BLAKE2b-256 d6c252ab56ff5b1be6c8202753b60224b89c890da70accc3c953e70ed6f337fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 38c857427f6f83cfadefc06e0d71c6819789e174d2b792ab64569acd7e188d20
MD5 dbb7f50de01b5db22e821e7206511d0a
BLAKE2b-256 5a4729ae0dee1f0002adf6c38252d1cfb374c499aa652a59aed7d341b00f5441

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4aa5985ac6981e46a0d8c97c088ef70091791f017b7d1f7c7da095a315501760
MD5 4c29662d01d37f9935f19579d58ee764
BLAKE2b-256 5fd3ec425d16b88ad63b099aadfcddc3445eb9abad4bca2ecd242fe042d6572c

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28213a3130f3139cfdb31a2a0d5d15fac36395b1df17dcbbaf30c2ecb933993e
MD5 74a9e434d22da5fd19e52f2055567e91
BLAKE2b-256 2e725c60b89bd826ecfb4892e28f339760d14144845659c5ee175e7d5871c952

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ceb3eaccc06971c55c24e4905b794b713754f95f99a220c59275e69bb88a5e0
MD5 a07b1e3e0031515dedca69cf16ca8fb2
BLAKE2b-256 2a54ce8e3de5619a7a51c9af86915064789482e494cb10b023d86ffdd922ec8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51628f372930862ed24c09ae8f975dbff156619c83827e83d236e48c346beb0e
MD5 2edc5f577c3021432246d5b3e3190bd6
BLAKE2b-256 e5d3932a4c51d226a881ea616a20d70a5b0a3b3ca7de06938ef9e7c7ce554b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 268ba39de6d6e5e449001087f87b3f3a8d5b66641fe70e72775f22caa21e7fa2
MD5 fb4dbc2b36cc80f9597466550b394503
BLAKE2b-256 59b7339d97c5a255e83d8830fca7fa13f74ad92ed52acbd9b270946091d373cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4f165497a321408f7ebb281c057ec7125f644aee1ac0479388c35a4a55c0062
MD5 e9f4df19490c69deed881e5485485da7
BLAKE2b-256 60a8d5251dcc9b7f8d71c1b684118d2b5e53ba6359c801d5434b5e64c864e5cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfdf2cbd04e8716eb5b8d229cc22c84bd1183aadb077710e747aaf80c6a1d290
MD5 3d854781dcec46e0aa73c1a857b62d63
BLAKE2b-256 a20530dd80a44932afaa34706021321ec562b2dea8415c44b2eac796be741cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 678f58a83cbe7f4133874220e76f92cef02b29e597c57067d6a7b88933fcc33c
MD5 0826aaea7a14aba991480efb7d8cace0
BLAKE2b-256 d5b2a3b7fb9b96278b9d021b904d998999812eaff5559c2b4956531d33d15e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef550120ca79b5dbe88a9a140400ab8de188eae1e370bcb24fce305d07d15e10
MD5 c4fdb2cb9e396be85c1b4a81f6e0717d
BLAKE2b-256 d3fc9ca497d85f8a85e60ed39eea3af57be75a21ba92afe84512c66a9cd10dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9bcacf6f3466e69f9580bbf278f0a6cf506c1e4da4a0044fbfb8addf7a15d09c
MD5 f4880aa95e201cd2c1df0b05ce2c2f00
BLAKE2b-256 2df7aca3d5e1e488c1b1633100a51c16445502deac7ae91f5191ed6fa6c43eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64f73e83938927fd7f63baad1e3b93719c90aee596db3d048b80ee568d6657a3
MD5 d4678a5256efca58d0322c3980074d67
BLAKE2b-256 261a7cccfcb4cab48c1a5f005faf813093fdd0e73bb89d06eb0c19896a16ca67

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e42c7fc09a252c34d074770a27a34d64557753ef5c38d1d8ab56f7886cab043
MD5 9f056d0144fe26e458a17b0049f6e910
BLAKE2b-256 9ed8152000fc5d3e2b7a6b0a907b56602d38e5bca0c63d1529cb97e9bffe2651

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb5f1b361e791b77e2bc54fb7576d87b088d91945649b959b7664e481028688
MD5 cd75ff1a69a93d43cd7cf958fa14e85c
BLAKE2b-256 88a470e3d8bb532097d8401fa92a06c6fcb4b5416c66981f4a339b180ff0d84d

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d9a36442de665caac83bcf9d452b78d5d50418d9e6d8b7b41fb4bb88759c4f4
MD5 6e2de0a6fc524c35f69e25e7a18c1f06
BLAKE2b-256 f8a98ef1f459de31402cba29390f4686eec23777dcea5440cb5bb2205512eb8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a98096e97b3569515e3cc0f3a50bf4cb2cac544101a46b48075d8d9bcb62d508
MD5 3a0bbbba55e22e8b385096d4da4e93ad
BLAKE2b-256 dedb16f01dc17355bbf34d22df61529f061681b704b9de43f90375351ab14ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbf400a62889c0bc8dc11e726482267325ce1a758c6771d60df5fd8a205eeff8
MD5 e42afbee0a35b5a1b0967f77a589222f
BLAKE2b-256 261488180847f5f3389190bcefb8ffa11ea62c727b7f18d83ce8e6ce1ae93792

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62dcea215c8a645f05ec7013a4600831c561c3d24ab42972dc7beba0ab15112c
MD5 5bbb672b2ae657eebd0ae631bd1b11f3
BLAKE2b-256 ed8bfd36823404a76bff4febdbbaad5f80e93855d2155bec7e99237ec6ea9b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74019c8e109f11b5ec4d5e9baad9f7f12bb1ab7f6852b07645b85bf89feef38a
MD5 a9ddabfb30f1cab01aa7f707779b7655
BLAKE2b-256 702c1a33ace14cf6a3cb5d909b805b7eb7573dc4d17d74348a7a96e48be8fdeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29a95359778205b99de21716a5ffa5de0ac9e118e38d0623557cdf9b98a6e6e5
MD5 a07b4fb6bd1f6eaae4516c191c736323
BLAKE2b-256 e5088989c50740c7737e66e0bc8d50da3be30ab3ba7601927d4733b47d4d2d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3dba14776c9707fc34a89df716ef9f147b341649df7c10ec16ef8c86c30f4bc8
MD5 e28dba8474329a0a592300009a85af70
BLAKE2b-256 25f276711938d0428ecc8338086c25cbb04a416bb8ce4eedda250545eadfa4ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-win_amd64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd90484b9e1157738a99e0944d078254e36c397ccf4707be05d98f413386ef55
MD5 e452210ba5553359aa364bcaa5657826
BLAKE2b-256 0ae0a604566f812c57f71f1ab8dc519342e9a86b02e500ceec10a9c709c9532e

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2374ac291afa9edd52566e85bfa47afd0b089261490cab98fe50d72799a99523
MD5 a725faad55f41b0cf09096eba4f34478
BLAKE2b-256 b8a6b72f24dc17ce3b1cf1b2952535d1bdd9fef1a3f4baf9cec10d105a47350b

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86ceeed239af0e4382e23a17d49f6dcfc01f182d6e028208f4fa3f56c71905b2
MD5 2032922674e1caa0bf59ba7539a6e61c
BLAKE2b-256 f3f465ba964bc36d9c96d0e2efaf3abf5f49938a4a511a34f85967db7ab57b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba6b0f618d591ad39669e1683e1a2bd68bf7d321341729d347d7f0a10ee1969c
MD5 4d97ff1e594382687a3e3d24a6868e0c
BLAKE2b-256 7ffe0f2e5768049b221cb0e7a57da0106f9b609b4d0676678ef3ed4f02ff270a

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.post1-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: build.yml on smheidrich/py-json-stream-rs-tokenizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.5.3

41 files

This release

0.5.2.post1 This release

41 files

0.5.2

41 files

0.5.1

41 files

0.5.0

48 files

0.4.32

47 files

0.4.31

47 files

0.4.30

81 files

0.4.29

81 files

0.4.28

81 files

0.4.27

77 files

0.4.26

68 files

0.4.25

55 files

0.4.24

55 files

0.4.23

55 files

0.4.22

55 files

0.4.21

55 files

0.4.20

55 files

0.4.19

55 files

0.4.18

42 files

0.4.17

55 files

0.4.16

42 files

0.4.15

42 files

0.4.14

42 files

0.4.13

42 files

0.4.12

42 files

0.4.11

42 files

0.4.10

42 files

0.4.9

42 files

0.4.8

42 files

0.4.7

42 files

0.4.6

42 files

0.4.5

42 files

0.4.4

38 files

0.4.3

38 files

0.4.2

38 files

0.4.1

38 files

0.4.0

38 files

0.3.2

17 files

0.3.1

17 files

0.3.0

17 files

0.2.6

23 files

0.2.5

15 files

0.2.1

15 files

0.2.0

15 files

0.1.6

15 files

0.1.5

15 files

0.1.4

15 files

0.1.2

15 files

0.1.1

15 files

0.1.0

15 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page