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.tar.gz (35.8 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-pp311-pypy311_pp73-win_amd64.whl (726.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (277.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (280.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: json_stream_rs_tokenizer-0.5.2.tar.gz
  • Upload date:
  • Size: 35.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2.tar.gz
Algorithm Hash digest
SHA256 5b230415e3f244e51221d6017022d7c5d83418cd0345f24b6d34e7c9b86fbac1
MD5 fea8eab9e6566248526f4d30b4c9ea33
BLAKE2b-256 c04afb352b6464ef7205d5b1035a43616527245bd6723f291a1cbcbe89014d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2.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-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 07234e00a74f92e7c701191d055b90d66fc23725c73c1c75b94da23c2feb1c67
MD5 dd4caed88ab8ef843b9eb274ee0239c7
BLAKE2b-256 f63fae27ca8bfee984438225d070e908bf4fa1aeac2574f818c5b4a1677d9219

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02c41f99805d12770077b32e6cb3ca7c36d6f1179bef0da612906db6bc929a1b
MD5 8d029a346343b7f5ad759681c8486955
BLAKE2b-256 c7c5d20e81aa5bdd85e4881c6595012a1e2c34fd603feb5fa8a750f5c2c2a376

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 896616ab1e0557f110913a23c50bed06c01423d7ed2bfc0ec38f931b4d62a496
MD5 866acf29de084d0ea62ab57e1589032b
BLAKE2b-256 b99e4f8be4443ddab65fe94ef620d0f1c3b2952ed073a024a701829953af600c

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e82cced2c577d8ed6e46782202db0be087e975939e2f9334f2329dba4a62632e
MD5 c519f5817fa38876a8045f822dc2a279
BLAKE2b-256 69a0256475750a6695c3df0dd25e88daa1d6828d683f11f8da2130ba24198927

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cc8b41daa761b6cdf85e547a54a3783e726fbb6688dfbb42b940fbb3cf84a56c
MD5 0fb2b2b1db5f0ccf2c8ba5087496a486
BLAKE2b-256 5f3a69b5a8dc3e8f830aef0ebd50fff2e1dd8077336b002d9045a0e85be11aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ca2f6dd30eabd4af8192240af10cd73998fd89842f52d9cd5d9bde539aac8a51
MD5 4f39e2d0b2861ce67136dc7477d406f8
BLAKE2b-256 955b69819ddd23f978fbfa8a60d8a8b0d408e0f3a92efdb92cbe672652f3b087

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 196c42618dfdca6d2a3ac8a3e0a9b7ace00c69b0fd0a7e2e8561541c571b6ad1
MD5 0275bc996d85cf0b28e9694187f9a406
BLAKE2b-256 3366a876545ab150013fec80b45ee509477e74fc5f01cad4a6a60085c09a6bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25fa7fc6b5c964fd9296571f4a0ba79c299c0fb66f00943bf69d56488cb95d37
MD5 bf15a6f93a745f4ecf0cdc270441c685
BLAKE2b-256 afa01cb8a173195793ef3216ed94f923f149dfb11b530c130fc9091de178cd85

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 134bf9d365fddf8fb9e3e1279676bcad3f9244eb0942ba48b69e04d6b17d2f01
MD5 446e8338f10542a74c4f74123ddc9986
BLAKE2b-256 dc380d583ce648fc31aae02fe29995e1cfc06181553b9ec35686319336762815

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 68b6678545caa1970c6945fff5f8c684e689bb4b7e9232d4c50607c7ea38415f
MD5 acc2d173088cadbd372202a96cc663a1
BLAKE2b-256 95e70fb6c79a94abbe9692007dee2f7ed9ee65cedce550ebc1a404bd18c8ae9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 78a537f5a7a98a686c53fbe4840d754f744887ccb33908c1f62ef985e95b1ae9
MD5 ea65ea66d48e3dce6001f0014dcd1919
BLAKE2b-256 ceaf45e8909934af9e0f360b0f9eee034d96f8a11712834f693ab1b3a16de4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 906972a74c6f680431f459595ffe9b640058f996d444370746480d15995c71c5
MD5 68c56552f369d3a6fec9980907b22a0f
BLAKE2b-256 b477e2928aee4a80d08ca64950017e6ff459d0fea5285bdb0a60b446ddcfdbd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4023f8d148010ef3fdedb4de593b3b89f809fb51485b36b772d95f10bcb215fa
MD5 af2ce6d72b1222d2118ccbbb45a77eb7
BLAKE2b-256 f6d369fcab4a51936f6d2d91d7e084db75bd5332aa41d0b571a15586f4a5e0d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0371316bc295f80109aaa9e670c41abd4c2ff9d6f160fc5bb9b5a3fa07934df5
MD5 b0463269b7e0503ea9065190a77669b7
BLAKE2b-256 9d3bea08793755ff50910b1a44945780d73bf12f8194475d390047af421e7119

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a956860a801523099ada73695bc010e82ac06acbc1544a800db53da52ab2e239
MD5 7075780cbbdb835ee37ddb6dea533511
BLAKE2b-256 684d123a49a479686723c0f0026b6c34af46325ae6bbcb3274f7481db23e6a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 663d921fafb5925ddc909af9dbc0a9a87271b75ce8f9036c2698b98ae45026e4
MD5 2b36a6e95f1728544d97a7e21a4c6300
BLAKE2b-256 e4a61ee2eff453a9e9bc989b45766f01e2dcf6f688a0132a9a5f1dbd5e869ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76b793cc97c1d21da6f14438aa26fdffa7ec858cfe12c2233c08e29a56948d2e
MD5 3fbe532de912ceb5cbc68d9a0c035051
BLAKE2b-256 396d110ccebcaae151d74701e31cd53b74f1e5f68cb489a9006d9eb971b1b447

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec63725055924445843348c1158da884e0e3c9c959208c1483c961292df8d1c0
MD5 8330dd425f6e97bf02cc21ddb86c8e38
BLAKE2b-256 272fcf24867b106e4f8d776da6c82fe85a121e70df535391b4ddd1c5d58cba64

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a46fdcdb228438683b59d331497a2f2e285b628f29e67d7c60c34faf068dbed
MD5 9e7f1a6c32b62aad8f7c4cef07247714
BLAKE2b-256 d81d14e8575d549cc1f52e2a843d99bd4fcb09f95eb97fcffcb7f291f4fb5d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8aed6d1a0121b9e63f46ead726fed327d902da75e87424a82946969942bfb83d
MD5 feaafbd9c0df74a374d32ba7b256d88f
BLAKE2b-256 e94ccc67d27ad858882bb28fc3d9f3331c5700711cef0c289353569a5f7eb744

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af4b50998daf03ef94d0e114de62168f914f5bc513678c032ae4822619aac0d5
MD5 0bf1cdbb6566f9df130472218bbb9509
BLAKE2b-256 54d17f3163ef59e1de751dbf4d16d3686ac7c3cc7d4f5a3b74cb1be4f1c8e917

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ca16ff22f6dfd3b8af4d87333c1dd438495d9abd6d2c118f70388bb5a77b6df
MD5 e14d858d9f4f2e93d9122ceedb1a688b
BLAKE2b-256 564c2f3560b2eb23ef8a375e57cd1dc3dd8af919ed943d4fb7cdac24dba6494c

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a24d585bad5c00f622a8202b3f914a6048be97fedf9a883294966586020c23c8
MD5 babf07d780d3af4241a9980ea7ce4922
BLAKE2b-256 071fc613943252563ca389643847a3bb422ce3135506a772f5b47c24f1f49c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c77d4b9ae2bb67abe4515d9f8c4ca4fb9a4b9f606314ed145f31c64cbf591f7f
MD5 e835ecce607f14f5a41498ce8fdad24f
BLAKE2b-256 3a922e465fe20767d4408ff2df2da21c94c6f6cdbe53c8a69026aa88709389dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3479bfef91cf7e38dd7e880a00715697363c82170345818782f014cf2afa99c
MD5 3afc3352b608e6e829d3b96f71885a70
BLAKE2b-256 16c3976785b9ff7c96aed19f2ed018b3c91467a18c13348ff77e4bdd21daffdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5dcfe7e1a84e44f902febd715963dc520792db0b833dafff37d342799da08c35
MD5 ef21f6f8caf55c451b2633ceb4405fc7
BLAKE2b-256 4764e8c8440f7f2ba20e6a66c04bd57b0eff20d56ccbc5f10d29f29a158e37c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6155cb9e9467581b1680bfdc6956415fd62b4b1b8c372e522617ba16acafd34
MD5 4687d2a3cc671da0831ce7558d10886c
BLAKE2b-256 e7127ba3ab7bc7ec6a561fda93b092f440adbecfe451c1b624254e15fadb090a

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b12f38e5a4ec85378b7d5f1654ca8a76f74277b2e1b9d847b215cfd743933412
MD5 004e31c50ffe6260806e47fe5e5a3785
BLAKE2b-256 09149a129c3810c85aa747fddb47e3b7e8b6aab3718d0565aaf6c5c1414109c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6f4bfb8aaabcd1295769e326b1ffee93ac6872b35a4d5434e94ef1918db41c3
MD5 575d9600a5ae3f782b78f1e2fd844324
BLAKE2b-256 65c46120a37935655f6a0ba5b8908e3883181b5326dfb174ff9f0e0d234fbbcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f3c1e6fa67bde81553b5d89b70d9ef921fc1dcfef9b05530ee3b62ec6695606
MD5 7f15dee9e443d39e64c5a92856d7ad70
BLAKE2b-256 daa330f6f5ec520e5ade40b356e03e0c3ccaaec16352456a74fa908c44782911

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 229aa6730da7dbe665632e388bea569385659100e992026a4780717bacdb20ba
MD5 55f9167f7c2e3a667da0bd3a828de2a1
BLAKE2b-256 12ad5674eabca51234a629366a02362e1e15849d22b12035601cee3eb1e277c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c587143f423e798156f1a31463aefe73d13ce9501024113c2643940def51387
MD5 4f4695babffecb29b96a89ed3ae4e006
BLAKE2b-256 917a623cc88b60b83c9b825be0436517aaaa9de141742267999f379f204897ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3e36f5baa5302d21aeab34aa53774848af21ba91c99ac42f35162dc0c9799aa
MD5 363d71c9c52b42f6ad0d0007928dfd72
BLAKE2b-256 03ac8fd17d3d2c057124137cde89f7eff61f033bd2484cd11435793aa664c91d

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 861c0bce424d41058ca584112b73dc1a2cb46b21d0e83157761c85d20b6554f5
MD5 e003d9b6c9c796d0e8bf40a82341f7ef
BLAKE2b-256 7a6db2653aed2a0d4cc68fef7e80a81afcf8aadae7dfaac1d1a77a42aab63509

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16c7b636ab1e6244bd1ad8f76e058f979a32ea7214d07f93a1557bc71af22eee
MD5 c5eb0d3d615056a85938b97fe3be2171
BLAKE2b-256 3fd10bd2ae6efe2a4ec00831a83fb5bacee86a1edded342a66823a657ab6e00e

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f7c9fea405ee76045b4bef3ed6b778b870a334d98cd9c59acfc980a2c077d2c6
MD5 a777339879bd3977d3d242df7327acb6
BLAKE2b-256 547283e682d48b095ca329d47a57493623d24c79fca2f58a3dc3f67bc41fd277

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb264061527a30ae82fcb88e81154388546aa8e350550953e27809c32ee018f4
MD5 a1ff12a5f90b9002bf5fceaaa06bb1e8
BLAKE2b-256 525ee23e4175cbf66d43a8b2779ef625b77bfc61a9d82d4cda545393829112d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 097d0a08d464962afa553622ac4eb2ed28f1879c41ec9f09f15f78eb2d1922ca
MD5 31b37b472c12c1a4ccabab43314abbb6
BLAKE2b-256 4cc0f0856e20dfe788d4f65c4c923c4b59f520f7463d92beea164ea2788e4c19

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7160b6b7e2974328158aa3e2becb953f55b34593eaf00dd5bba628327fafd47a
MD5 e818edb76bad803a076566f48f6765b1
BLAKE2b-256 c40d8ac088c1bc9d5b5c94f46bb166520a5b8da5e9f2f9d6f8314395add246da

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5105ce413390212643440d7239970615ba26995c1412ed0d70f39b0828b83e8f
MD5 8f70b717482eb8f6332ad17338877e94
BLAKE2b-256 89255207c93b6102c5b8f46b2ed180fe8f59229833a70c129001fc2e7e5eacca

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_stream_rs_tokenizer-0.5.2-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

0.5.2.post1

41 files

This release

0.5.2 This release

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