Skip to main content

JSON Tools RS

A high-performance Rust library for advanced JSON manipulation with SIMD-accelerated parsing, providing unified flattening and unflattening operations through a clean builder pattern API. Ships with Rust, Python, and JVM (Java/Spark) bindings.

PyPI Crates.io Maven Central Documentation Book License

Why JSON Tools RS?

JSON Tools RS is designed for developers who need to:

  • Transform nested JSON into flat structures for databases, CSV exports, or analytics
  • Clean and normalize JSON data from external APIs or user input
  • Process large batches of JSON documents efficiently
  • Maintain type safety with perfect roundtrip support (flatten → unflatten → original)
  • Work with both Rust and Python using the same consistent API

Unlike simple JSON parsers, JSON Tools RS provides a complete toolkit for JSON transformation with production-ready performance and error handling.

Features

  • 🚀 Unified API: Single JSONTools entry point for flattening, unflattening, or pass-through transforms (.normal())
  • 🔧 Builder Pattern: Fluent, chainable API for easy configuration and method chaining
  • High Performance: SIMD-accelerated JSON parsing with FxHashMap, SmallVec stack allocation, and tiered caching
  • 🚄 Parallel Processing: Built-in Rayon-based parallelism (persistent work-stealing pool) for faster batch operations and large nested structures
  • 🎯 Complete Roundtrip: Flatten JSON and unflatten back to original structure with perfect fidelity
  • 🧹 Comprehensive Filtering: Remove empty strings, nulls, empty objects, and empty arrays (works for both flatten and unflatten)
  • 🔄 Advanced Replacements: Key/value replacements, literal (exact substring match) by default, or regex by wrapping the pattern in r'...'
  • 🛡️ Collision Handling: Intelligent .handle_key_collision(true) to collect colliding values into arrays
  • 📅 Date Normalization: Automatic detection and normalization of ISO-8601 dates to UTC
  • 🔀 Automatic Type Conversion: Convert strings to numbers, booleans, and nulls with .auto_convert_types(true)
  • 📦 Batch Processing: Process single JSON or batches; Python also supports dicts and lists of dicts
  • 🐍 Python Bindings: Full Python support with perfect type preservation (input type = output type)
  • 📊 DataFrame/Series Support: Native support for Pandas, Polars, PyArrow, and PySpark DataFrames and Series in Python
  • JVM Bindings: Java/Spark UDFs (row and batched mapPartitions tiers) for Databricks Jobs/notebooks on classic compute and other Spark workloads -- see jvm/README.md

Table of Contents

Quick Start

Rust - Unified JSONTools API

The JSONTools struct provides a unified builder pattern API for all JSON manipulation operations. Simply call .flatten() or .unflatten() to set the operation mode, then chain configuration methods and call .execute().

Basic Flattening

use json_tools_rs::{JSONTools, JsonOutput};

let json = r#"{"user": {"name": "John", "profile": {"age": 30, "city": "NYC"}}}"#;
let result = JSONTools::new()
    .flatten()
    .execute(json)?;

if let JsonOutput::Single(flattened) = result {
    println!("{}", flattened);
}
// Output: {"user.name": "John", "user.profile.age": 30, "user.profile.city": "NYC"}

Advanced Flattening with Filtering

use json_tools_rs::{JSONTools, JsonOutput};

let json = r#"{"user": {"name": "John", "details": {"age": null, "city": ""}}}"#;
let result = JSONTools::new()
    .flatten()
    .separator("::")
    .lowercase_keys(true)
    .key_replacement("r'(User|Admin)_'", "")
    .value_replacement("@example.com", "@company.org")
    .remove_empty_strings(true)
    .remove_nulls(true)
    .remove_empty_objects(true)
    .remove_empty_arrays(true)
    .execute(json)?;

if let JsonOutput::Single(flattened) = result {
    println!("{}", flattened);
}
// Output: {"user::name": "John"}

Automatic Type Conversion

Convert string values to numbers, booleans, dates, and null automatically for data cleaning and normalization.

use json_tools_rs::{JSONTools, JsonOutput};

let json = r#"{
    "id": "123",
    "price": "$1,234.56",
    "discount": "15%",
    "active": "yes",
    "verified": "1",
    "created": "2024-01-15T10:30:00+05:00",
    "status": "N/A"
}"#;

let result = JSONTools::new()
    .flatten()
    .auto_convert_types(true)
    .execute(json)?;

if let JsonOutput::Single(flattened) = result {
    println!("{}", flattened);
}
// Output: {
//   "id": 123,
//   "price": 1234.56,
//   "discount": 15.0,
//   "active": true,
//   "verified": 1,
//   "created": "2024-01-15T05:30:00Z", // Normalized to UTC
//   "status": null
// }

Python - Unified JSONTools API

The Python bindings provide the same unified JSONTools API with perfect type matching: input type equals output type.

Basic Usage

import json_tools_rs as jt

# Basic flattening - dict input → dict output
result = jt.JSONTools().flatten().execute({"user": {"name": "John", "age": 30}})
print(result)  # {'user.name': 'John', 'user.age': 30}

# Basic unflattening - dict input → dict output
result = jt.JSONTools().unflatten().execute({"user.name": "John", "user.age": 30})
print(result)  # {'user': {'name': 'John', 'age': 30}}

Advanced Configuration & Parallelism

import json_tools_rs as jt

# Configure tools with parallel processing settings
tools = (jt.JSONTools()
    .flatten()
    .separator("::")
    .lowercase_keys(True)
    .remove_empty_strings(True)
    .parallel_threshold(50)       # Parallelize batches >= 50 items
    .num_threads(4)               # Use 4 threads
    .nested_parallel_threshold(200) # Parallelize large objects
)

# Process a batch of data
batch = [{"data": i} for i in range(100)]
results = tools.execute(batch)

DataFrame & Series Support

import json_tools_rs as jt
import pandas as pd

# Pandas DataFrame input → Pandas DataFrame output
df = pd.DataFrame([
    {"user": {"name": "Alice", "age": 30}},
    {"user": {"name": "Bob", "age": 25}},
])
result = jt.JSONTools().flatten().execute(df)
print(type(result))  # <class 'pandas.core.frame.DataFrame'>

# Also works with Polars, PyArrow Tables, and PySpark DataFrames
# Series input → Series output (Pandas, Polars, PyArrow)

JVM / Spark

