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.3.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.3-pp311-pypy311_pp73-win_amd64.whl (760.8 kB view details)

Uploaded PyPyWindows x86-64

json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (351.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (342.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (311.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (314.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

json_stream_rs_tokenizer-0.5.3-cp314-cp314-win_amd64.whl (780.3 kB view details)

Uploaded CPython 3.14Windows x86-64

json_stream_rs_tokenizer-0.5.3-cp314-cp314-manylinux_2_28_x86_64.whl (354.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-cp314-cp314-manylinux_2_28_aarch64.whl (345.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (313.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-cp314-cp314-macosx_10_15_x86_64.whl (317.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

json_stream_rs_tokenizer-0.5.3-cp313-cp313-win_amd64.whl (758.9 kB view details)

Uploaded CPython 3.13Windows x86-64

json_stream_rs_tokenizer-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl (354.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl (345.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (314.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl (317.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

json_stream_rs_tokenizer-0.5.3-cp312-cp312-win_amd64.whl (759.7 kB view details)

Uploaded CPython 3.12Windows x86-64

json_stream_rs_tokenizer-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl (355.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl (346.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (314.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl (318.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

json_stream_rs_tokenizer-0.5.3-cp311-cp311-win_amd64.whl (761.4 kB view details)

Uploaded CPython 3.11Windows x86-64

json_stream_rs_tokenizer-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl (356.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl (348.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (316.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl (319.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

json_stream_rs_tokenizer-0.5.3-cp310-cp310-win_amd64.whl (760.9 kB view details)

Uploaded CPython 3.10Windows x86-64

json_stream_rs_tokenizer-0.5.3-cp310-cp310-manylinux_2_28_x86_64.whl (357.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-cp310-cp310-manylinux_2_28_aarch64.whl (349.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-cp310-cp310-macosx_11_0_arm64.whl (315.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl (319.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

json_stream_rs_tokenizer-0.5.3-cp39-cp39-win_amd64.whl (763.4 kB view details)

Uploaded CPython 3.9Windows x86-64

json_stream_rs_tokenizer-0.5.3-cp39-cp39-manylinux_2_28_x86_64.whl (358.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-cp39-cp39-manylinux_2_28_aarch64.whl (350.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-cp39-cp39-macosx_11_0_arm64.whl (318.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-cp39-cp39-macosx_10_12_x86_64.whl (322.4 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

json_stream_rs_tokenizer-0.5.3-cp38-cp38-win_amd64.whl (761.5 kB view details)

Uploaded CPython 3.8Windows x86-64

json_stream_rs_tokenizer-0.5.3-cp38-cp38-manylinux_2_28_x86_64.whl (358.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

json_stream_rs_tokenizer-0.5.3-cp38-cp38-manylinux_2_28_aarch64.whl (350.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

json_stream_rs_tokenizer-0.5.3-cp38-cp38-macosx_11_0_arm64.whl (318.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

json_stream_rs_tokenizer-0.5.3-cp38-cp38-macosx_10_12_x86_64.whl (321.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: json_stream_rs_tokenizer-0.5.3.tar.gz
  • Upload date:
  • Size: 55.9 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.3.tar.gz
Algorithm Hash digest
SHA256 88828b11ecd24692473728f237e19d6a48b20cb6472c64a029c734b6d616fbc4
MD5 799fac74ea5d61170c2a4892b29e3c66
BLAKE2b-256 1027ad8bc2bbf506a3b6fe2b5cf60d696713fff35622c005bf467ae97b4d1ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6217b91ba1e512c87962d7af038ad8a14c8d4c7b6e63453c58404b4be008d394
MD5 2eba30076e9a437b5b45743133d21021
BLAKE2b-256 da85ea2ae1dd8a54320b8027d0ce88fe7c06c622db686d27caf7fadd64c8a325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67595fe7a62a1fd1df480e6ae2c76005504e97442ba6d11a847c6ead702d2f62
MD5 76a4ca0878da5e3d63ff95fa7a025b97
BLAKE2b-256 f77b4f89593c79449d9b12837a15822047ef8a2985d40a460a64c5023c17cdc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7cbc2f39457dc51848eaf0d4d51d6bc473bab73645b8c2c56b933ac6ceb8723a
MD5 716a7a62a1f46caacfce244ce71914f8
BLAKE2b-256 7b4962fa4d0f451dc06ed62b594264481d620158086f2f5029425c74819ecf7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2950419eeb1d4329213ecd04d530a774dc0fd09fae710830386a63ca310a3438
MD5 501073cfeaccac71d5f0c7ae813d0f6b
BLAKE2b-256 64a576caa8abd6456dcfec86809f622a2b5667d197ef8352fa76f5da2fe956cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5b9d540af5eda1f37fd0e33eb97ddae4a3af5dad2660e3ed39c4584fa49ad54
MD5 31fad86fbbbe598727fa08e21cd488c7
BLAKE2b-256 356fb6287d6acf18d7aa42e383b7b3288487f8f5a964dfc8666b546559337bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e9b3344c2256311550ea3d3bb6bd465fb4c219a0aa8ceff3760491637234ade2
MD5 e3dbf1b7cb7235d9065d6084cf658644
BLAKE2b-256 b1d8d5ca18699a406e6394da96e7eae6f929277d8711bf42c58b93366e5e3b42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 032e0afdfed870f934d7a9a484499b9a703abbf19987a073ee97961a28bca928
MD5 7795aa78f1f5c9f9274e891428f12c92
BLAKE2b-256 0960a78b4aa9867cb930483f2b08f2d10696987f759f5fe296340d5145a8f5f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 238073b635c605acf20d4509072594366fc0bfa1aed331a5fb7d0c2877493d90
MD5 eaf9e614f6e1fce0ea52cd3f23be49b4
BLAKE2b-256 db20cdbf449ca4b68a26f8f0f6e143fbe5cc663cf2f29b17c7ae32732a226f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6724728c837fb748e82ad2282d2bc66a7ea8db8488f944d9116d798a57573db4
MD5 f05bfd2d5f58965161a9c733fb952026
BLAKE2b-256 03829db87b9b72f6b90d43210abfa6ea56f83fc8247fcf1bf25a1318a8e7014e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 98930de7bdedc7af27b68b71c69bab0db06e66388a93c349ea4f182d4170b67d
MD5 18643264c3d2587e0669d0c768de4e62
BLAKE2b-256 687fdce04cc76e1fcc75345a839907ba48aba737b41f04667ba6d20e04bd6760

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 110b395e0aa755047558b0973c9cfae07ae80bf155f9b921b7efda12d2aa6e70
MD5 a3894b33a5be3a8838c74497015401db
BLAKE2b-256 7eeb3788ee2283dadfcc556ae9db0ac3cd375e229580cd88ccb0a7a9cf8ae795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e40aa97115f2c439b3b959186dd498acb704dfd6546e4d91fc062441f9aa68b
MD5 176e72fd9ca44bc50402d9c53c981ce4
BLAKE2b-256 a72fe82d5c1b68bbba0e03c7a7c4095ceb1ec6ac23c0a59d8ad8c3d4af866284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd9e31e1e04ecc9bf19d9f957c1e81febf40d54c5ea8e29564c93ca7e3faf48d
MD5 af1dcfef8f920f98c58dc5354aec2a65
BLAKE2b-256 37097c9150e6499eb45634d7d07dcbf3ed16d45f6787bce59fc268fa9b2df0a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07d3e52e34f2f28f902de429abe704fe74a86ee8ce6898f753a891c111fdea71
MD5 270d81dc45280e7eea530479bfe17dae
BLAKE2b-256 8c52ea65a2ce33339dca14f2041220d5011cc69a325cf9342ccaf27ebef90dd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc8b7112ca2db079233672d542c10216a5738e8761d81cacae3004b0997d45bc
MD5 89b84dff20e183077e1b5f4f3a0d8fff
BLAKE2b-256 4fccebe04086aef9fbf0b311460d6190a2cfa01680745760a4315f0e16831c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4dafda8120c2db1895c501fb4967d2a0eb741fc8994fb6769c9a2a6465e067a
MD5 d982aeaa3ada083706c76597f588c5ec
BLAKE2b-256 4e9f2e25ec78d1e8dbb903dfe898fcab5ffdb767394b21d15829eac1fe7c7334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 371f3bbb77b5c602721c165f9c822571b965b1bf45a8091dbfc481c08f43c1b1
MD5 b55552562d12a4be08cdf5d60d18a391
BLAKE2b-256 88f1ed4f29dd9969dada01ac40e222a587eed705b390d0f69b834ab7c1d19285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60b2a65de042a920e2a96d957959dd9c2863a6048854230dcc5b7ec5a790267e
MD5 f6d455cc83650712a884ce8ff055dd5c
BLAKE2b-256 d5bf0ed8865c0ebb231324a6f9583929217955c17da44a563283b7aae22d8299

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b9bcefd471e9d20b7bd4bb7698742828b2dd7d5f0eaabb34812adcfcf6ef045
MD5 62626bb43d0ce69ebb2cdd9e4d382990
BLAKE2b-256 eda138bc0fa33c1dfa9af8572b1025fa66b830a5ab972d322b25a9dd4aa2ce14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2cb44e628301181d1f1755018c965ffd225bbf3b958b12f0f342fc3e9de8a27a
MD5 f414452aae70975b39306350673cc7ff
BLAKE2b-256 bba30b1a25dda8cd8044af9e3aaf67ae33d21f85321bc1e89d839bebb1f3662b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03665c99ffa8d841080afe0d1a1559b0fcdbe9cadb6a86921992e43f22dfc3fe
MD5 880b473f88c8ef8c59b7df6f6aa77fce
BLAKE2b-256 4f07758db1f336db8c1a73bd450d7341e7ad3f68cbf9a2727d2bb01a621adf14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8e414ed19cb8188304dc13c3087f9e311fa6925f6174860effa469fdadb19b0
MD5 4b69cac7e99fce8acf9b128f0a89d0fd
BLAKE2b-256 614eede3aa00ce955d9fc6f104543bb339bb51d9745c85bb3082c43456267d14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75e5b35a52b70de19b6c0145dbbc149fc7a9c720d288eb939ae74bb896dc11e0
MD5 60f3a1efeb2f85b9bab2eaaf6afead8a
BLAKE2b-256 a4817df3b3af830ebe536c757ad0e1a47cb3bcbeb9c5d0caaa6546c80aa866f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24984960129da36171dc0515820cc2c2d3552e0070f16249e552e374773dc211
MD5 5c959c1425935a4f676c4d0b36bfae3e
BLAKE2b-256 96581c3abe862df8fc54851c574f63ee94d5c052c1246c88273e563f89e2a3b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91f41792ac918f069b3e508fdbbdc91491d70cd35a2ad687ce1b46ccdc58addc
MD5 a596c3169a2aa6f1724dcf85855b8f2a
BLAKE2b-256 7b86d4b17d7d2e5ca827a201b3638ad84b644d8cae3c121896901efd5e779565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7c3f6b7070d371867eb37753295277c709eb86b9d76db725665aa4cdc056399
MD5 47f0f2b6a626c77f8813cfac1c46b1a8
BLAKE2b-256 d023696cc99dbde4eb4c4632c52258571debe513735e32078a0e7db211292670

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 356f6cb7c9b31ba22d81609bfe85275a158f638f28af1e49a75db0cc5da49a06
MD5 a84188e504147c66c88e1f83e62e4eaf
BLAKE2b-256 a38416d91149b5140198bca81c268f7120863c0e501cf5dcaa77bddb733d7cad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 517b1882f4a8f84fbf8d41953abe64ab559816b60c21fe3cc150d95fa282ced9
MD5 2b4b6913fd0f09839dd1d57db44b9926
BLAKE2b-256 775156d605b9fac6ac7ab58d341e7a0d680844136b676416614481dc34188789

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd90655a7b89d045d1d36b73ba14205c2a179ba614e8011cd1be988d9a2c14c8
MD5 9244908aef6121d9ba648a731c1b06bc
BLAKE2b-256 d923fdcf9527cf3234eab912ffd24115d8b12ba704e55b81e1b1312a29479f97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e98e876061ef5e6f273b4c1974491a7501d0d4b3c2ad50629e4e125cd316adba
MD5 6565b723def42529e4651d3d5923f367
BLAKE2b-256 91e0570eafb689df8e1aea813b644c681e6476a11d96ef78f1d1090e25af949e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 600faeb2580cce95a8239c26de1c995208a5a8ec2442ea5c1c1d766df7470513
MD5 f0c9c093f858fb62482205f6558919ed
BLAKE2b-256 ce9256dc91bd6f2f8de4d9ed34ae7d29cf7bb194d50a6722ce248a6708e8db01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ea192c84c580d36c1ae864922506974bab8a0515ee0a310598b4b3dc4bcbb44
MD5 2210587742fc27da052004212f29c9ae
BLAKE2b-256 d2ed8e30ca98a61d75b505c7691d9ca5c10f08b2d5503ee575f480a27f5652db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14fcc0f7a2de99abe67f12144a7d126c05a035c01379e2a83b6e1025472b3490
MD5 761b2bd545bf75eb70f81d544064a2e4
BLAKE2b-256 419d9b145d69cd10dd93337a50673705eedda3a1415de1cde498e527c89de642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcaa5d65550e4310546a6506c9f427b3da2929f63b24a4ae6fd163d68f132609
MD5 1a5a2d8bec09ec356517ad6e88cecd63
BLAKE2b-256 8c992d3580b37bde8f00df6cef42cded9024475e1598190c0efb70941046e7b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0636525f2cb48093679cd0169a47153e8e253c792ce6e7f6d6c533bdc4925d69
MD5 a2f441bf1d62040d70884c63e01410e3
BLAKE2b-256 1deaf3abcdd502905c05c5a6b27755edbd91112ee94bc97d2de2af12b8ed6d87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2650e414712056df0f8c2f70ebdf0205e69bf5bd813fc3a992ac52df6f241c44
MD5 d684ac9f15f4dc0271996c0f45c4e654
BLAKE2b-256 b1be335cf074c05f34ee70835364ff9ce5a122f5adf2d189621f947a5799c5d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65ead7e0959093849a342be9a8a1709b79888e18406d7fbb403be303765713e8
MD5 fddf0578e5c1814e4e9f8bf0a7761b4e
BLAKE2b-256 a1ab4dddd528a753c9d8d6dd6f8fefa191a80e269ff15ae680a177eacaba2684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4498a2e6a16aa51465fcd6091d4b027048c7ed09cf9b65155bb71227120e5dd4
MD5 507954e9f8d3675c5621c6f68fac8c32
BLAKE2b-256 9867d9491730229c683f57d8a483aede931b96886e29987adf8ac162bb9e0520

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23af2ba933f522610fab9a44b29d41b3bcfb74428ac244c89fb23b6c032ac4ca
MD5 9c2bb34270f27055ea06d3b007386882
BLAKE2b-256 1356083b0df78f660b173c77f949ba0586d651d6891391cb4c2adebdaaeb0ace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for json_stream_rs_tokenizer-0.5.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 639b756f5d076775833ef433693d64962b5e45c418876226e1f09b693231d8da
MD5 0af7eff5043dfa357d3d77bb65cfb4a3
BLAKE2b-256 9083d48c19e64e21acac0ba1ae9b5e6389329679d6c151639a40adfede6363cb

See more details on using hashes here.

Provenance

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

This release

0.5.3 This release

41 files

0.5.2.post1

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