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 3-5x speedup on 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).

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

No published artifact yet -- 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; a Maven Central release (io.github.amaye15:json-tools-rs-spark) ships automatically on tagged releases.

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 caching: regex, key deduplication, phf perfect hash
├── 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 Arc<str> key dedup (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) 8.3 µs Deeply nested JSON objects
Wide objects (1,000 keys) ~337 µs Flat objects with many keys
Large arrays (5,000 items) ~2.11 ms Arrays with many elements
Parallel batch (10,000 items) ~2.61 ms Batch processing with Rayon

Measured on Apple Silicon. Results may vary by platform and data shape.

Optimization Techniques

JSON Tools RS uses several techniques to achieve high performance (~2,000+ ops/ms):

  • 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 with rustc-hash.
  • Tiered Caching: Three-level regex cache (compile-time phf table → thread-local FxHashMap → global RwLock<FxHashMap>).
  • SmallVec & Cow: Stack allocation for depth stacks and number buffers; zero-copy string handling.
  • Arc<str> Deduplication: Shared key storage 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.

Changelog

v0.9.3 (Current)

  • 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.3.tar.gz (163.7 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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

json_tools_rs-0.9.3-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_tools_rs-0.9.3-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.3-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

json_tools_rs-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_tools_rs-0.9.3-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.3-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

json_tools_rs-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

json_tools_rs-0.9.3-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.3-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

json_tools_rs-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

json_tools_rs-0.9.3-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.3-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

json_tools_rs-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for json_tools_rs-0.9.3.tar.gz
Algorithm Hash digest
SHA256 294cb7f6c7e26d9e960c0952f37ee6a7b96a2604733d52fd3c08ebec3bb256d0
MD5 75d845e6eadefe8cdc222c20d92d2382
BLAKE2b-256 b34e2245ec78e49a375d77fe6bd1a2166f25b91193fe5e641483fc73874ff5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ff8cd07b5e7524eee859eff6a1aa8420a57413116133e5a056e73023fecdcd3
MD5 1d2046733ceb34ad3a99c9b55e9e0303
BLAKE2b-256 883529c8d8c560ace85eb4d923cff376e1b756871db472264c062512bd9b84db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9d3cbd39a67bd4ffdb5e7357e947f1b539d98efe619b0773fa7c03280147757
MD5 bd37825fd20a1ed1bb7a730fc46bc309
BLAKE2b-256 9ef2aa4d4b416bbd1138b524bd7e8915e399d2aeba296ab24548393079d9d1e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ddb906ecc938708c6ad06caf2d047f6582d42f8f549ccf898f3d31822f41e99
MD5 cb20cd87d2097e0d24eb44afd0e21cc7
BLAKE2b-256 812692600ec2d45aeb7b5c0a22112e7aa93b64bc89be8f1ce57ab9fb67fa6863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60cc6e25f00a75bb616b37cd3b55ed1dba1377d389f510792efd34934ef40b89
MD5 7371b62509758e5c30a26d9f780bd5ad
BLAKE2b-256 6e0adf7a42d3a7e08bb313c733afa974921623d95158a76e171f31056e19cc53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58e208c5fad9bd2678ef5a29e7b1690be6599b60a199ab1cf680986dab52604d
MD5 65a8a9eb225dce0f4b6aa5ca764c916c
BLAKE2b-256 2ddb68833651bf4e23c83d9a31ad38a7aae73b63d400a74a6fcbb6a8a69f11ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a406a2a4291d3443b2ab92293d36f0337ea5041a00aace2596fc4318007982c
MD5 15dd024355a6fdf172b94b1e54c17d48
BLAKE2b-256 270e8dedb9c9b8ae10cd12a11798cff55930dfa76f3c20a3a920cf3d49604296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4b40ea97bed5dd15186fba8d3a00253ba7824afec0bab3a6ebb0c55a825c7a9
MD5 9e25a3cd426591915a0cfd6f52cba0bd
BLAKE2b-256 be72ca1672b175739d9f080b05b81b859c687f78905243185e4dedc834522366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29b709284973a21bdf0add25f4dc08d0c834a30dd01a5f866884121f5a15603d
MD5 7141679b3ae663d011ba8eb335aed138
BLAKE2b-256 3a238c8b5aedf79c4f4f1c77dd69c4a49e3dba30b2fd3ce1010ee0dbca5389c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5f7194f8a06bd3bdc99e3f633d7db3c9a83e0d2be35984f2a699f5e131b4c4d1
MD5 1a93ab6d75d4a730bb3734224f1cde24
BLAKE2b-256 3ea0cb335b1b34a3477602525278c5343e5e6acf65a769ae4aa9226bdd270cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a0278b0f53bcea4ad6e75953445f66f8e4fdbb59c7732d4cc99269ff6c34a47
MD5 f165e8c11995f95e944e594285a821b6
BLAKE2b-256 cc23ab3b67f841ddeb03b6de81c4d322b3d765a44ebba8ba4e75fee03dc2791d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3a1e7d9eb19248c5499303d72974efc7f33e2593f9a2e6c18ead4f3011eabd7
MD5 5a033aaa73820390b4e9b0662aff11e1
BLAKE2b-256 e44d4763fefb64b074f21ab03f244078fb7022459904d12312d2bc53af6f3da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed21e9177cee560358ff4c237b3f5af79d530f01d3c457751b6c523693cecc12
MD5 2c699e99d50779ad1a711c7d3035b0db
BLAKE2b-256 4e65b4f40065b14bf91ef9425267aae99c2970ff8876134c630dcf4224946d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21173b848705a67c67857f423b82c14160b2287188b0573cbe672e4bb0cd66bb
MD5 cba72a0774c84aa6a3d9f0ee4f69be7e
BLAKE2b-256 098bef17858cbe736c2465055827f3f950c25022d882bf095853fe302261c524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68ed9d074b411b6a43aa4e29e953f7f7386138d72cf393888a9e895cd1d4d53c
MD5 428961eed2bb1e0dcb5d36c5fef7b207
BLAKE2b-256 9f1a2dc0650c135f6b9858c645f5d5132313383e033f9a17526fdc4ceae2e5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7112642964de6ad2541e9e387974d0433bc4d240666ceee128d543276cb5455a
MD5 cbbc6140996591e6e0639de204f0cae3
BLAKE2b-256 88badf05b74a50afc5121826772fe3bdb61dfb058a96e02b69ebb429f588663f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d229c30e655fc7e8934339b1a5061fb900b3547fd28a6bbf8a5c737ca09b9d3
MD5 0734c7e3257038ecb33733c08a6a3e9c
BLAKE2b-256 3962d8d0fdfdda0fdc62e730cfaeeede21bcbdd73a21fdcf006a2bce561167ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc511eb9c6938d68637ea3e75cec0d5b6912e3083ad88b3d0868d182a4e4959a
MD5 3ae4e88cd8cee4e857632338f80e96aa
BLAKE2b-256 20cf461502261eb227b88d233412076b559b5a269a3d68717523ab4707c6f9f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad4a69985ea82835380dae117544b6698fc4bc814c9bb213dc8d906557424b91
MD5 e132db44b08179d785b122b5856b498d
BLAKE2b-256 6529495c7517fa9217458f4af5a8bacf9e0b7f0bd32ab84e9d62cd017a0a9915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3ca89b0bc0bf51f6d647a0dc9663cd4c43709631c08e339fc48ceccfae71b80
MD5 c6b6d842bf7bff2dacfd9e365cf2338a
BLAKE2b-256 6ba4ae0b540486e1b92ad4316f316ba2bdf60b971f14d2beafe544c57fa5f6d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c63ba57988c595a7cd74e0c5b42f77eb6cf5cea246d8577188020cb3ff797ed1
MD5 5e053276aa392b407a1c75ceaf9b39ee
BLAKE2b-256 384c65fcc93a68f34d92b65eac2f3bd8a38cb708b82286630d2102393e37c00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6883b2fe20e1237087bca17afbc19e1d7e8c6d6e80a55a59b63df2cc3ea5e20b
MD5 af18b894aaa6e82cfa352ce10840da94
BLAKE2b-256 5860e442ff72766e410fc7d6d7e94293e1317c4d8cd9702a3dc656d1d8952657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef8b19c3136ed980f178d4e182d2654762bec4f8400643e15f4da43c8d02405d
MD5 a6ac73a2c049eb09080577084e02fe12
BLAKE2b-256 87ef493e89c3c3369e28cc76097d23bf97055f2f902efd3223bbb94388089e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cb5df78bf916193f62ab1a6e27b6ec937a8099e722856de46e2e3ad482074ff8
MD5 a22147a3c56ee89d23a7ebf7b84da7d9
BLAKE2b-256 09a55cdbd74cef2074ecc3f6c1e687a07b668f4b49fd684e12311d03c044a7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec58fdb6aa7f4c60f7dfbc1ae1f3a5ea947996a5bfe0dbfff52154882dd53ee9
MD5 c06bf926dfe972beded12a33a3703fc0
BLAKE2b-256 bb4dc5d29efd6887b7badb410ea84ed1dbe2af44b301c01747bdfc3bb7e4d0c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a5e47a9fbba7b7c77e93e5ab4ae62b7ef04196629245ad12a7320beb262a1ed
MD5 11c1d9d664285380cd9b497c6dd3b8ff
BLAKE2b-256 bccbaf3a1b4271e5170f63523cfc2435d0ffa1797f1e5523c1130807f5d77e25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6e61cf302d31255f9c6f52ad083bfcabfd13f2b5096c74aa1e40719777ed96b
MD5 6c2c54d7896bd7c0c3244c45399e424c
BLAKE2b-256 04d5ff0a55db00da9db74198585b8fe3afb2040bc692252e7c5371af3ea1e9c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96aaf91170134359f5d40f3232c63d9fd5ca437bafcab00a02639021768daff7
MD5 77a02a28a1244003395419b9004ebc2a
BLAKE2b-256 bc7117a05585f32ebc8e42a593f3af1520387d82b9397a23e93ad1c24bfbb533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d750fbb3ae8d0578aecffc5b6288f9c1eeb6a152c7ae36a7b7cc096d550f5786
MD5 a5280f8e730f987ab84f7efcf288f844
BLAKE2b-256 cf7f0d2e93db09b61c7384a6b0f3b603b18f62e938633fbac2d8e6a881d6eb90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1617f5e5ee77bfc7a8c06cc4f124f772773972ed0def7c8ce55c39a081e518c
MD5 d728a55d89d6b1dbb1974a494fe14654
BLAKE2b-256 5340de2143a790cf1794f1721699c8050429481b0f07de45861dc99b6ce16a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e302a4115c13d8f681b20f2abe113db8110eb6a4c42d67b3419693ee22b700e
MD5 bcc0cb07d4fe5fd398b422c92ab372da
BLAKE2b-256 611fabaa573e4f34a1d02ed9f0262164211201fe8fd986bac914088a636cf062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7e0a60f9d3eec66aee55c57a856fb689ab6b9bce0cd5aa4995373223d84907d
MD5 0e005778320de23da51cc1c89b5348be
BLAKE2b-256 54c69fb7fd1226a784055279082356e3f182674a9c0a83d4f5da78b84a90b4a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 507fe0460518f8c230346328433ee0454f72369dcbc49aa1cab40f665eb0aea9
MD5 efbdf7b5c166b196b73f6b328875641c
BLAKE2b-256 89110cf54708f9f03397442d3fd40acb773b83f6bff83c66c0638117b7bfb2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94f1a8f1e85311f277ae2a0dd0b465ac3c53e8f09c5dc241e55d7f8a92fa3cdf
MD5 53992160d485d31a82e7d00221ee8f89
BLAKE2b-256 5cbdd528f6a36e04a2cc9729fb15481bb76e241499b9a394f1a2a445171c7c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3173281c013bf5370757f8a455dd78ad4e0e584c2f37c72246aafa4069136d91
MD5 231899c5c4c7325c2d7af65199b6b83a
BLAKE2b-256 030ef27befdfb64bfae65bde395a07bbd1c41d621b69408385efc41e20462324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 311887af14ec6cc3cdb9af2933a34188e9b726127919ed6c56d57d0df703e320
MD5 19526054a3a46420462eb98912664bc6
BLAKE2b-256 f9b41a02eec209102fea76ecac673bfacb9fc9901d2fa67c73a22b421fe920bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9927770c557cbf6c422c66257fc9c9253b53fd534b02fc26fc53a2e0e5b3365c
MD5 887752f960098015a0e6efa36df4a036
BLAKE2b-256 b34eb233f8bbe94a9699c482686c5073c61f4a664a60c95cadd689c380ab4f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa202306159d3dc670285246df797e171d59919a84512c7423e90f648183aa5d
MD5 d1af3b57cd652980170f8efc8676d7a9
BLAKE2b-256 4f28a2fb56be8ef78defe5eae8a294997d33d9b7919cab274100f54ffeead627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bed6eda310c995954f5c0b64d1dc2918397e76559757d1288026603c7ac98fd
MD5 de55e56706768954e1c9e7ccb7f2331f
BLAKE2b-256 c8a3be44c536f6c6c271f879a49fca9f89b585f6068c0ba4ebad644268e5b3f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7922e3207df85cb3daae744ebc2082cd0374bff957a56733270a21ca4a3ef74
MD5 5e14df938c54424b455b8c88a2756a40
BLAKE2b-256 86680a4dc1d6d39111060551d460a0d8789282282a75fc6e0fa0cbad3dfefa5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d041f015d4efa426c39c0d4926df2749aa241f0b7f6998a684dd3b172e2ab7c
MD5 5cebc8edbfae31c70ef29410cf9ffc7f
BLAKE2b-256 3c4f32e185d06e44498924db6401d8b497d17af6dff91e599cfe3ae23de7ea77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f89b97a7fdfd45c14b21d495c8486c86288b6f195396db221de73d9e7ad13b73
MD5 43fd2f86f6bf0f26f53f7c577068f910
BLAKE2b-256 f9b8c3b0fc54439dced583e47854279b2c21c82ca1a6c9e2d6fe7a699d2500f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 360affe75f6f3d9156a1dcaee285fbcd317cc74fbe01031a2b027d06c1d59368
MD5 38f7ab1f5501580b506554733a948952
BLAKE2b-256 b24882690a8322acbdf347af0560809f79db0bbcfaf581fd5a487b88f1c43b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a739b101cd7b4a7144e52f87ee67b7812734b125f044552f8fb8c0443098af0
MD5 519153df9bd567db7b6a01af77913e0b
BLAKE2b-256 bf3f90b2821de0f475b6735b6271fda55304d4ca5075c66f2134831edab66b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a4c63651892d71337e05fe46cc692bc881701f87716180bf81ce07403f586e14
MD5 16493733aa897927072ae5ad15bad3e6
BLAKE2b-256 649433ed8f6446cc060851655302c1d89d677635ddde414e4b1d127853f19511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24460ddcd934f647b2888e82fa74aa783924fc03e0ae7b1e636564307145de4b
MD5 843b50c53effe16ca6284994830e7765
BLAKE2b-256 e7cfc537b5b19755c1709d5ab1055021ce95ecd95038f137aa674fea4992f441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff1e3e567e743e5b35ff8c2ae3e6bb44f7f0cfbe0bef01e35bf2975bbfe120df
MD5 03d1311293756c1f0ee76838835abe92
BLAKE2b-256 12bbb63bf60ea1b1817aa69bad9b82bded2eb8e5a17e34cba318f32dbc7878d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 683bcf6d2149796085883c03f5bb09871f99eef66cb81007eb9ec7d4a93c0dca
MD5 57d9a4e484443af329273a499278fb29
BLAKE2b-256 75d875459c60d93a93441529b121100202be900a451abe77b6852997278d4e87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 217d1af2ea8f35564621310faa36b932ec6b40be3c38f74674e3d38880de4c0e
MD5 a8509c58f02a295d183fb5d059f91fcb
BLAKE2b-256 c9ab56e123c47c5a078d4e32ba98825c5c59165364d4ca053b3e11c401a44a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d3256e9a179450277053f2dc17335626253e1e67f7d84ad5bb91f3995a7c544
MD5 6095a922d197a727a1e2efa5d91dfd05
BLAKE2b-256 b43c74fdf346ca7def2d428d63e1b51f5c2650f580f358a7570ad2a4da708533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11fc7155d22f25b9691ea81344b9b1882a078596e4d0d82dfd867f0eeca5ffff
MD5 f08cc3a164bebfbfdfa09a30f5191866
BLAKE2b-256 27e7a3ef19a1eef3bc2194086561276ea153f437dcb191e32865d19406ffed93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b531d5f2dbdb70dbcb490fc5b29adac3e3d37602fcaf5856430dd86d583c6409
MD5 b17393093789d68a2260816ce8198c27
BLAKE2b-256 2afb02af0c27450d595289a2b1331f37a0c20c614f66cd93593e33c7dfadfbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a260191a53d643421a661db538139b1f3c545676239c2d42bf579b2d4032eea
MD5 c12042e31fb08865cbc32640e78ffcd3
BLAKE2b-256 b4002427a09072c83a09740f97ef33d99efe8f3fef93e148491defdddac40fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4e7d0ac8f5d6a51fcea61029ba27380249f1d7ee70c37af38995e583f772422
MD5 f36eab05466b035acaf826d024253f7e
BLAKE2b-256 e978efc48698ae9500f91f0b7a1a8cd5eab49a13f687da0a4ec3ebc9f5908487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4fdc67d83ad86d9d82deb1db9200146713e8572e4cc7521daf0504c4e449df8
MD5 cac165fec580df9d6f80a176b6f6f800
BLAKE2b-256 e7bd954ecb0d6906df531086abf1fb364ea557566c412d274d8c1de2153b7a53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b62cd4e3c6577c8c91a900f15a3d30a1f2f709ab496b42bf63d79fbd54b6599
MD5 3726c463bc50858e22d7f299d5b1888b
BLAKE2b-256 e0a6434617087b27e3374eafd347c096f378c4c389a453f7ba798e6848222297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5feb295583374265774f98f0c881c1b69654c03a879a526a44415ee79dbb93b1
MD5 45d52ec922bcab23e2849dbd4a1fc3f4
BLAKE2b-256 4bd1da5c33cc3788722527f75db780ad2650da767f08577b4ba512dbd457e4e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c436884c5d653254dee59b6a279f4ef1e07b41e1b203fa450cb475d01e68af3
MD5 07b816fa34ab3053d048f3a7f0a4d84e
BLAKE2b-256 6d2c98d85a2356e2fc80e11bc5a23d711fde26ba375d2f033d00ea95150fa52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efc8da23a68b025ff215b48bd9a525c1154001baf080f9fa99b3b14973b573ff
MD5 f1c210d71f5845c88547b081f7a3a5e5
BLAKE2b-256 d92bbfcd157f324b6b647f609f44c5e6d23c672a8671e275e136b0efa608f65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea250cdcc889e9416e3e7c39c282a87a78dc159d47d08d2564c4e3ce27618691
MD5 74aac37121ecad16f7c049401461db3f
BLAKE2b-256 ff3f058f13b592d648ae6efe5100ee5247683e9d3bae264183cdea159670a6ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9169f5b6d46a93eae55fada1df614be45d6c6eeab637e350d52185b6238f883
MD5 a72f4d96467621117abf07a5418eb1d9
BLAKE2b-256 3d70c55b799c58a1285ddaf9993469e48a84cb83413869c8a28a4da091634df1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e872328a3546e67a3370d05387f81c2358d9093e33172041e31ea21473d49d52
MD5 bcae6e45a079785bd392187ed58f9f6d
BLAKE2b-256 626332f89878bf00bf9a7c4e906fa3e8d50bc4a91b5b870e95ed8f7f0cd4bac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76989da25d2f656a0ace31f062567cb509bef714ecb1a16bfce4ee70e5a0b178
MD5 3d477f46436bb7a0a26c0f84a275fd3a
BLAKE2b-256 f001cae6bdfef47176c89d3080ccf22f8e7ee6d382d09d2cd33197d0dfaf3fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61d68d867b04ff82b411490ef87186d9ba589a6abda687fc6b8adaaa4c26931b
MD5 345b9e1fe8885cc773e4f0704b39d29f
BLAKE2b-256 77b652c7dfa22f76bad06b7ef75d3f1310f6a901e2c815c1cb8728f3036c7b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d565a266995a635044ae57f9c0762f008303e903fed51fdf561375f9cd7a4d4e
MD5 e431e17c5e3c95245434024f20f8e521
BLAKE2b-256 955a396ee78d25ec471a6ba6c208ba8e44456d3e374c9bef895bcd5d1a64149f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bad3fd4b6e0a12a6c2d12acca905918185f3d80bf5fedcdb67c35937935007d9
MD5 d799f9bdd4549b76ec0f7a11b099b534
BLAKE2b-256 c4a6c74dd0f0cdae3e3c63be794c83039457ffe0cfe72f927267c8deadc9b3cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99d9e51699bccb5251066f41dceb2e4dc33c05678f75592507707c6070072f2b
MD5 ee1828a94e921b157130ec158a12de67
BLAKE2b-256 0a1081da5b1596e55a0f3d1713748600b20bc840de73c040804aff0fd26b1206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03c5c45e1ef0fbceae85e2ef2cfe48ff71acf3e08ebb15ea0f18d28eb93432bf
MD5 b1ebcf616d62258e3aff4e6adb2abb24
BLAKE2b-256 a205fcc23a64ce927dd4043937bb1ceaee074623d0f28bddcf17c735f8781b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 490b283af8a48697e8c5879622e694e7989b05fb8f80c7eac69be1acfc5afcad
MD5 b930b81ca0935228f25eb5fca2f0130b
BLAKE2b-256 5ebda487817eb4ed18461f905fd6f2b7fb6fa51e913f9829df338f71f313f400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 302e3856ba6fce9986539c96573c942ddf04f7810c8249f658b662a7e7c5e93d
MD5 0d959d8b0c6965b7fc5f1f8afb7bc85f
BLAKE2b-256 4e223c86b519471e81a0104af3ae7c4d17c2900b852ba87216664220a94379f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61b80db615490119dae022387a2558c52216bcf12c756c375aed7c86265043d4
MD5 63f2500b2b89af4cd8138dd1aa79af40
BLAKE2b-256 93abfd8ae5287d117d7d2adc6150190b4a2d15cc065c02900a18d4de02e5b898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6bd36cae71b8651d44d0892c2ccb222a127d8abe4c9f36a34014f190ab2afa8e
MD5 8f41c79c5012c54f0c2b3b2d56c9dc9f
BLAKE2b-256 102c452e6e461862b737f53edb035c4e9466ac4443aa3c3ef94a901e973308ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6cd85c01970536c8b3525e0536afa1a411e19f7d38998a07e2172cf97089782
MD5 3194703fee3fa52918cc361aa778d0ad
BLAKE2b-256 b45a32b06405691df36e904e325c5cd46db93dc11d6c0df19e2046cf10aa87d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a9dc141ceb2e8535b5c23ef8295c71334cf2dcd655c33528f15bb871f13fe07
MD5 47601c18e1ccab17e3f609c79e66c286
BLAKE2b-256 9e2e21f27b72925fddf5ceb8eb3b2f06c422459ca8a446cf68487784abe11d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 734aed1a3c79134ade2c33427ff7f9c28332562063efe90c41a502c08198c000
MD5 c16fb22340e45c38f97ac8d65a43401c
BLAKE2b-256 77f1c42688f075bea8e79f7e07bae3d7754a8ad00c6cb276fbc1fed61dd6c18a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bff4e17b18abb105b502aeca41220574c8dbae80889c56ff08976d2b0448f406
MD5 3ec4703347c95f271fd1bcc5f0ea7239
BLAKE2b-256 e970ba1507f1f26e7a9d1b210fcdb6e44aa8dcf1b85db6bf86899061a94156e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c9e43eb8562eab89e450a5c3cadf8ddfd3afd239ebb30e61f9db89ffb051d47
MD5 92fb57b19b29de7e9fdba4cc61aed2d6
BLAKE2b-256 18f22c285612e5ed12fecef0bd853d801acf828ae804d05b54a11444d0e1d2e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47fb9a6b692ec48f990b988cea92353026fe1ae44808f58e551b4dd4b3c4eab2
MD5 7b58d2a149b15bbeb7957249bdcc4649
BLAKE2b-256 b542c1128832a0a07b0b7041a15b485cfc92860210255315c902dfc71db18f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 989ebb18c1a63dbd7310f1dffff2f00906f391d08976eabc2a6ccc17064d3ad9
MD5 e7144c0f7d067a0d851252bb3f4ccb2a
BLAKE2b-256 775f7005bc555720e2f2f25f1f630dd64dc7c206fdf5c36b8f4880330f55faf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b56b5a096924625927b0e1a815d54ca1344347ae99e05bcc2cf21efc69656fe9
MD5 301900e5f1dd5e19d5e4182983b10670
BLAKE2b-256 9fa43d1b3451fa9830f8a36663fa9723fa6553794dc14bef5292a752f4c5f1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bd741006dcae98741ac27fea2942c66164f0cb59206e41712711a75862d8d4f7
MD5 26311fc9b4cc8d7074fa7195fd900f0a
BLAKE2b-256 91d0068f66e288bd478527bedeea8be8f4cf1e9ed6c53c9fa751def1a6cd75d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0f71ca67cd93c4a3756b12b1cba05313cc59f1789bd06a71c8abf1bf16ea250
MD5 fd8988919aa189113fed99c458032515
BLAKE2b-256 3059157753319bae49b3a075e0599e9dbeb5a5ea82214e55bf493cfae2126142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a5f3e16e8820019b09cb87e3fba0e7a5df1fe950d36cd6ffd47963d1fcd213b
MD5 bd8cb35441b71f88b75a7facdbbba167
BLAKE2b-256 51dbf1d0efe75334b5e73fe4da3b648626edb699d8c059a562be962ef5541ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87fd297e20f4dc67712e78b4b968119c39efb6bd8bf27f98739ed19784dfe02f
MD5 1fe81ef8184e1b197071d7811f7871f6
BLAKE2b-256 a4a195a2f9b9ed1efcd72ebea7af9d61b939093b9ac2002dad8888829ea51fa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a751a29eb3384130185866403e0317646f1c039b5cfb2123cdda87d30134afe7
MD5 b0483a4556e0108600f5318c6f9ded83
BLAKE2b-256 c84fe78d87a42b12c4a4cf25e371f34239a66aaf083d1251356ae66b8bba1d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9722c4e3439b188516c489458302c2de19a383387131a9698a39a17b852de444
MD5 6225fd087791a3b8d0d932dea942c326
BLAKE2b-256 3044c2aea7bc85d86fa4c18e8298b2fa4e6e4ea74046e83722e682fd4db6c65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7dcb109dbfbfe7e98208ad80b9001a4bef3b5f72b4260c917741185e2f65c470
MD5 21161b138ae1ff3ace968e05f95941d8
BLAKE2b-256 eaf1a0092a37063158669f16e851c45e6800eeaa5a3f14c955159358e249656a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7771b1545be085523482b611236b071909bdb63017363caa0cb9e71d12bbf1f
MD5 4e0f9cd77ecf6e24e970571d169f0f82
BLAKE2b-256 2169f507bed9936d1f3707b480e60cfd66bcfc02b7f06d5d0d9c0b70b7bfaae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26ec72dd9caef9f8d7a625ed75cf82721e00c1cedac4f8dea943d9933e7c176f
MD5 873a0d91b123ddfef639e320d26d70f6
BLAKE2b-256 b23180c9ce3ac91c623f105ee555f4796b5818e3827c98fa06ebe2933ef4e190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e1b454adeb3c99d8d70d4391c0bc5b1204ff7e61aa0aa1cc6779ec89da32eeca
MD5 3f053c081a97c5a35d5e576d03b52a24
BLAKE2b-256 9d6ab2a633906e779a36b1afeec065dc191fb2fc61b314e54c15821f321d76e3

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

0.9.5

90 files

0.9.4

90 files

This release

0.9.3 This release

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