JNI-based Java bindings, mirroring the same JSONTools builder, for use as Apache Spark UDFs -- a simple row UDF and a higher-throughput batched mapPartitions transform. Built for Databricks Jobs/notebooks on classic compute and other Spark workloads (not usable inside a Databricks Lakeflow Declarative Pipeline -- Databricks doesn't permit JVM libraries on pipeline compute at all; use the Python bindings above, wrapped in a pandas_udf, for that case instead).

import io.github.amaye15.jsontoolsrs.JsonTools;
import io.github.amaye15.jsontoolsrs.JsonToolsHandle;

try (JsonToolsHandle tools = JsonTools.builder()
        .flatten()
        .separator("::")
        .keyReplacement("r'^admin_'", "")
        .removeNulls(true)
        .build()) {
    String result = tools.execute("{\"admin_name\": \"Jane\", \"age\": null}");
    // {"name":"Jane"}
}

See jvm/README.md for the Spark UDF API and Setting Up on Databricks for the full deployment walkthrough (both this and the pandas_udf path).

Runnable Examples

Every builder feature has a standalone, runnable example in all three languages, plus curated multi-feature pipelines (not an exhaustive combinatorial sweep -- the builder has ~10 independent toggles -- but realistic groupings commonly used together, and one "kitchen sink" pipeline exercising nearly everything at once). All three language versions use matching inputs and produce matching output.

Individual features Curated combinations
Rust examples/feature_by_feature.rs examples/feature_combinations.rs
Python python/examples/feature_by_feature.py python/examples/feature_combinations.py
Java jvm/examples/.../FeatureByFeature.java jvm/examples/.../FeatureCombinations.java
# Rust
cargo run --example feature_by_feature
cargo run --example feature_combinations

# Python
python3 python/examples/feature_by_feature.py
python3 python/examples/feature_combinations.py

# Java (compiles examples/ as an extra source root, kept out of the packaged jar)
cd jvm
mvn -P examples compile exec:java -Dexec.mainClass=io.github.amaye15.jsontoolsrs.examples.FeatureByFeature
mvn -P examples compile exec:java -Dexec.mainClass=io.github.amaye15.jsontoolsrs.examples.FeatureCombinations

There are also narrative walkthroughs for a quicker first read: examples/basic_usage.rs / examples/advance_usage.rs (Rust) and python/examples/examples.py (Python).

Quick Reference

Method Cheat Sheet

Method Description Example
.flatten() Set operation mode to flatten JSONTools::new().flatten()
.unflatten() Set operation mode to unflatten JSONTools::new().unflatten()
.normal() Set mode to pass-through (transform only) JSONTools::new().normal()
.separator(sep) Set key separator (default: ".") .separator("::")
.lowercase_keys(bool) Convert keys to lowercase .lowercase_keys(true)
.remove_empty_strings(bool) Remove empty string values .remove_empty_strings(true)
.remove_nulls(bool) Remove null values .remove_nulls(true)
.remove_empty_objects(bool) Remove empty objects {} .remove_empty_objects(true)
.remove_empty_arrays(bool) Remove empty arrays [] .remove_empty_arrays(true)
.key_replacement(find, repl) Replace key patterns (literal, or regex via r'...') .key_replacement("r'user_'", "")
.value_replacement(find, repl) Replace value patterns (literal, or regex via r'...') .value_replacement("@old.com", "@new.com")
.handle_key_collision(bool) Collect colliding keys into arrays .handle_key_collision(true)
.auto_convert_types(bool) Convert types (nums, bools, dates) .auto_convert_types(true)
.parallel_threshold(n) Min batch size for parallelism .parallel_threshold(500)
.num_threads(n) Number of threads (default: CPU count) .num_threads(Some(4))
.nested_parallel_threshold(n) Nested object parallelism size .nested_parallel_threshold(50)
.max_array_index(n) Max array index for unflatten (DoS protection) .max_array_index(100_000)

Automatic Type Conversion

When .auto_convert_types(true) is enabled, the library performs smart parsing on string values:

  1. Date & Time (ISO-8601):
  • Detects date strings to avoid converting them to numbers (e.g., "2024-01-01").
  • Normalizes datetimes to UTC.
  • Supports offsets (+05:00), Z suffix, and naive datetimes.
  1. Numbers:
  • Basic: "123"123, "45.67"45.67
  • Separators: "1,234.56" (US), "1.234,56" (EU), "1 234.56" (Space)
  • Currency: "$123", "€99", "£50", "¥1000", "R$50"
  • Scientific: "1e5"100000
  • Percentages: "50%"50.0, "12.5%"12.5
  • Basis Points: "50bps"0.005, "100 bp"0.01
  • Suffixes: "1K", "2.5M", "5B" (Thousand, Million, Billion)
  1. Booleans:
  • "true", "false", "yes", "no", "on", "off", "y", "n" (case-insensitive).
  • Note: "1" and "0" are treated as numbers, not booleans.
  1. Nulls:
  • "null", "nil", "none", "N/A" (case-insensitive) → null.

Installation

Rust

cargo add json-tools-rs

Python

pip install json-tools-rs

JVM / Spark

Published to Maven Central as io.github.amaye15:json-tools-rs-spark (live since v0.9.2, ships automatically on tagged releases):

<dependency>
  <groupId>io.github.amaye15</groupId>
  <artifactId>json-tools-rs-spark</artifactId>
  <version>0.9.5</version>
</dependency>

Or build from source (cargo build --release --features jvm && cd jvm && mvn package), or download the jar from a jvm-ci.yml CI run. See jvm/README.md for details.

Architecture

The codebase is organized into focused, single-responsibility modules:

src/
├── lib.rs            Facade: mod declarations + pub use re-exports
├── json_parser.rs    Conditional SIMD parser (sonic-rs on 64-bit, simd-json on 32-bit)
├── types.rs          Core types: JsonInput, JsonOutput
├── error.rs          Error types with codes E001-E008
├── config.rs         Configuration structs and operation modes
├── cache.rs          Tiered regex pattern caching (compile-time table, thread-local, global)
├── convert.rs        Type conversion: numbers, dates, booleans, nulls (SIMD-optimized)
├── transform.rs      Filtering, key/value replacements, collision handling
├── flatten.rs        Flattening algorithm with Rayon parallelism
├── unflatten.rs      Unflattening with SIMD separator detection
├── builder.rs        Public JSONTools builder API and execute() entry point
├── python.rs         Python bindings via PyO3
├── jvm.rs            JVM bindings via JNI (Java/Spark UDFs, see jvm/)
├── tests.rs          Unit tests
└── main.rs           CLI examples

The processing pipeline:

  1. Parse -- SIMD-accelerated JSON parsing (json_parser)
  2. Flatten/Unflatten -- Recursive traversal with CompactString/arena-backed key storage (flatten/unflatten)
  3. Transform -- Lowercase, replacements (cached regex), collision handling (transform)
  4. Filter -- Remove empty strings, nulls, empty objects/arrays (transform)
  5. Convert -- Type conversion with first-byte discriminators (convert)
  6. Serialize -- Output to JSON string or native Python types

Performance

Benchmark Results

Benchmark Time Description
Deep nesting (100 levels) ~2.17 µs Deeply nested JSON objects
Wide objects (1,000 keys) ~24.8 µs Flat objects with many keys
Large arrays (5,000 items) ~406 µs Arrays with many elements
Parallel batch (10,000 items) ~635 µs Batch processing with Rayon (nested_parallel_threshold)

Measured on Apple Silicon (M4) via cargo bench --bench stress_benchmarks, v0.9.5. Results may vary by platform and data shape.

Optimization Techniques

JSON Tools RS uses several techniques to achieve high performance:

  • SIMD-JSON: Hardware-accelerated parsing via sonic-rs (64-bit) / simd-json (32-bit).
  • SIMD Byte Search: memchr/memmem for SIMD-accelerated string operations and pattern matching.
  • FxHashMap: Faster hashing for string keys via a hand-rolled FxHash-style hasher (src/fxhash.rs; no external hashing crate dependency).
  • Tiered Caching: Three-level regex cache (compile-time pattern table → thread-local FxHashMap → global RwLock<FxHashMap>).
  • SmallVec & Cow: Stack allocation for depth stacks and number buffers; zero-copy string handling.
  • CompactString & Arena Keys: Object keys are inlined via CompactString (no heap allocation up to 24 bytes); flatten's slow path additionally uses a bumpalo arena for deep-nested keys, to minimize allocations in wide/deep JSON.
  • First-Byte Discriminators: Rapid rejection of non-convertible strings during type conversion.
  • Parallelism: Rayon's persistent work-stealing thread pool for batch processing and large nested structures (avoids per-call OS thread spawn cost).

CLI Demo

The crate includes an educational demo binary that showcases library features:

cargo run

This prints progressive examples covering basic flattening, unflattening, custom separators, filtering, replacements, collision handling, type conversion, and batch processing.

Contributing

See CONTRIBUTING.md for development setup, testing, benchmarking, and PR guidelines.

License

Dual-licensed under either MIT or Apache-2.0, at your option.

Changelog

v0.9.5 (Current)

  • Documentation-wide accuracy sweep: every root-level doc, the full mdBook site, and the JVM Java source's own doc comments audited against actual source code and live runtime behavior (not just re-read) across four parallel passes. Corrected fabricated/stale internals (references to a phf key cache, rustc-hash, Arc<str> key dedup, and function names that no longer exist -- none of that is in the current codebase), stale benchmark numbers (some off by 3-14x), wrong error-handling semantics (e.g. .separator("") documented as panicking; it returns a config error), several broken guide examples, and stale "not yet published" claims for Maven Central/PyPI (both have been live for a while). Also fixed a real internal contradiction in the JVM Java source itself (FlattenUDF/BatchTransform javadoc claimed Lakeflow Pipeline support that Databricks doesn't actually allow) and added a missing JVM API reference page.
  • New: runnable examples covering every builder feature individually, plus curated multi-feature pipelines, mirrored across all three language bindings with matching inputs/outputs -- see Runnable Examples below.
  • Performance: regex pattern lookup for key_replacement/value_replacement no longer re-hashes and re-walks the cache on every key/value check (a thread-local "sticky" cache of recently-used patterns short-circuits the common case) -- regex scenarios 9-22% faster (Criterion). Consolidated two near-duplicate replacement-application code paths, which also fixed a missing SIMD fast-path for literal value replacement (~15-19% faster for that case).

