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.2 (Current)

(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.2.tar.gz (151.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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.2-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.2-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

json_tools_rs-0.9.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (995.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_tools_rs-0.9.2-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.2-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

json_tools_rs-0.9.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (993.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_tools_rs-0.9.2-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.2-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

json_tools_rs-0.9.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (993.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

json_tools_rs-0.9.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (996.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

json_tools_rs-0.9.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for json_tools_rs-0.9.2.tar.gz
Algorithm Hash digest
SHA256 46732447e5715460c7b94315fdb30be0e834277794005a72afb3200263f8dcd5
MD5 c9f1fbe0efea532174af9d5fb6480d9b
BLAKE2b-256 2bb9c6e35b9b0d641eb8059def1b05a702b75d740cbc579c7429aee966ba5908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02aeb9b3cd293797dc55e1f0a4247e8c74aacfdaca9846773f3f65858a5f1632
MD5 df95118c24d77fda43af49c14e30f7a4
BLAKE2b-256 787eb5a8e78eb0c2b718b24eb322d4b1b8badb817d43be8dcd307f5b9ec2db5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af429f7be83ae1f4b20bc5720038799f85f77c489126afb8617f071ac4617e2f
MD5 8055a1fce936a3b6a58cfac808983856
BLAKE2b-256 79d40de5448e84247377d4004a85ec9736c16553bc7793df064ee2604e470556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0310a6bd1561779ab37f4f865f079c52cd073f341886d9751b09f3f2f1dd735c
MD5 558118b11d8ee4b6ceff0afd3cc402b9
BLAKE2b-256 10d5413ea9c2a82fa83354a2948ee0ff6415a9a95a04552bd44cb281a3351ef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1cb3db52ca18b9d79e50d8fd1c192f38c7ea4b7ce99415fe712c008e8ecef75
MD5 24c371591ad46c4c0ba2b7aaa4fbb905
BLAKE2b-256 0de615ac51ee810406d07f05f964176b30fa587eb208e509b72375210f25113a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efef7b9409dcda880238a87c279ebea46a99dd78d71f4e4f22bdd0c4111121d1
MD5 a3593d0bbcc5665365e7f3711ba44d10
BLAKE2b-256 7144e55def6173dece18107653d58f3ab9f9993a66f4c76cbd404e79ac85f4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20041d8960171c20df61b9880e101c26cc16499d84fec8736e75a3b5d9bb467c
MD5 67eaeb4dada594fa243a405e78252a0d
BLAKE2b-256 ea15a4bc967e77dcb987ee1dd5ef0e91d0520cd983b433d70e2f3dafda338686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f6067de09b12aa644a69ce586ae66f9ed8afcd057d2986ba95ba71f47532ac0
MD5 5e952eec82e77c69cdb8e325ce9f4d65
BLAKE2b-256 2649b8ad5f0cd11e19c9ee3cf1fa8d327d1b767628a9a16296a310bc93552aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d23a896f805ab425940a755522a44cdc66d63fd7fc732dc32cd1af63cc5d9a1b
MD5 467e7e7818668696f7e4af66f12ac7cc
BLAKE2b-256 1c0e94e745360e471b00b72e6883ba84d47221bb6af702263426fa6719f472a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a9b778d9a2bec3ba8ed111b5b1936335668c52f5870f5daab903f389cb78162d
MD5 cc6721cd000ccd10b605635caca0bb4b
BLAKE2b-256 19b850e028f38f99b2bcb833f43a944d66cf84d6cea65a646b01f8f1005b492f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a737bb42e1f30a89acb504a0be89a9b125e9b017ee20ec815c644ddcd0d2d36d
MD5 0c6dd11d582d7216993d49c27db8c5ab
BLAKE2b-256 d1c18181ea7be201ffff759045c88d84d126881394bf00b0abc2a3f750ac66e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 25ffaa19550cae022864137fe728949d2ce6dd73f0ce95f69f344c8c5554869a
MD5 8f3b051a3f32e693c6de7a6bc49026ce
BLAKE2b-256 b1f1a196898ef2f3ccc70f848587ae8c4c77a5e92a247d3b8b10c77991d79cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e0d1043a18979623846b589f0cf82aefd292ed2851c77e3a5d712112b953540
MD5 1a7807a488bb27eb24390f09781a5b39
BLAKE2b-256 63b9ba69a86a5a432f029d363344a1f2211281dd3149c22694a6f2e507dd5148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4078f97b53130e233cb0dd29c76d5f4840d10ecf05467703b26c5e69d4038b6d
MD5 1d84ec6c98be4088738db121bab3e87c
BLAKE2b-256 015ab6418e6a560f895bc572eae8412fb421efce78e8f573917d6cd2c51de010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 850244533653c57dedad56423338cb99d596d50b4fee4b67d98f2f6048f9672a
MD5 5f777edee78c1f62d4387aee78166e1e
BLAKE2b-256 0b546e47c37975d5940c338af1634a27d8209688d9219ef9e02a14f1475bd5b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78f13a79f964c538922070c604d14c3a5f70f7e1bfd7dc6e50fda1492ebcaed7
MD5 fbbde3d2a9e10adebada12785750a86a
BLAKE2b-256 38816132835907f901eba722e3d2bd4ae59f9e648ef187303f4b786fc6250ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2d89cae8770aa9360a7cdf1b89693c43b764d5695ebabf7bed6d6013258c5c0
MD5 f14959b254337d39f637239874e29eec
BLAKE2b-256 c735de77df0e4339c6a6bf3a09a9fb0bc1ff0574e798b5f15e07d144b4e05ed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82cde66f55327e3150c2f2926e02c704c0baa29e8cffec140b55068281443b98
MD5 b1b4eb3bd9a828fa6e84c8f9611aeeab
BLAKE2b-256 4df8f934ff7fa8ae1989a8235e22ce38ab3dce74b6775846795a67b170cd3386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11894109c9cfc09df01ccb0b74ffa8d9cab4cd97cc69f222911f720b63f13cf5
MD5 ec10c43f2653469c825aba57c24f8525
BLAKE2b-256 1aa897175fd3fd730de5f187e017fd7ae0299c7a8699ed1fe0fb3658515929b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fabe371ee5e29ea11d16d6d236e29949a24f9be643823b76b7bf59c281bfd41
MD5 965689ec5898a8492615c6c9a8226875
BLAKE2b-256 e946d0eb16f227ceb3e1bd5dd7fcfad86b8e7e5cbaea0bcaa800a96e56fb0054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37e7b2e1e1d3cc78231c63bb623f32be7d94f278cfeb9027ffbfb3a40b8631a8
MD5 7b8f262d630e5a9f24ffbf425170bf8d
BLAKE2b-256 6f35177fcb6b6bf755bcd0dfcc93539992a709262ee92ce74f9163a955d40122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 583b237526e1919b2f0191253754f3d4b7d4febd8893277d4c9a11e093dfc803
MD5 d457b2d21648da431104c0f2657ab72a
BLAKE2b-256 5ef064c96d83ed9b3c6bfcbd2aa62c23328268215d502155bb88abe2ccacd17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bd8342293336767dc76bb2d57ac4d4be6b906cfe25439c21c62e56e33651a07f
MD5 c513e8491bff822e784db1a1f3d7b03a
BLAKE2b-256 f162e5573c9dde472e0db18ba424e0b7a1ced2581c122f8f1c6f47900cb288b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fab7edb293e8893d13a5cee3eba755d0c71c807333cafc750b14f6928d495155
MD5 d080230d7b792636646fef8404a76ca2
BLAKE2b-256 37d710e890d6467f046d7c5ae73b61614f0f3d382e7a44c862327e25fb2ae991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a319918c982ed25c05553906c2da74a4d9ba6a6bb3956a0ed3f07d9c12456a4b
MD5 f26f73288c47e4b389b749af27a8c012
BLAKE2b-256 b22fe038fd62e832c8462a70f9e6c33ddf0eee4f7c5e0d7c8c65987c604b87a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1dd0828b002cbdffae0c39b659fcb2e31bb1cbe2d59674b5f7b11102512b754
MD5 300b89e04d080852576514f57a323658
BLAKE2b-256 113e71dc0ea51f27fa3d78bcfe059faa9b82b26d139766078971c81cc7a209d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3ac40bfbdb4d0d2058dca68ee6e21265388a4e6e28d4e951e457cf7c1100779
MD5 0946b6d9863d5e68a569c6f66b78eb1c
BLAKE2b-256 cadbfc9da8d30165fbf0fa9322202d8d92268754b64c452b5b6bb9bd0a88f2b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84d46f20d9604aa833cc01cb6cbd113eacd1ef163775bfe876c6371698942aef
MD5 67dc60e10ff09bed2a353b327fb47414
BLAKE2b-256 950820b4195b1230f106470e22fbaa7ac0ab757158cc6bbfd3dd2ca65157ba2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26e81d5491d43b0d0ca99c9bd739d0624af208b003e781593c85dddea65cc9f2
MD5 653abe3933ff8d1de016b5af7be707b6
BLAKE2b-256 b380d5bfedbcc1336e300809f18562dc793ffa8de513b0b28f32e2397277da04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c3016108f8c063ee16b52847c9a515643fcdface59abcf522b6eb8a39260810
MD5 71398bf100162e161d93b6d0ca500275
BLAKE2b-256 0ba22984a386f28d0c76d64d3251d1fe1dbf45df905d8f2be02f9ad856a765d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8748e98adc345808c57396fbfa34e021ba3ce3787da00444d718f50179e43dee
MD5 bb95b377eef64d6d1e6fdb9c553ff880
BLAKE2b-256 75b9093ee87e18743a7e6a7d1cff1cd94cc819eb959680fca5bba63a0d5585b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4a830005f3ebb6fb5c4a38ddd4a541d8b5fd0ab9c83790bd306a04ba27237e3
MD5 bfa928f97331da17953996ac7ccf0677
BLAKE2b-256 fe0e43e4b5778012a8c54100bf7f1d475d01e5e7bfaf3eb76b295cc530e8dbff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 35798558c82039cab78213c31821f708377d45b57a229bf053bff82d793afaf1
MD5 8b309cec20faacb80afa663094efd302
BLAKE2b-256 477bcf66e80f37fe5ca34da5cad179f03f04c1a0aaa2e21fe0e76ee93e99601a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a78ae84b5bc240cedaaf46054c70953e57dd77190e5ca597be12b95171a1de3
MD5 6e673227af5ec4abe2f1be20a453ba91
BLAKE2b-256 1925c41372145c1e65ae15613e0e3630da88d439f581340ced5305c3741a1090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7897f1ba08f34f57b996c2f5cdb50f91936329127f5272af5adb4bda0e508904
MD5 b067643c4f8464f3c99f146181cb9e11
BLAKE2b-256 2db3b3483e5ef71f8baa5e9de08b14d8b0c31850457a8db2081a11d2a1d907c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2226a44008ff5727b36db2e2751b39ad28145bed33472427274df78f993f8ffa
MD5 df2a5c00174dca5170ad58606488731f
BLAKE2b-256 b51fbca73b8922f61d5779d755e1b75530dd814a47aa42fc1d2e9985193b6385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d56aa494d6f8ea93a2f6cf02e8a412df913d8924391c4f2252e5724122a98383
MD5 d67c76c0d4bb0faebd4e6a8ce691ce16
BLAKE2b-256 393188b390425448b5963b7ac2115a050938db97475d9a7b6c91b76b8c72b4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80287e32e85db58692e92b0599d012baf0fc79c5a9b182a7f03c08d103016278
MD5 40539b0bd37a31af82658a40249e973c
BLAKE2b-256 f32f5360a0d93dda0a3dea8a394b79c04d82e1ba84a079c050f2a41382664c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90447e220ec881d5b25c1786787b0d9a831fb209b78891c5478a2cff0a0e5a05
MD5 1b2eeab1fdd6c2d426b9e48a840b7973
BLAKE2b-256 e8d8a837f0487fb93025fc787b925f8b25ed050e589d042a818b29cdd91d8cf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e2478635927989349cd9181d23f9ff87215a017aaeb8d9ab9d384e4d16e5246
MD5 3a72ffbd7376d462e0d5f59502ee8b69
BLAKE2b-256 beef2fc406f25075d90b857c4a076691ec1850d54a432e7b1a9ec000f10d7368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b14e550095f60e260b26c9f43a534bd9f062967d7403ee73c401cf114e855086
MD5 00ed3c1cc2addcbb98b9a0eb3bc22f9d
BLAKE2b-256 429a33b1f7e253cccb970b14bf7b677346fe1b7111e006d353724b3f09e6133a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 842a0a6f2ab391f0da7cc40fdff1a475f199d410b4fac6c31253277c6e60a023
MD5 82207c892d508e1d026e52a5fe95489d
BLAKE2b-256 a9c1941d2944543a66fc5f0c590dd2bd1b7e35ed9864e9ff0ec0374885d1d17d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a84c2d3974b56466c16924c84d80004075ca836c8a27ada13f2a8defc3ad0b1
MD5 5f2bfbd93b44e44477ffe88fef83a742
BLAKE2b-256 2944b4184de4c6ca70b3782951db2231412a367a1139727c03012874dbe69fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d991365b0e3bdc2609f914e14cb923ed70ccb3fb09527ff72fad84433757d6f
MD5 acc096b936519207141fac9805e4f594
BLAKE2b-256 b93badb3ccf529606c957a37a8ae27afc3ae9f9ea12a5797afc8da956b87358d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0feb922d508fc54d116a1456a3b12afd5709aceb319d9daa82c98290a10bab71
MD5 9ec84199686104c32a1c60b8a82e1401
BLAKE2b-256 c1e415d09592df1fa337598b1770702367ba77bcdaa364e6bdb737e24f8c03e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bd1591589fe7eadca0660a56a91900d4b195e3ea32267a3863e5f47a9a6dd97
MD5 9a9ceb31d264e5e55a259383ef1be9ae
BLAKE2b-256 eabf9ed457d0e93efb09521040044825d4a770533ea6db65ab7f320f29d2e903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d5c543cd2c617c6a63e2481c3af0c4e38ac814a6db5c2d90f150a9085a506cae
MD5 7ae122a88a106b44737fb5e915eece69
BLAKE2b-256 b644ebb440d775cd33a5e462cbc924ea43afd99fb34c246e1a68cf283d7894bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 93a35473edc8117d824f60f499679095f30321471128ed33bab5c10735cb1456
MD5 88531ee87173ff306fe283886c1b24ba
BLAKE2b-256 a91841b88fa6ed9e58aa5b1387b2f70f683b8c1962a42bd7fe2e4ad27c0d12c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af71b8cdb115d9801bc71fafc266b859bf52edcceb799e621ca4932b29dde5e6
MD5 b434785acf3f1b52289a7bf1fa220dc0
BLAKE2b-256 74cc24ccdbb60b8f91e4b14e030e1c1e0ef8f0f17a4db5c4eb5d65737fb6024f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6aa3960d48b3444bc3e70dbb6007035513728bfb6d2a35532215145133773b3
MD5 a49b0c8e5f7f372dddc973d6aba1188c
BLAKE2b-256 c67835a152a9b12006b917e0caa12094c8bac0fad91f3cedb8f7d23783ce64ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfc183a7a1f5edf373eaede33a363adfaf2de3eb63ba79994fd9d47e12155c04
MD5 faecf148f8fb32b8d3ae56c0743cd403
BLAKE2b-256 763fdb7619af9ebe46734138991c7509338e7a3b29a98353344adfe817869fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd6db6a80d01486eccce52126aec1f5c00f40155b12639ea8d5fcdd1bb9f5593
MD5 1a1167900393cdde5f3eb7ff188626b7
BLAKE2b-256 4884bc8dfe711199c49310e8cc044254f96de859a46543e24b37f5bc979c769e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f46baefa0c5723c6f006b07cf19eb12dc85586621fd09b156705f4a614af823
MD5 833c64e0c5017683c9cab7e1b328a7ae
BLAKE2b-256 d5f7c21d9ac087dad0cdfc93fc89cb89fbf17166b9c35aeda3707dad50d15528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75b864233e0a6ddd59648aa4ae8ef2efc0fd7ec00162895bab412231c9314833
MD5 8209236ff4a0bac3900711cab46d0816
BLAKE2b-256 7941826a01410ac3d270a9e08c61da5c16294ad7938fc854d1bfcd9a4d522b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b02cd81d2ed81fb524792d0d3268bccc98c8a821fa7e982d3a60adeb414d1e7
MD5 fc8967b40bca46d3ac55d00a14676632
BLAKE2b-256 3733506f8c71235582133c12f46fb12b5110d77c6bbd6944b5eb8cccf16abd4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e937ae10398436ff0a711671615dc96af5e126454cec8cd77604124398effcc3
MD5 54fa72f914a5d386972c415f2183baca
BLAKE2b-256 014a307d1c2d336b00b8f55f779aecc736b5e52df0ca1f2d868c2778ab056e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7a0d5a43c52053af106da59f95e42980676b33f04b4d2d73a0ce29f1c77a2e60
MD5 c17c6f448a977a35cf19151031575852
BLAKE2b-256 439f8a4d519246d38b6a52321db157567e8e146113ffe1abf9f20cc13655c1a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c66c6023d51b25e15a28709092fd4bb2a671371cb9a0a8d64b22a0e4a774b7f0
MD5 dc45b2b1c238d16909976bbd3fc9d12f
BLAKE2b-256 8f2428577b2bf5756654b616ec8fbfe8103a723360313a5e3fde0dca3d9a7df0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7afb690698b00d0374bbca0de69931a40682b0905718cef245c48d0f91b3dbf
MD5 de5db60acd1c57a120da9296802f39e9
BLAKE2b-256 f974d24bcaeb35a26b21ac1ca2aae72b982cf07f64c74dd54b61fe80ff5bc3cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db0e848e0b6161f8f0a1f3cf56be8f31d907b421a66c60b36c823d508182c6f5
MD5 13ba38dc0e18a1af5ca38b97b3c4158e
BLAKE2b-256 0a4e72bf031e5bd6481abd5340677859782b63aed7c93a98c945fbbb99825f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93b099b492eac590bc326a4ed1ec1d1f1e06a02b32205657be11f92edcab3fa7
MD5 d76b05dc57fa0c82db7d18492216b2ec
BLAKE2b-256 fa05fc9681e55463dfe010cbdf844538d354194e28993fda94cecd04e324c1b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5146ec40cea9bdb5f292cc662ba27b3ec2a6a97969ff1b874f86ca4fc3c5a722
MD5 6e476f5b11e0d044c67886f42e6e1294
BLAKE2b-256 dec2ef89d69979ad2781783c79c0570058e2436232e52dc2e7ef29e6e86e8580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e14334700bda163718382120a53b3742820382160555f4ce9faafeb9069c2c67
MD5 3bf8e3eb364b0dbcedd397c8378884a8
BLAKE2b-256 e3a3e68faeac0720d1ad6b4edcf2459b3c0829e5cd644b9212f66bb92b594ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cfa3db61cec4080bb016e7c397714bbd464d638a4c030abfa84cf83c040de4f
MD5 b93182b8abb204a9c68933b499b6c20d
BLAKE2b-256 53f5404d7c18e454dcd0d909bb4783b64c0c3ef1af5bbf44b574d313aca9f303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09e8315394e9980ff5f1280f40935145a45243d9acef4e9c1d406a4cf5d118bc
MD5 09de312f5dcf5674688fbff2861d34e2
BLAKE2b-256 ac26bc80d3057421cb716680a24e9334921fb0493c1bf07fbc36d761f1eca2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ebdd2a6f5d19e33a8cb29eb68a562ede8733fff0e32de01aa698ca1b85fce24
MD5 47cbc456583fef74b6877c5325f963cc
BLAKE2b-256 9383ef119be7d212a7478e830d9100d5555e28e8ac315bcacb81eb329f1938c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 248ddd0579f8e1e1250f0545b5bd571628a52c1caadebc3d835724f1db9254d4
MD5 b24a19009d698d7bad76984e8f9e28ed
BLAKE2b-256 41f0a791741b97c0977b325699d4ebe60c1eaf7538578bfebfbddca4b3fdd5a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29c505f1c2994dd6e8a4871265feb6158ec5514c40e760e2ad0dfa28978cf60f
MD5 df01554767d8eec42ddcf65eb1e8b091
BLAKE2b-256 56ef71fd24ce3b8130e9b0b884935d1ccd0dd3486fa1df26b64b6177fc191d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2821438a52fc403df80dc87b23e2dfd461bfd7aeefb1b8a3df075ad43a8f66aa
MD5 16a3882819bee72124ef45c569fadb7b
BLAKE2b-256 6c9dbf4e7c89cbc8c5daae884b4656fad71df422d9dddd2584210baec5f4f78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 008c825803b8c06c78e973f7589352f33884d6a1f7390faf80af0a759e3fb9f3
MD5 d5ff2a716c9c33b7d85ad430fbbeca9f
BLAKE2b-256 dd7081ddf73d1d8af0bd090754d4e1da66f7b91ce74b25b654e9bf3548735068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1dc7665b1d8846073b4d2c538a5cb8934985bc2cc286f7b5eca7b58978e3b7d7
MD5 448b91c216aa96b251a9975486fb29fa
BLAKE2b-256 9d03e58bd7c80449de1ee3bf307307534a20b9ba49d6b9faf362c0bac2e7c127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1335cb1e28f84a0d914edf3f83d660a118d1adbce30d306258143ae83bf9d945
MD5 816719fe8ddfe9f3e34fbbfa1c227803
BLAKE2b-256 4b61352573d564e376016d2291c0c65af13bfe492b9e8fb105ccb7f002f807c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9d1558cd41c3f93db58a974c995d9c188e0e7eaf44e9f209b9ac4472353124b
MD5 191522b959854003b9ed62c7da2cb7d4
BLAKE2b-256 c307ac53a3e6e66bda67e6f3e35900270e9c01c43120848f0cd648fd00d1d772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fc8fe21562ed23fb0d3c97de87b474e9cef07f1f34c103d7437af4c80fac826
MD5 31969b4937d61ea866f24b3eede99169
BLAKE2b-256 2a067b592773861073ee96e091d5ea0a87162686a98bc6e284454d4e092e7bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d113c9da55a8c37963fe0fdc1bc18c537d651176b4a3918239c661a476cc6f99
MD5 6bf4096fa6966ff3f4bff7f67b2aa970
BLAKE2b-256 37320feab3c93df0172183432295761dbd10eee9a58a0abc8f95e51c4c5af6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b02d130703c8cd20ee5bffe5cebfaa78e162a13426e1c37130a76afef9d6a186
MD5 5caa35c57060a14b9beaa1b30f2e1a75
BLAKE2b-256 f26c79425ac38937fbfbeb5e29b11b755ae00f060d0558882dfcdfb2d9b41bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d215e1a40caa767c76c67c7370a5639928c45e605e31cd701db3b0aea927eb20
MD5 adbfc4114e577545e2cc58283e768a8d
BLAKE2b-256 c5cd4efb1983057cc112c17148fd64640c4ec18b88001e97930339086096e972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 004a53fcaaa3e5f3d7064ada2f6328d4eded107466670adc609c74cbb466e33d
MD5 c253dfb08321fc70b61d8297b489955c
BLAKE2b-256 0b7ad7bffc76a932fed5d4b4eb991aeb1963e772e429e34307058adce3f7dd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4825a3468fa0f6b8fb320948c75e3917c5099677595b9de072709cd3cce7820
MD5 7d88700c38da549f1be0d494abd3e9ff
BLAKE2b-256 1d2081a7545d348815d3425f9da484dfc29825d2b0fded09f63043772b1b8cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3aaa106b42bb2fca8759397501df58803e20f56387a02447c360a823a6da2ba7
MD5 ee1d82e516c59adccdeee3b4dbb92b8f
BLAKE2b-256 dd4ce7e9475c03c33df6c6bd7d87650cb5af6e428f3ce9695eefc4a2486367d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2494cf081b50a37b5a0e04d7241a314a134487ac324b36b6e32975c8c0abb303
MD5 bad4570d4c94735468dbb9e309242c7c
BLAKE2b-256 8d6f52bbbe873f2a2f34818fe985841b7904cda817cccbc39c43591f8ee5453c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8642002d5ad9e64c9d32043f31bfc3981096d6f8c89ee1818af8e7a436455b78
MD5 f6475b92cd129ee5101b7ebaa809b5fb
BLAKE2b-256 f6d5f0c544d9668e9160d69f57678a0691f0badb037c2c14bfcdf646b2b1620c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fff038cbd1aff51445c850d51236828ccfa2a02bc810bbf545ecb1cf39e3aa40
MD5 6c1f063cbbe9a72dff0c0765c675d3ef
BLAKE2b-256 e40bba34c6ff8a8aceea95f3e636b2d2d7373529e7b745b11049210e40d88c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd18539c96f094e1922546958d5e869aadf67b7e13e0dee2ceb021045b5fd745
MD5 27fa8aa864825c3d71626847473543d0
BLAKE2b-256 fdb00e3416abc0a66db9d4b7e5a1ac72b4900f1bdb009603133547d8a3915c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 567618744cc1872252245caa98662e925a0b5a4df3fe6b13142e3d68bd039b57
MD5 33aaa90f7bf228067df60ea0da609e34
BLAKE2b-256 4e59781fde407b9fc88b98d1d306b017ddc87c322ea24fd26eda056da459e0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72f5dd7830ac7dd4e6a38ab27b6865df5a2178e124ddc5f03e310298aefb71fe
MD5 6e05d9f3a3ed157c4de888f044af60a0
BLAKE2b-256 5e4ae7f1dc39340c084a2d1c5713b2694b2910faf5a0a3191115aa297faff49b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b06f11ce2a88e8f90228da5483e74976ade4c4af558b5d84c42fd023c9b8288
MD5 bba01c60fc8d58fa78e9838158927b08
BLAKE2b-256 e553b927249a28b8ad0f1532d35ea82875d4d3928a35a766896627da2cfbe100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d23140f820ac0d32cec90d594b9526490ae3f72447cf616e268b36691ab7afd9
MD5 c8f0de8e111215b8d7d6ad6c8dcff96b
BLAKE2b-256 c9a74b6b3f2cf295dc6ced616eb8bf908b2fca500290e1b1a32d6afb9ac99367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da0896f2489a65493189fd5873a2a246b20e335d5391e26d81fe39e5f4f58e69
MD5 a344b82162130cefd1a0096da80f8c7d
BLAKE2b-256 61f0eac074b728f8cfaf118d1fc80b65c7b84d25c40b1cef453c0a41bd4a41e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e3957bc7b5a1049f2a53555fa33b36552fe8a185bb880d8a0de3ee1472ae9bef
MD5 c1e11dc4187957a95a6f9704b12a9248
BLAKE2b-256 cafbbd95ae41b105d71024aa44db8d939377076a7b6100b2a2541cec0488e7cd

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

0.9.3

90 files

This release

0.9.2 This release

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