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

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

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

v0.9.3

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

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

v0.9.2

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

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

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

v0.9.0

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

v0.8.0

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

See CHANGELOG.md for full history.

Download files

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

Source Distribution

json_tools_rs-0.9.4.tar.gz (181.0 kB view details)

Uploaded Source

Built Distributions

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

json_tools_rs-0.9.4-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.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

json_tools_rs-0.9.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (995.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

json_tools_rs-0.9.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (995.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

json_tools_rs-0.9.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (994.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

json_tools_rs-0.9.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (997.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

json_tools_rs-0.9.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for json_tools_rs-0.9.4.tar.gz
Algorithm Hash digest
SHA256 c379898150e7733583910014d2c3d9208d1e0ea28e22f72e7fa14d30759d957a
MD5 bf5c774e6e1eaa917ca6e61ac0cca3e5
BLAKE2b-256 b3ca8b63fd4e0743b6cafba9735dad5f863705f2b873d71743988e916c8501ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c800f7ab91ac92f2043612220338c7e7df697453b131b52f5a8944235c940494
MD5 6f77623976a14763481944731f7b2050
BLAKE2b-256 8dcd514cb3d8fbd92bc38df893affa5e4f83d17a77ac89503287688cdfa3dfeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a14bd2173ccdea524d505000480804a57901a2490a55319bbfe7f7459e1a275
MD5 91f88685ccc4d346056106abac1aab45
BLAKE2b-256 e289086b60e04d5e30fe1c347a5be2b50fb8422f188efecf3f1b23f6ef652f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebe6fea4a3f9cb2810f59b02b1157a69962666b7c0977b568e1a8f0bfbf3c9de
MD5 803e61198d22e9153dac9d5c9454c414
BLAKE2b-256 7bd25d33aed88f4c48e6d9d2f2d483ef6dae615f87bd9f27b4cd5e6574ef1bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2869f2dcb22ae0269b2e2201109c098e0da702e934b433b312c6dd518239233
MD5 24e3d4d9008ac104e9290779894e3a75
BLAKE2b-256 43a11f9174da6a3d73cd7b5cc57b59602f028e4aa9a51eba66f8bdd6745c2591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fcd96f6d8966a4974b504a1c26794fd861173033ef4c2baf6530d70bd3255ad
MD5 ab7c8986238f0b3a9d6a9735007efc88
BLAKE2b-256 4527efe04b138928480dd6abcfefa9e40a27b8d76c1efd6f399adf50b616b599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30e1179592624db52e9d013b16825d06bc0e863d5bd93d62e1bd5958014aa13b
MD5 4eecb3f71fed2bd13a0888e5a8d76a65
BLAKE2b-256 a2589e7f6c5639bc864a1ca1e1d4eaf452e5081375edd14e9a6aeb3f9c43a154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7aadfeeff27bad6aed2647f5bcde18c3a19f343f41fbac54534cafb52aa58d44
MD5 51aacea702d37638c2ba43235bdee967
BLAKE2b-256 e37787487025cdfe907f1bd236fd49d2b7b8b488814692c54f811b6aa55c89ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28dde558894c672fef8f79b8d37e7c4a2b8076b543e3b15e1256090e5b14ac10
MD5 128d437c77e83baec8e5775f3155db1a
BLAKE2b-256 ba4a32e53efe0f537ca0f28c6e96b597c212c7d7e40ec35d3d58a0f8f9fe508b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac5bfe8ce4dfbf7b56ce66d2ff35f83ee5e40f3dcf3627276ff33911390d8647
MD5 1f29d11d4f714443f63aa9d8377f1f76
BLAKE2b-256 b7707656845aac1833be08fca8a05252ac6acffd4799df49f46069f7cde21c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f325d5d5f3a965e2d319c93a5e852c36b4508b0a394f2fde7a433cc10138ba05
MD5 e4c2a272cb81ad87606584bbb6db0090
BLAKE2b-256 cfd240b658bf78cd181722a90ea587dc94b717f04ee205fcabb91e419ed8411a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 54c5ab55394d928a608f2c1b1e35b12f10af5ecaf805ea7014d7c54dc328f5c4
MD5 bf6858f8e6dc19aa4ba4b607ca875ee8
BLAKE2b-256 1f17f6b960486e7e7b5fd6a810959947abc996d33cae97db34e2e90475e36b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec61c717bf5e4b71cc225317c66e79bbaeee0b7f9f75a74c6d3db9c5b682b34
MD5 64610add2a2ffb497c65ca93980fa4dd
BLAKE2b-256 d08017ca6ed606207f3ac17f7d151322fabb267317301407393f1197e8a2c84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 07a4e919959b06d61941e2d5753ced0808a624957d31504e751e89a68efda1b8
MD5 1066f14b47add8299f7fae77d97c9f98
BLAKE2b-256 19a752417b5ce066e3b6980875bd0115ce7c06245083587be949bfbe778659e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f15e1e3549ab998c4e7c0aea9e34c932f568e61024e9e7ebdf46f31c64290307
MD5 3c4c73bbe08d68baf4cce7358bce990a
BLAKE2b-256 22a281ffc587f1c5b55636e123f5cf762b8d5b5faf5ea5cccf7b6b6946e2af0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68ec8cf8aab24750302908d02e951c84e52978421708a4cef2483670a5986e6d
MD5 384ae837d7f4d4da18f3d3ee776e5fbf
BLAKE2b-256 b73e0dcfee554da263f839468e027a65859b6dfeb7d55a69c872666a3a56c815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de50682bd99b168481e501c4cd69b22f64e0621d8faa9cfc4a6bed293e3b381e
MD5 903c1fb7b758d6a17479cfadb92a1c69
BLAKE2b-256 728aa445957742e3bc7557bc7fabc8583c5fdf04f744f4a953bcf7640e4cbaad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1b0e4e9f691eb910e91d2c5252acb450bfa488322a5256cc61812e7e43ce695
MD5 da18cda54b7775c27d38cab57e9dfd3c
BLAKE2b-256 06891383a53a28c6da1570f5fb996bce5fb7d226c258a6eff93c45a6e79e488f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a606792aed5f95b25ecb10947ec8827c7d514237e1c46c6f4be7fe07afb6124
MD5 92c0b09d09c641d97f2b4c0a35073a53
BLAKE2b-256 5c217d679788d28f1933a1d2ccac02417706bcda2daff5d3b1bf8bb8d20ad30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a05622eb35da1fe352709e1690aea68396660524007f6b9a5418a35e50946820
MD5 95c9552b0f1ec88467c37c298807811d
BLAKE2b-256 ca6723efc4395c86a9a3bc449baad94075fb6bc84df715e91ef7abc5ecb8e374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40aeaa017b2bea368b8822d0c0ad5aee3e56d399dc017aff6c4d7b865d4692b8
MD5 2d02fd2c16caa959dc59cdeff1bcf311
BLAKE2b-256 9f265cd153f1fcc31cbba8f161e2efddebdfac341648f60309d2ae9e264be45d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2c24a86c90d68f12eafaebd71f4f31f8a7b9c4979a23d2108f5433993489a00
MD5 89c1a0a87d1850d525cda7d9360ebb2c
BLAKE2b-256 461de797c51bfd0e6c3cbcd5d3578f6dcf24bda6d10b6866fbb8041dcab1ddac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2b93345ad25678092f94bec76a6a7a1b83e93c1a3a6e62cb35ba051577ba09f0
MD5 b231234e99d64703e25abfce5090eedf
BLAKE2b-256 e8bef21b226d190ae6b815d945fa0cee508b571127f31f36c73a8d48035d9074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 919334f837f4b895e2a76135fbdc8a32b21bd8ef5cb1914edf5fcdb6c9d09844
MD5 06fd821b092230dd7a8e74307265ffaf
BLAKE2b-256 331b99ab0b5b9fed711d640681bf1c956146e7f1fbb86c5946cf2535b654c206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c10d485691e3f880912f484c5b1179af4e737ead91a0941b173f316ca8f8274
MD5 3d039adfa435100794c2646b9ecdda45
BLAKE2b-256 22224ee8db2a0c2ccefcfb7ca7f49716a562e0d2bcef817425b8d454f5c519c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58fe8ffd7c737d8b1165a046c768dd7660204441d7423fa4ebbcafa83d1abe07
MD5 b126255d0e343dad64facdc2a2c84f79
BLAKE2b-256 ec0cf1021f9205a5fc4bda1252fd8a63285fd6d67b79bf4689b6c7ff059df937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d028ea42530cf7942c5527e2ebf67eb16b29c7d981f067a16fcdf6f42abcd096
MD5 78f0256000542454d5cccfa6d366da03
BLAKE2b-256 91a2dea915fa31c77f3e9cee6eb34668828f2b78dca29a6eaaacab8a908c4f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 620d9f7fb7fd28c1d7d61df5fb68aa5c9cabad96082061650dcc0b6f21154286
MD5 6c2287c06860327b8fa6b937974cbb37
BLAKE2b-256 47b5a2cc7955034aca57199794b2be49716c744f244d46361ff7d9be3e351621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05ee3086a7831fe81d78d1b2f16ca19f9f60a9e46bd100909a1c213008ba06fc
MD5 ba51f70a5d206aed94157f2c21c3f93f
BLAKE2b-256 563ff09ee9f8581f7651bf8f7c0153752f06838d19ec24f96203d1c58164892b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b368a26bc18ce149898118e8ae73a91198c2d1d19ab0e229153b846098d6f7f
MD5 231bff4b8d055f2f232c89e1da7ceb5d
BLAKE2b-256 a8f4adec3da96267fe129d147ab95bb1970b462f3241f2922741398524f640a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bec069fc4b9091efd106a2deb9463ef79a694dace1e2c8b547475d0deca9c9d
MD5 9dd519528c817e459e105f5365a8bce8
BLAKE2b-256 8e712736b70009cee7988e1a304fb9c96cf5d6cffd261d5940667589f00f46de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 166ea733a8f68a41711ac8d1ca77601938ff8dd1e900f13b31c8be3495883662
MD5 4fb61f054ffba9ea500fbca50b6d9abf
BLAKE2b-256 3ddeedaa8e8cf12a36c93c0ccc0f86b8b32ad8e7ecade785f8d3ac2a88f61b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b9f801b25e50ea9deba534c20dde603e524f2fac742e9756f7bf5fea1fc13c6
MD5 8a04d8cb1b95846081286ac3cfe8f6b0
BLAKE2b-256 d1063c6bc2e3e51a9c0c4dce32c02353a2ceb217a78ca8513ec2527e88a8441c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6345188c2fee33dcbca936fbe981a879a3eb49b68afb833ba41cc651550f05c7
MD5 957146ea1bd903935b5dadb9c84d7db1
BLAKE2b-256 204d93d75640b2e4a197017ceb574f6c30021552bcd45f021bab59ce2bafb7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b96aae4f3aa178bf56518e30df41ee9ce94b64c0d731a5a1488ac9d1d0348dd
MD5 f91fd1186889e728192412deacf72ebc
BLAKE2b-256 82319ee288daf80895bb3da68080c7fb738da875c7af54261ec6419d4a0e2108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 053f2121a14bb550c237b1ab92a6d0cff0b64fb8003d9c8c94dcc629cfe075db
MD5 d9c1b66b94a61543653228685fbd2f8c
BLAKE2b-256 8daa6db8b02e359fc0ea0d28a774eca82a6169d9bb02ecb78a2b6615552a14b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ce4298125ab39f986264248b69d183a3b3730b63e54d224392ad71623111321
MD5 540c49a9581e52618a6a1329a7f3e9cd
BLAKE2b-256 23a951cf801f1b96359574a11ab85300477d3e469ddc921b4775622cda9c6ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2b93d245a55ed8a8c63282a19a808cb1647ba85f22283e8d759c7b1ed4a44df
MD5 cf14cc58def4762cfd7139b7668dfcd8
BLAKE2b-256 2f74b50ece6af399f54ba8923002c08698f57de2a57697fb47f126a162711ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de56fd181d0d544a4e7a25304d30efcd0a12582c84b89d6ab56b46d718845af7
MD5 d70f91cde9b6a3272655e9f152c843c0
BLAKE2b-256 2d7fad33873d0795d428e9a51cdda1d166a5e84b3e293b8ad02273d0d5737561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c8aa1b541bad6fabb1a45310dd8e001de24c6dfd53c55a69f90d1e4d06ebf0d
MD5 1656dea78035e0fda5ef5d78a1ce650f
BLAKE2b-256 fc045ecd55f0a652fdee30d583899cd390d88a236ea7aa5b57d6590299f0abe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b56033a44644853d8aeb37238de5777c402bbb5cae8ace0f3728daa2e3ceaf66
MD5 c2f3f97f9422450222cf8ffc40f877fd
BLAKE2b-256 921eec02c5964c0b47e2a1d808d504d54e1fae8032d87aef0bff1d990ed35c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6913fbf67c93806f8063232e31cc76e088b52b9159018d21e142fc969ae38fbf
MD5 5d9be9d7a2444a2510316c0ba38d519d
BLAKE2b-256 b5bf9a18b8772f41af2a52aea44a39cb583ccc00f376ee421e3999d3fb6442bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9107017a12bfcaf6344c2973f3e3407b48967c2cf9791dabb95c3bb69a6d20f8
MD5 26719f6b60fccea60a2ddb10f67f6b53
BLAKE2b-256 11c198b26492cafacf9e529c5811e63f1392aa969feaabec4b8d9110de0eba44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 811c3b141409d21b4f9abdaa5a7059b6cb50b3d54e65f71d112bd7a31efeca4b
MD5 d1d2ab60275b71a511a77383ad3df244
BLAKE2b-256 d8ca555eaa4d7d1601f23225dfbd7137b3a4de90940b9279c90300a3f08bcfed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e48ab720709bb3b8836543e891256900fdd749c6acb4f29e87d363299a79c9ad
MD5 f8122500b8fb5f953926eacb16cb495e
BLAKE2b-256 24e8dde1f43499425da6995e7e617f6f4998714b8ca449c3db760f247f598424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27a7360d61d776e09a3541841c3076090083a2df7886eff5a3f429679557058f
MD5 08678a1cd05570b3df6f8315ce0db5e1
BLAKE2b-256 064ec84d136e0f3388b392a241cad8be3ac253fd90d7fca3cb6d83f492fc804b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55612e99251136bf4b161d47853e99682b05729a6e2612edab942958258de2a5
MD5 9f9e1f09fbce5d3749285c8b3a649db0
BLAKE2b-256 315dcda84d239b8efdffe2f9bf198a35742b3440f41ad119d601f2c0d8c663bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3773088d0efb841d59078ce99767a59eb640bb84f29cc727a50cc287bcfdaf4b
MD5 ba39ab59078e7dbe63357717a2d3ab33
BLAKE2b-256 93b5ac17fd5b7600a501dca8f3284fa7ad5daae1a56d92121182445f70a9834c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 034a5d65a6227b9b7d16b1d1ffd7bb14349c4c93255435dbd7f56f7dff944a6b
MD5 dcd4daa840280d810ddf6508b699d68c
BLAKE2b-256 f62cfef5c46ef006e8f15080175c21e8bc70794188b3d6561bce9f29776eed0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aaaa352aeccd475114ec255689f079b002fe029508588d25757809bdfaa34913
MD5 51b1e61afa1bbf3bef0ef0c97375a9b1
BLAKE2b-256 eb982b0e2191bdeea7bd21f93146ccb40516b69c2fba994ac4e0982f4cb3e0cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d7f452e2cda8051b34aede00df365e8d4c20f4ac7cde1055ba40f0b2e2f7efc
MD5 58677a4a14e176a5c6bb0a78cccf9540
BLAKE2b-256 f08d11b7c6d2ce3e6147b72c3f51331ec4cd5b94e73d4e4a99dbef6a4f4f2c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ee791ebd3e127de6b7ac9fea0bebf44308cec78bdf921937a3b44ff0cc51724
MD5 38df18294c46328e39449019e8f71ee6
BLAKE2b-256 d1a2a7af58882aa783bd3beb2abe2d7986166a50590a59ded5d83f6902478611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b75c39f63a88a260f5d62b84b475d13237ae35ac1c7d9f271b8aa8d5bc3071f
MD5 313825b7dafb2c94662f65fb4eb2ffcc
BLAKE2b-256 a091ddc87f77675ff21a7b0d6f530093b9292012d8da6f465cc4ccd4cce9c045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb99a299d6714fc78d517c1fc2997dfb5b0fb874f2c018c3e18a1a448fc58215
MD5 740f723760d1a7b50d43b843d3678995
BLAKE2b-256 07a3e9c3801e0331231111ee1a11077a0eb18878067398cbebb7e82188ca91c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 988e607b678394b263b2ca7d765bd6cf47028732c8c95a1f7aacf2efedae0a38
MD5 760bed921f11b9fa84c35fe170ebf63d
BLAKE2b-256 4b73ababcb3cd03a67fdcd4c0dea4cc9675b5284f14c1c2bb47f1306fe0d90b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ad25cc04a51553e35f6e74a4ce1e9a10a061315b77a65ba6f8645cfbe0e3fa7
MD5 18111e3de5a047c5335697d5886e8ab6
BLAKE2b-256 3ffcfdb0d6244bb85b4835df06f73dcb55a053b472eee70b3b50de61865898c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6d61bb44f8d73ea4d524eb1e64cb73bda328a22ad465ca1402bcaa6ae73ce26c
MD5 791d48eed1e3f41f9590828324e38b9d
BLAKE2b-256 fd8cf4c290a4da9d24b4eb731234e20e3e0ccfe995e17939a6e9dabe4a985532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5976f7bb4debbb188ea2ba3c3d3e78f8d630aab9f85357f79ceac42489fb55a
MD5 89fc16018f397edd16194ff5a4545d6c
BLAKE2b-256 a62511e496484865b6b442f43b1ad6b6abfdcb624f2c7b5bd1a4f4d943f76f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 863af432b5f006ba7b58d4a44ca833d91a56b500efe817f1cc14abdc4bd1c236
MD5 e9339b20dd28e52c7ee6bdb41dc7160e
BLAKE2b-256 87d5d1f0f6018c8609190112365f2eefd21faa3971513481346e25ebdd829abb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18d128f318145f87c14e6fdf417b1ee762ed642c8831762413a192f48fa42e13
MD5 af9d46cd0d58446c259fe74907292da7
BLAKE2b-256 f7934c080d3501fea8a5c58e56effe3b33c31544118d432fb7dff6734c8aa12e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7aa314cfbd13f8c91b6219ae6ea6afd1b6f4d5c8550eabf0002f92dd7a0897d
MD5 32f933480f13017f53368de62b17ba2c
BLAKE2b-256 b241aa1cf2f257640f5227ae086498013daf5287a4c9644ec63314fa07a5154a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1ad2c506448741eac06c7edda9da3d031c68d37c21b7d69ef8e8ec2003bb1f3
MD5 99de440aaa2bda1bdb1eff887e5f9f75
BLAKE2b-256 b4c3bd4ca8bbf99648897a7d84f162f8f155b4a8678cb42c0cd8a0d1ca8a879d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3194bd68d887a8ef32e6106b9b8a16240de37bd61a34fbec92563b8b6bc225a5
MD5 f6412d6babe3c29a118f8915be3d4cb4
BLAKE2b-256 6babd2b640765583bc4372d39f713a7bbf0f8667b6bcd17a9883145a0109a4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f6dd459fbf2d48f614a3eba8d9b76e78045d6dc59034f914bf472b2ae189f76
MD5 f38880979b7f62435f0e434096d7813b
BLAKE2b-256 f64fe2ce6abd91da030ea7d32eade229ad2f67176e11ce5e081b90c4e2ae548d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43cdc489cae50cd69c03852ba57bf68f6b04d839ca2d59485d872af58a2e714d
MD5 25c66afb63c5820fcce01c2023cc9190
BLAKE2b-256 97d770824943be16c7c448a82adc388215ca0d2c496a17ef87f91fe8a45b5f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e6cf527b7b67c18fa567b5e4264bc21b08beb16ccedd293f22d61c5d6a06e33
MD5 73611cb46ee72ef9e1e74b64e1481e8c
BLAKE2b-256 4512f5771c09cf5e0ea2cb81637aec70b4192ec65ddab7e3876a513a1fdd8cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ce37cf4bc4e65a2fd5978b7503b8e11daeaffe5adf7c0f00a36e24653b3b08b
MD5 dc23e903956708d8ade8c7dfff7ab6df
BLAKE2b-256 f815f23d7ff8a94094268030cd895fc2b3e2d6394035ce18ed9b5225fe1f9bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f2e4f1f1ec37c47746b0c2378f3b62a2caddc0c30f7890669eb6d69de8b0582
MD5 c8aa5ac301d9df03581a075dc5942623
BLAKE2b-256 ee371562f7de5aaa1e1a75e04fc029ad2a7f5640fea89561fc0a60e92d65a7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b7bcaecce37d98a979fad2d5727f2e16ac4d06284d70f7b08d391c5bdbaf6814
MD5 6e3577de139e0514131cd362819af789
BLAKE2b-256 ff32c1fa98a1acb0ca947cd72b856a533b08b295b482137ada7682ab6775af20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb9abc74d75e9d624a1a745b90c043b6c2b40aa8bff05a042739b716348f6c5d
MD5 9f208f9d31455b4be78742a47dd7dfe3
BLAKE2b-256 5341baf11cc94c3e835d4664e44af743ffe76a75b0c09629290ab22cdfc4659b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4c1b700d829503aab9d40bf937a079fb27a131ae322af65dedafde3f16022ce
MD5 b8468e67e541d91d784083aada0bdb46
BLAKE2b-256 4509444682e5b9ff9d3f39c1e2a049c102a593df134d795e48271e63877f9d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c8f766d63ec2a5f577d93da6494d1985066828dc73713de0624b13fc02b7334
MD5 f191407e63306caec57985273dcf63a1
BLAKE2b-256 0893953c987f4b4ce7837b0dc8eb5584974696ded78d0c8d939905e211c7e51d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 241194d186816ac12c39c42c6034c4ce6e021ebc2b0926fd6b9d678b95cf9e81
MD5 9edee630da95d6f94d4e5ed363bed6ec
BLAKE2b-256 64770cf3bb578841d5f57c8a595e4a7466e0cfe58a43e7697323c1a2d28b2d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c1f911cb9cec73ad2f29351f0322596a1334e0b95a4f4c60446c7d494a20b41
MD5 fe91af35b7d6f04b37d279e66dd58536
BLAKE2b-256 9bf81bf37ebe22fe023170475e684e95eacd429f70ecb8400a94b77480e3b650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 586eddd621202f0c0247028046f902123e130b67fe5db57ee7a20f88a306c648
MD5 5fa4ae298cb8a2a24eb6ae9c2c370413
BLAKE2b-256 64d35d365bab1a0bab9c40ef5f8fc3136b579c00ee135eadc2bdf7b0bb3e73ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2122f6d3da28dc1136bb0172372328f8b8de53620419c9e42ce5b06549a85bf4
MD5 87dbc04eb860ba70cc2081fde44ca58f
BLAKE2b-256 abd91facc48fb099c281b78fab95420ce40545bd3a9c673dc1e6b4a45e9d150f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fce835384de72c044904641d15e795de9d0364fac62de86320c89edf5bff78f7
MD5 336c1bfe3736ab8cac98727f2dbaa058
BLAKE2b-256 c265cbd3bc58697b52a21321277ba5029fdb130a29dcd133383717dca25d8895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecdcef4ebf3c617a17e69b709da17173e3e0f0580f111bc098b6f23e4db990e5
MD5 8737545f80191923565a47651eee7ab6
BLAKE2b-256 8a19e82f4813158d17e83021540560ac25f444307e9813d9b5b6e927a0d0c386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 061c4c01baaa91317f1be0946a4f7c62717823c9e44891a8e8297a7129f3761f
MD5 e24b0d578d52021d4586418d3d34c9b7
BLAKE2b-256 9c1ca116175729e14ff9f0cddcd1caf35cdc36d623e02aff5a20973863372b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccb5c74953488419ecf95dd5327eda4393f71c9724d7821ace75ad84c1c481d2
MD5 f892baf47d5286a50b371d95ae5a0b75
BLAKE2b-256 71671a59d125e6164b0a1a581f9b7fc93d69df9005b42cfe74fdff78c86a7452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40c25f368c0981d108681b984716f155904539da35e291c03512b9cf4508c4e4
MD5 74181d02547d5715c4d6f61fabd59d43
BLAKE2b-256 bc571acc88629211712de412f6daa381722f116ed55c26b3b2ab9e8ec3afbe8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d50f1fe3161029821feab3e3f67f13ef7e86e92671aacff56bb7986f6fabd29d
MD5 5ca34cf4e486132b6a81cfa9bc4b3bb9
BLAKE2b-256 f04889bde23cf3dc3a7a2e84eea8048e17cb282f743ee3df0555efd5704e2ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6262e5566f42b7805dee1cc6445c0cf623986a0810e477f7786250fe2241de1
MD5 89a8e9816fe9633e21a8e9686084f770
BLAKE2b-256 51d8b94a6c06d0f8c1202277252e5a142f6aae94a1d893213009fc6ca021685d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00a1c73591096740f59573b1e4af821cb2d6e10d5a3677d15ac1c1631df35d02
MD5 26ed87704aa0b47560c5a793973d95be
BLAKE2b-256 f780ee9f039127b7ed7bd3ef880661b0863ea98b9f51d7c0c10326c712300d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f9d6523e65a10c50b2725c10cd9521669651e594cc39f8d9db71e290aab3996
MD5 759bb18186b696109e5369b7d1a8b3e5
BLAKE2b-256 f9d7c809a81c3fa359deea7fb4326465f904c3ea7179aebeb758f8fda2f5e273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 317300c852e757ae10accfdd12cb5638cdd2c2c13774e21489b036824e6685a1
MD5 42b8a975c6dc51e40c8f3a0f65f8b63a
BLAKE2b-256 034ef1638c38014eb29a88c43a04b2eabb7c5590092f7b9d2ce874b55e3fcb1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d50f265b135a59f3dac93a575e5e15ddec1a7c24a293c61bf4284c6e9607bbf7
MD5 2ff2b90e71f5121fe0694b34b9cee5f9
BLAKE2b-256 ffa3d1aed0861ac3187baddc843fccb86d1a8a66262bf28fb371075d1876b892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 259608c3a59c2b388dc8c832a7dc23265c99fe8ace0d69d4e45a011a6d22c4c3
MD5 63bcfab6a9dcbb372a194ab3c0ace1a6
BLAKE2b-256 767dfda8cd64071b243544b3a53b77d9fe24000ef93d9c8580c7dfe80663ee9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5f1b1fcb0fd1fa82342aa219e76402a30a821b50a5077a6debd7aca108e0a07
MD5 1bc23d0ab4703e1eca7a945ac3f40e77
BLAKE2b-256 41f8f698e97bb54bdef0e60683aab077a767c5cd3a09383e04638ca043869ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ccd13d3060d39d19124bf769fd32302a163deb106822b5e9f950c84cf782b1d4
MD5 a379b7c81873dac05fc34a99ee8fc6f7
BLAKE2b-256 b69be783bfdb39cbd7e24ff3deecb1bbc7581c8ba1c702625fe7abed821531d4

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

This release

0.9.4 This release

90 files

0.9.3

90 files

0.9.2

90 files

0.9.0

100 files

0.7.0

99 files

0.6.0

98 files

0.5.0

98 files

0.4.0

98 files

0.3.0

25 files

0.2.0

25 files

0.1.0

25 files

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