See CHANGELOG.md for full details on all of the above.

v0.9.4

  • Bug fix: auto_convert_types silently corrupted the trailing digits of large integer strings (17+ digits, e.g. Snowflake/Discord/database bigint IDs) by always round-tripping through f64, which only has ~15-17 significant decimal digits of exact precision. Now reuses already-canonical integer strings directly instead of reformatting through a float.
  • Python bindings: dict/list[dict]/DataFrame/Series conversion switched from the pythonize crate's generic serde-based traversal to direct calls to Python's own json module. Benchmarked against the actual built extension: ~18% faster for a single nested dict, ~1.6x faster for a 200-row pandas DataFrame (the realistic cases this library exists for); flat/tiny dicts see a smaller, reported-honestly regression. Removes the pythonize dependency entirely.
  • Performance: credit/debit currency suffix stripping ("100CR"/"100DR") in auto_convert_types no longer goes through std's generic string-pattern search machinery -- ~13-17% faster on currency-heavy conversion (Criterion). Literal (non-regex) key/value replacement now uses SIMD substring search -- ~2.6-4.8% faster. unflatten's internal object maps now start pre-sized instead of growing from empty -- ~7-9% faster combined. auto_convert_types's date detection hand-rolled instead of using chrono's generic parser -- ~25% faster on mixed real-dates/false-positive workloads. flatten's slow path (key transforms configured) now uses an arena allocator for deep-nested documents -- up to ~14% faster end-to-end.

See CHANGELOG.md for full details on all of the above, including the honest trade-offs.

v0.9.3

  • Bug fix: flatten produced invalid JSON for any key containing an escaped character (\", \\, control chars) when no key transform was configured -- the default, most common usage.
  • Bug fix: re-escaping corrupted multi-byte UTF-8 characters (e.g. café "quoted" became café \"quoted\") whenever a string needed escaping and also contained non-ASCII text -- affected key escaping under lowercase_keys/key_replacement/collision-handling, value escaping under value_replacement, and unflatten's key serialization.
  • Performance: JSON object keys now use CompactString instead of String (inlines keys up to 24 bytes, no heap allocation) -- unflatten is ~19-22% faster (Criterion). Redundant separator re-scan eliminated in unflatten's tree-building. Regex pattern cache now evicts genuinely least-recently-used entries instead of arbitrary ones. Key/value re-escaping is ~17-22% faster as a side effect of the UTF-8 corruption fix above.

See CHANGELOG.md for full details on all of the above.

v0.9.2

(v0.9.1 was tagged a day earlier but only completed publishing to Maven Central -- a crates.io/PyPI release pipeline bug caused those two to fail before any upload. Fixed and re-cut as v0.9.2 across all three registries; no code changes beyond the release pipeline fix itself.)

  • JVM (Java) bindings (BREAKING for key_replacement/value_replacement, see below): new Spark UDF bindings (jvm/) with full feature parity, via a JNI shim over the same Rust core -- see jvm/README.md.
  • key_replacement/value_replacement pattern syntax (BREAKING): patterns are now literal (exact substring match) by default; wrap in r'...' (e.g. r'^admin_') for regex. Previously every pattern was always compiled as regex.
  • Rayon parallelism: batch processing switched back from std::thread::scope (per-call OS thread spawn) to Rayon's persistent work-stealing pool -- measurably faster for small-to-medium batches.
  • has_escape scanner bug fix: escape sequences not adjacent to a quote (\n, \t, \r, \uXXXX) were previously invisible to the tape scanner, silently skipping auto_convert_types/replacements/lowercase_keys for affected strings.
  • crates.io and Maven Central publishing enabled on tagged releases.

See CHANGELOG.md for full details on all of the above.

v0.9.0

  • Crossbeam Parallelism: Migrated from Rayon to Crossbeam for finer-grained parallel control.
  • DataFrame/Series Support: Native Python support for Pandas, Polars, PyArrow, and PySpark DataFrames and Series.
  • Modular Architecture: Refactored into 10 focused modules for maintainability (zero API changes).
  • Performance Optimizations: Eliminated per-entry HashMap in parallel flatten, early-exit discriminators, SIMD literal fallback, thread-local regex cache half-eviction, vectorized clean_number_string().
  • Python Binding Optimizations: mem::take for zero-cost builder mutations, O(1) DataFrame/Series reconstruction.

v0.8.0

  • Python Feature Parity: Added auto_convert_types, parallel_threshold, num_threads, and nested_parallel_threshold to Python bindings.
  • Enhanced Type Conversion: Added support for ISO-8601 dates, currency codes (USD, EUR), basis points (bps), and suffixed numbers (K/M/B).
  • Date Normalization: Automatic detection and UTC normalization of date strings.

See CHANGELOG.md for full history.

Download files

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

Source Distribution

json_tools_rs-0.9.5.tar.gz (192.0 kB view details)

Uploaded Source

Built Distributions

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

json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp314-cp314-macosx_11_0_arm64.whl (999.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_tools_rs-0.9.5-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

json_tools_rs-0.9.5-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp313-cp313-macosx_11_0_arm64.whl (998.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_tools_rs-0.9.5-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

json_tools_rs-0.9.5-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp312-cp312-macosx_11_0_arm64.whl (998.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

json_tools_rs-0.9.5-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

json_tools_rs-0.9.5-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

json_tools_rs-0.9.5-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

json_tools_rs-0.9.5-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

File details

Details for the file json_tools_rs-0.9.5.tar.gz.

File metadata

  • Download URL: json_tools_rs-0.9.5.tar.gz
  • Upload date:
  • Size: 192.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for json_tools_rs-0.9.5.tar.gz
Algorithm Hash digest
SHA256 cfff6ede10bb44bc31160cb9448c606d5f54242a62a1a5cf4bdd54d1347b5137
MD5 93308fa658cd32df97f593c55033854c
BLAKE2b-256 e9567080e7ffcc9b2a44994e5743678694b455efabd28515eef479755558ebe9

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e151f6e7ee423fdca30215df2d34cbb90440afafe762b4fb57f75ae3e14d184
MD5 e0a660fb5f138e9352698c89c5c6b68e
BLAKE2b-256 b216ceb920c164aa199b666a0f4c566d1ce45db2a89b0d553fedb55cb4df9ecf

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63ac0b94490a73fad88594560815ee4829fa1bac44bbafa2d7a83c81afedde33
MD5 0960e63bdfa5fecb02c0a551a196152f
BLAKE2b-256 e79dc508b2f058f958b95e1867cab4ba7506b13345a1f5fa21a92dc8c5f8c5c0

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af53d153145de9f195322db05a3b5486219c53bf11b5bbe5e2da4fbbfc15f34f
MD5 59124c92f3505f59ca84c19bd92d73e6
BLAKE2b-256 8bcab9d13c52e6a22ac9f1667c9135fa722cca919046c14305c573c55e6f07b0

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92bacddca2782c6559731c7b6923583848e5d9a4ad3b992785beb422c3187994
MD5 423437efdd9244360be8ef4e063029f9
BLAKE2b-256 a946b29891dd449fb5f37f104344d10c4a2bb26e1bcaa5787b70c59345e74e48

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92edee16cea76824c51541d898bb278ed6f88513651ddd2e0987e03e1a45abd3
MD5 3843709b6fcfacdf94726d1c902ccc38
BLAKE2b-256 fcc81dc5126b464a2b7586af82cb952e26e03f44420f70a3b8186ec62a01530b

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b96f8eb324bee74e24f033ff7261dfd4c013abad5de2ad40e65865fd8b06675a
MD5 2a9df8d1bc999f9d91185e4b8b31cbfd
BLAKE2b-256 e82b97bb0685437f48b0bfadd9cd84a73422477ee5a68b8d74a13e761aef47df

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8394551a6e94d097c25b113f6c27ad59d1a20fb84e9b34f912a74f03255693e
MD5 2834276f216ea092db7eb8da7b32f018
BLAKE2b-256 12eefb45029bf9b687db79e88b6ea9438281bd77e06ebd709f26b5b10c786881

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6d5216f28487e3fc04edd22040ed89cec08a10ad62b39472feb3b9521631d9b
MD5 26c0c72d32931c51e920dfabb4ea4c6c
BLAKE2b-256 f325b93051cd58e74f4c77f263664e2028760dfc635fa43a39113e3d53d53e72

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 39f3d6d5629ffeeb7831d99c1699f4cb1a2b76d12eff267dacc2bf2694b54317
MD5 c3d4f1cbcf859315988aeb57fda6921f
BLAKE2b-256 c285f166a7fcde229a16bd281548eef788fa20f708238165f7d93d6ad84b806c

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd566b2d63c6c8787c7bb3432b78d658a2c5ac81a093e7e96cd6013ddb334b2b
MD5 cf5a5aa0bf55332e892b3a6a0daaf992
BLAKE2b-256 e888458e04566ff0cbe15a89cf980ecac6f5c8ba706fd73b2feb7145a170d6be

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 262af045e715cc15d893781fe3aaabd69952d4b00afd7c7d49fb64a5ead0f4cb
MD5 efe9375550f62e87b8f715475b2c2432
BLAKE2b-256 f7370557955f3287dba626b10bceab645a0fc2b83532b37f975e0474151273d5

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5aee9dee42a0274f54d59f686bced1a0d56b91dcfe07a0ba72239b89d19c6646
MD5 3e1d5bb2cb73320971c8434fa0bba33c
BLAKE2b-256 b73086d47eac6e10fe9c522fcbdfecf33f114d13e325e5603578c16f8d21e09f

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5adf83a6ac6ee53d8e51378fa9a481975e10b631148895cf042dea44c1a6ca9d
MD5 170a2b27e6e8e90be3fec318177be46f
BLAKE2b-256 1ab8260b8a5e1ee79464c97ab505cc2bfe72ef30825f7d0b6a11fbfd1c5befd6

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c07c50a11a062b589c51dda953a1dc05ae02de09a1059e9e3482ed621220f6c9
MD5 2baf680372ef3334913e55f2987639f8
BLAKE2b-256 7055115ae3240d6382c5abaf7011330a3190adb887194dbe7e690e93268d7b32

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6beef1b36fd16e7c158e2ffff3bc59a0655b0b6769a2421829bca96abe2609d
MD5 e8d06401171a24a680f21be20d5f3148
BLAKE2b-256 a8ebe26c5e674d220dfe36126f7687343f623e8729364423064b3cb21548e817

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5254e2b499cb3f26b2675227ad79e477ca760dc6211a471904094222ef887fc7
MD5 e658314e89e81496cc8a3bc43cc015c2
BLAKE2b-256 4e109bcadcfb74bfbf32298cc97efa855da54012e663f90536a7fba9c59b9811

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e624a98fbaa123437a0e67185d9ee669f38c09f64d018cd673c049f9e7e366d
MD5 db7c8be1f34f91164786279f2d11abe1
BLAKE2b-256 fe571ac27d7e5718df051ee6244084dfb7e540a1871879ae43ca75a4d7cbcacd

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d6fc89ef8b131ed35cdc65e17f7004866027d6bdfc5be090d5d2ef0e97b3980
MD5 b95bbb56c8c863ec85e5b634caf58ab3
BLAKE2b-256 5b8f5a688f83dc6fe5940ab27efba30e2c9a0950ea931cbb9aa5711561f5659f

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e57a032bfd371ea24801ee7c48aaaa8fb91329fa7cfe249ba418c997b0ea8c3
MD5 b7b99d507b1d2b35bc9baa7f6634a324
BLAKE2b-256 42be868de8ec2d05aee92a297b826ec776393d4e51a82a06b68ff344ff1768eb

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0133ab43ae53af08562f667c4532f08dfb09a5808bd15471bb56a8a5a5e78874
MD5 76097e4ae5bd65a146e9474e0080db1a
BLAKE2b-256 02c06000b176dc095dd7ccc606885a7e2be49cc03d56d5a9ae8314ab99ef9939

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee8845b77a2260f1e15b4e15f6813cdd043a071b492ce58400ba26f67184ee89
MD5 330d5c7fc78147d667b878567c9cf58a
BLAKE2b-256 3c0e15827c1ffb545b75b235be3fb6bc9292bafbe9299e86e22481589ee44237

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 03de2ce8004d65f0b0e8fea384a3069bce42fda870ac269073e6d9917748109e
MD5 224742ba61bc9bd43bb9e74e2092b7d3
BLAKE2b-256 2b5287ace15fe2788e30c42b0c88c13646db30ddcf97a9f8ad0227fbbbac053c

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ada8a27f908734290a52618169bb1cce6dae7d7f72c8289024cf2aae87bf0bde
MD5 b340b37bd3939154db422c8a493b1246
BLAKE2b-256 5ce397180d2b952882feda2436ad80b012ed723d44431e1564bc485fed3e0253

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 735c17aff492956016ecafaf8c19980fd20bbb95ff32e8e67743968ef8294f57
MD5 0db81e4a40a1d9bdf1e623a14c1e89ac
BLAKE2b-256 4388cef047a24e48caf77fcea87f9a25c3a1a34a5bf446d56e626a6a38ba354e

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86a6cedbba3fd943a299529f22baddfb67aa8831204d8f9139d6faa08d95cfed
MD5 a8e08ae7d33f0cb229b5aaf6cb882df3
BLAKE2b-256 be3371b005f6bc3c2045ffaf5837779d9d4f665bcf4df4451670b2709f677fcc

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0d52bc5addb93924761c723329d6b9226072c23b7c8d2f1af6e6e162ed9b977
MD5 7c75efa4e5c9912c73301b56484288ef
BLAKE2b-256 3915adc33a9f21640fb0368b71f3fe972d9d6e40653026b78ec7d20cf33a1719

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ba8fb4b752d3b6995f5611d3036619af99cdc76ffe8384537baebc0f1c77f76
MD5 93d1a57c7a407732a49e4a1ffa3576c0
BLAKE2b-256 855bc589c7a2510c808c6658cc9d4bbf9106d13ac88e42e61ee90dad64e97a0d

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6947c3f04833a03a347890ad15efc847fdc6f3447d800c36b8ff3506bc4573d2
MD5 2e7968e85a3133ffeeff8c416039981d
BLAKE2b-256 182324a2534eb0428486fe1f6c481f978acd7fdd087126698a99a814f9f7f501

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d0a588afe409d933a1c99520bbf85eff59b72a74364c57f4ef62ce3c5e25970
MD5 ff3e4016b5ec3e3acb21bcca67b82733
BLAKE2b-256 de1a7f259414aaf70ef295a41f32caf552d6a6e77a52c7e114f940f2740891f3

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02b44748fc420b0c6527d3c77120c22d55a4e0e43c50c03ea0a3bb1f0ab3f67b
MD5 4c518112e797b49ba43683dcc405058e
BLAKE2b-256 e7898dbd29a604d25af1b1a40cee90af75def952ee3271ad1715be2caf6cc941

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6456c930a9b88d4232efc54e54f09b0f52b758b12ab124d04704b0d85ba632e7
MD5 078aa0248c55722057713a31fe9dfa12
BLAKE2b-256 203e591ee8f82ba63e41d128302a66062e14d25676dffc5bd1d9bb9fd59c9139

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 99abb973c34f8857a0a1db28be6e98ec3bb28022ab64127987e6191dabd8949c
MD5 104f4bdfd4be7205578f351d2fe4d553
BLAKE2b-256 dd3e84fb32606751014ff54278e15a494ffb04305457d289833617bc1d505bbc

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 022844dca644e3d459845597b5e6c7c42f4fb369ec202c0ad232a502b97e7243
MD5 76a3f39d833ca9e144368d77d7a11e64
BLAKE2b-256 1facc22aa296f6e5636c65cef27d25fcfe75c58cab93afb9114109f209ee6a3e

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd05943667ac898784867ea1b1bc0e03e87c827674919e85a5758e97d2c1220a
MD5 21e65073fda3693312e891de3d08c645
BLAKE2b-256 83e2489d1fbb7a28642b053c6070da59fd9280d4cd364f33eac09bd9206b0ea4

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc2a9622ee50ce7ab0f7437361946deab828f7abd35971c12cc34c203246f363
MD5 19c429ff3a8f5d561ab9285e37868460
BLAKE2b-256 eb2359ac74cc705011439bcd5010c6b663316a6df10b531f7f623227a7d293b0

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc09e401da5ee71a8ab12b6fd85945a54695e99d8238bcdce8fc1cddbf2293cf
MD5 8ed18e1aa0a8e529d07f2ca30c120b52
BLAKE2b-256 7e643c92ce1450c73be43a5fcda8f9cf7237eaa145d17118d33ef73bb1926d6f

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25c0b1cc737f32338d7d338409a9c9777c8f904338a2b82b448bd2a6712e1709
MD5 ace2139342f1f8ba61f9a538c69b431a
BLAKE2b-256 0569b1f86df003e5a573ef7d725ed61d0d8d505c4a3ca848720bff8e697bd440

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d61c85ece70afe55e9964d6223a7f5d854afd8eea9dfcd01b4ebec7d259713be
MD5 8fb72cf8c069e6924c96270d64228fc8
BLAKE2b-256 b379982dc9a779b5e4b91ee7bb1d622fca73ab1c0136664cd41c68d5a9e6bbcf

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a184a3b02426b83b888599be8b2f4f6abfe3e484f5093cdc006aa08a5bdc693
MD5 be21e5738c5fa3d21a0649000795bf90
BLAKE2b-256 e28d90ef65e064560e31e1057c9a55079d0ae2bbb4d7e4a1bed4bcd92cfad704

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90c10661241820f17aa992fc82fb44b75699e3df1c58917d486384e952cc04da
MD5 190261e70653c2a03f9ca5fbcca40ce7
BLAKE2b-256 0bf43b4c51883e4707ffe2ec53b7c1bcb59ff6759737131114bfe2e6aec40d38

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e3dece74a4f8493e8e7f6dd768bfa8243023d1780940e7782bbebe86b11186e
MD5 4ea4f2734c191a4265ee1bd19668055d
BLAKE2b-256 5c0f00531c1a7ee2513f6ef95726ca3c1070e596aabc392b567b2112613260d7

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7f79a1c58f0ede867d1c04ddc8ef670a4e5997b73ce55e4c49695b9e77f417b
MD5 1f36610225c4f5f64f5cf2bc7983929b
BLAKE2b-256 03209d44a6b7ef490559fac40eb131a2d80ff34bdc1b964a8439309df7439f60

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63bd39785767b5f82ce1aab30015f427382e836331dad0f5644ca2e9ad11f117
MD5 1ea09d673aade27eef12c547b90d1f1f
BLAKE2b-256 e48f6f16aedbbbe797d98524c3a0bcc7d75e7ea08ba0b9606cb4f42f291d2815

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac214518f1cd53e714664c7b4a2ec610d4e54fe7f218e438cd32f347ae166272
MD5 a591fe1dc630d3559c1da5cd93d9dcdb
BLAKE2b-256 b5f6b096964c87e17461ad47ac61e44a60e08e659a91b2deaf250c43ab4dfc85

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96eb1e3ddeca64ec7db131060ce728d3ff1a77513662816fe2547e21cf6b12a5
MD5 13b4e5c716c3e0825d767905a7fa6869
BLAKE2b-256 2e0c7fa92b5e49062435e96ed0bf177e9e840a2d4a9afb4f0177c73f51993221

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9770bfb1f34d6e9cc7402deea49078d0460a68f537e56a9390bb14a60252e12
MD5 b485587c4e998c11a628b2f890227f74
BLAKE2b-256 5cb868c7459e4d4694bdf14549335a773f523954032f7c989d0c0904daefcd31

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be34edebbe9589515261aa28e0eeff6a268e2e69da7473d6899ea4e4563c29d9
MD5 f0574580968d3b85576548e2fb86485d
BLAKE2b-256 7cf46ce3753f09889a2aead6609debac5cd4fea5c38dfc8cf7b2d4945f0ff021

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5a4fa546236934bead929431097b5c4e81616a881f60de51fe31d5a4eb6d41b
MD5 fa604f0fee8092529bd783da93522b09
BLAKE2b-256 f41bc6d6e3216e5c2e0432cc80a54e5c4e60ad67a42db02922e6e68a6d283e1e

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 341843f0eb9a7b72044a259c36245ef417bcc6c7da671236cf8c6318e46f6211
MD5 869369cd396d730aad1ad8211152e28f
BLAKE2b-256 3bc504cc73a8b947a72a3f40e75ea8544e3d226b23720052c9774682589e4daf

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 554b9e6826ef99e38dd2eb46dfedca703e3b4ed0a6e1e312cef63097538fc235
MD5 bfcc059a21170583252d17eb5cb30f44
BLAKE2b-256 c4438a40f2116673bdada439c40bbb297ad9273f1ea1f63c63efb647db203c7e

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b612308e7b285ae4bdf3fc29b188b2716f0b0314371c4e6ce50fb5b83db4e5e
MD5 52b68ddc48f2efc166cd07bdc1e55dc0
BLAKE2b-256 f8af22b4be6255de41b83821c65f2539c179431e269edb7e069e4fee8d76285a

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73989b28de7d8cff03968abfa96778b1c4a62dcd3de54f8d401e646b1297d7e0
MD5 cf8838bce33d8dc7c3ff2a21b54d5240
BLAKE2b-256 6f2b8ca8d217864915a5d564b6bd5b34a87cc0035c94e7812e1c679487e5a7c0

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81a3b626bacd0e4e3f21f11ad71acfeb2af25133df623d3c2ebedc20d3db3480
MD5 27ec86c0445e53c788909f509ef15cb3
BLAKE2b-256 ab5dc5f332d4f85208ee3d7dddfb4c1c962ba15fbecadea5cf24a18ee23c7e02

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3891bf6d79883b2ac0c0a266c9a13ee31c227d7f0357714b30d3a8f8b8bddffc
MD5 6015abae3ff3884433f2a3046b5ed683
BLAKE2b-256 337ff6cd766281d486b601bdf9914d422b7a999eb3091284398099b1d18c2799

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd519a27a6470f3c568fa6855cf928e222ebd3c3f17ab0ee1456f916c6ffd177
MD5 f8d4f6052ba660084ae8f3b79bf858db
BLAKE2b-256 1efd2c552474105460d9d11db1643ab3876c9b1696af95582208c026e1c812b4

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 def5544eb902e9a74375c4f9d44586ba47fa30c03cd7391191b49a0d2d1e4b22
MD5 bf0ec6fabf420920874f31dc80c02283
BLAKE2b-256 37aa5d7ca1da5575de358af16c1952c1f532f1ee7225abf5f3fdd6608f9a605a

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a603e78e377e84419755dab459e532e26e25935a4b20b25c613bdcc894bb34ea
MD5 3308bdd524fc4c741ad572670d5dc76b
BLAKE2b-256 062555fba72818233cbabbdcc242d6e2ed77279476a665b17e338bd75b34ac16

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddef28679e7fffed209b77e3251caa26eb79dda47f56ae777c68a5f136e20c63
MD5 0ee946bffb137b4a31e57a3622e811a0
BLAKE2b-256 7e97c19498db2dbfd0dab1faf28cc9bd5652aebde11f9fcec7b6a4fe3eb0c980

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4610fe9dad689207f13a4e58a0d31b22071aa64fd0db3674e7752c75c05f72f
MD5 ee3d32ec4ef24ab3dd2a1e279e801dd6
BLAKE2b-256 045dbc3403f21a05443db99792030accee0c447d39a496f24191300e42d011f6

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 352fd202c5d487a2b5a40d2d4121b93dca05d0646aef5f341267c3f8b1d2d209
MD5 4c790fb5d11feb1ff8098e12df7cd452
BLAKE2b-256 7d8d1c5b645a268744d0123568110c0289828bc801b0773fba7e11f6d5c224bf

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dba1d61b25bead63a2ea5a02ed539e37b50da48841ea9c3375eb9ce772188a8c
MD5 8f0dfcc77d587952da639e162344d650
BLAKE2b-256 877dc1e6e294d562055b79e0a02b7a2d8f92222987da6b9a88f8573952793a6e

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4f0ac87b5fca3ea852f49ddb49c08c55f192375c29852ea0e06992c1faa812d
MD5 5da6f2981802d3188ee5871bf57a1752
BLAKE2b-256 6706307ab11388fedb573179fcca37d7963a57d096721583846d7be76b301228

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb3673a81e1c16ec53a35d66b011616bd52781972bd777e7347dbdfaa07914d9
MD5 9062c9f556739a15bb08977c6b4e5d26
BLAKE2b-256 e74655b88fba9bc21bac8ee4c6204ff4503e4bdb4e2f24a1377256030b3a1de7

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6aa9afe79772cde62949b8e4e1f445c1fc8c290a52a9ae77f79da2b30f45f3c6
MD5 59721261afeb6b0a550e3bb2951fba1a
BLAKE2b-256 d888b203f7b4227b9b32d282fbd2f6f11cce11a4e0423f5050ae33ecf322aac7

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 638b1f8a01f18f4f1a163966895880b75b5d2225bb0387a8f69d37743fe3cf86
MD5 aa4c9718526b68c5f1636cef46f6e3eb
BLAKE2b-256 b2bca2af3832f230009fea53bed0db988ab9a6c1f6c059705e1dcda2eb050d16

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cfba28ebae68788972a34e30573a93619c2c8a106d2268712ab9d3d64d8e458
MD5 d6c239fca75d4fe04ccc9c0472e1a112
BLAKE2b-256 91c82903804147ea3a34d94cf91a95216a026195d06fa14c5d346f87db7a2c7b

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ca93f3430b628eb45bd2cc8b2ce6ae2432a28a2d9b8ea761d8661c0a2424ba1
MD5 507036122c2dc4b94f9c270cb86af8df
BLAKE2b-256 d070b132838ed50afbe6346b8cf52bb67a56bdbc0e395f012d52a02ef3a85b9b

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3028941fbd16511f0bfa5bc006d8b54dd96171cacaf9884418f130197a9c8f99
MD5 5552a2428febcbf43541639aa28450b2
BLAKE2b-256 c97330210b5e6a932e0dcea347c9adbbedc55cb6d4dddd3fef01f58b515930a1

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6b67e9cb04fdd10a884b207a8ba16bbd6f1e6712ea9248c877315c8daafd66c
MD5 da37080de8629ace1e024ebdbb59ee38
BLAKE2b-256 f1fb117b07b00f2383f1c2c835906c221558b7c53b757505c2b15fc571b1cdb8

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b50e7f998311a6b1cdc144c10ddc801d3741be32d93acb5559b64cca0874999f
MD5 93d7506f4d7f75e2dba73e1186d74dc5
BLAKE2b-256 7318e2b64f2498d9e50c9a09d044bc569d85d341ab7e37a09d758c722e68890c

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 383d10dc4290cff8b3f90f7e5551e12e0341bcc2ca0ebdcb9a96364f6c74b292
MD5 c9170f840eaa245f77037f003d996213
BLAKE2b-256 fed0a3227d86a8d11842ea207b2109b37f4acac404a012ec7fc0d377946d898d

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79716bd91b20a0ec108a2b64476623850c10526602f05ed00aae0b307593170a
MD5 d15882dc903ab379afc01cf8b399a4f1
BLAKE2b-256 1b4b1ad19486327684a5d7066417f2efb1d6f6707475b94dc7414d1a1f7c63d9

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c9480796c3dfccf1104b8d5264d8350f663761f3a277f1bd2461386f3606b5d
MD5 245e8720467284e906011ec601a28942
BLAKE2b-256 ea2d42ad5671fcf6a733bcb7e487156d3c946989df2fc2e31821cffa1098ba29

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6514762e3f3f7c9ba5f1c86622f0c9adfdb530121abfa3e205bc99f7e79479f0
MD5 59ecfcf68f64a3316c983b2ebb253c2c
BLAKE2b-256 34a3e8bc91b1f24abbfcc2c6718a0edc5cd6ce1fd8be142e38fb74ea64df1ff1

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0063e6e8338fde731c1d588041e8a5703d0ae9817d62fa3c75d3ed3d84194d9
MD5 618090822449a1372ee9ea012a4a6a1b
BLAKE2b-256 4cb3dc2507be0063c8ef4a2ebb1fe7e3a46e32ba3a77e5d8f04a32c206b92c66

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd77b4a1797de99e2dfc919fc88f803c5826ad4a0f0a7a0d92c1b2329122910e
MD5 4fecd3cc0c9b21fdcbb59c9a540146ee
BLAKE2b-256 2dee246c34dbed575837cc2c57a49484bfddfc5f22caf6c8b5a368eae143c8fe

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f23e105b58f36c68298b0337e759e036e705e25609d3fec358bbbaea832af5c2
MD5 1d4c94257d6d128d8c7f8b49264b7445
BLAKE2b-256 d193f447d93f05f1ab544a74dd970e82ffb6a8b8e9863ea37c400303fe2161a1

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39b5d05bde90bbb17d3e14f2eac12162fc0d6bf7cfed34b4be9d72befba75161
MD5 24e1cd4adc7bcbed88bf5f9afddc6739
BLAKE2b-256 1e9fad726198e53af91fb0e106ad7cb9ecf046a0c78a5916a1d71fb9da0e9ec3

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 566ed19c3d88d0e1bf5d09c640a5e581202e69d937892b815cbf1f063c2e5693
MD5 9e3ae4ba1ca5f8edb1255564e1af733e
BLAKE2b-256 3ffe586d6d6b912a7ed827045acc483b959491abaad58f8e96d46048676c0956

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 52388b83cd16d8ea351336f4b62626b5c1914399b182334122c60a0ebef2bbdb
MD5 77ea02e83840b65c2d92c34f02a273af
BLAKE2b-256 28196a52bdec5c76a0ce628217b50ad340a0881f40c464e0f77f7d1a4f23088d

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1fd51d1bb15a972f9fc6f8e7e58a054d98876d2a9605295b07870d9d14a2c54
MD5 33447ba48447370e100c679fd651e931
BLAKE2b-256 7801bb7a8b56e1e5079ffb880f03c66581eb78aeace98a158e6fb966fed4c99e

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5572d9ed8fe839a38c1b84b135ecc69b2a3e2b20e841f67f01c1d624a5b7ab4
MD5 3ab1ad53b35cb0642d4256a616a8aad3
BLAKE2b-256 ae2583c787741267c817658de7c8aa7ff06e83521cf478e015c6452c137ace1f

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e7768d3e52c80b37376ebe0700b0d4ef8bdd8ff5daad7f9a6ad816e9d5f7594
MD5 932116e4569d1605a13a0027e1587d04
BLAKE2b-256 6a51679ea82b0a3deb4305884e7f6bdee80863c6897b27a0b50420c6d22472fd

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 861be07124253a1312fbd31cff875289dc80b642e5b03690dcf1bf4bdd801f15
MD5 b942494605933f60c72a0faeaf71d39f
BLAKE2b-256 4019d1b7716a4768d893e4d0bfa5f2f53f6130a5b0599c75502827541f99407c

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19ad7e4d4419df30c4e9b20f6a14b071dc190a9a375dcb847c366018fe7d2fc9
MD5 32fcc48ff3328d65544c5082ecc03398
BLAKE2b-256 98108d4ba42dd007654c5c5ef16db362ed1e912288acf0d56a906e1b9b98fca7

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 284117b3230c985409a136168534dd1f2e183831bdd8786f7bac7a165187ab3d
MD5 b124895f3acd47ebc44f7d8a5d9c5c4f
BLAKE2b-256 6e7c461721b043f01ecf676f2b425de1e6d5c32a8f982371c4715d9dba97f4a0

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 edda5ea6d2c1f7991f41e60332d4ee2f71cb5adb788325478fb1a9ae69622725
MD5 f04407ce8e9beb95fe5a8436e9817ae9
BLAKE2b-256 7e98f47f3cb830781845763ac7da0d089a7dde511ccd0a1d1063b275ee5924d4

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e0b91370bd9be4a53151ec75ce55406a0693f6ca3bee84bcae0c24aee5278c1
MD5 ee486acf2d0bf1cdf4ca68a1481f7bd5
BLAKE2b-256 1da606438d2de5401a22d2f878d185c463d5c29322ec27db29b706c6a75ede69

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eb2a7cf9ac33cd1f700948c2fd9f1153c2f0a574e5acd8d82e9b67cf9dbcf2d3
MD5 fa557690945841e8df455eddbe9f5647
BLAKE2b-256 983f3acda7d730e1976bca398c1d97dac28d3e266c5f81cfb7e487960841bf5c

See more details on using hashes here.

Release history Release notifications | RSS feed

0.9.30

90 files

0.9.29

90 files

0.9.28

90 files

0.9.27

90 files

0.9.26

90 files

0.9.25

90 files

0.9.24

90 files

0.9.23

90 files

0.9.22

90 files

0.9.21

90 files

0.9.20

90 files

0.9.19

90 files

0.9.18

90 files

0.9.17

90 files

0.9.16

90 files

0.9.15

90 files

0.9.14

90 files

0.9.13

90 files

0.9.12

90 files

0.9.11

90 files

0.9.10

90 files

0.9.8

90 files

0.9.7

90 files

0.9.6

90 files

This release

0.9.5 This release

90 files

0.9.4

90 files

0.9.3

90 files

0.9.2

90 files

0.9.0

100 files

0.7.0

99 files

0.6.0

98 files

0.5.0

98 files

0.4.0

98 files

0.3.0

25 files

0.2.0

25 files

0.1.0

25 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page