Skip to main content

High-performance JSON manipulation library with SIMD-accelerated parsing, Crossbeam parallelism, and native DataFrame/Series support

Project description

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.

Crates.io 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 Crossbeam-based parallelism 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: Literal and regex-based key/value replacements using standard Rust regex syntax
  • 🛡️ 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

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("(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)

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 (regex) .key_replacement("user_", "")
.value_replacement(find, repl) Replace value patterns (regex) .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)

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

Performance

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 key deduplication (phf perfect hash → thread-local FxHashMap → global DashMap) and thread-local regex cache.
  • 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: Automatic Crossbeam-based parallelism for batch processing and large nested structures.

Changelog

v0.9.0 (Current)

  • 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.
  • Performance Optimizations: Eliminated per-entry HashMap in parallel flatten, added early-exit discriminators for type conversion, SIMD literal fallback for regex patterns, thread-local regex cache half-eviction, expanded SmallVec buffers and separator cache.
  • 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.

Project details


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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.0-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.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14Windows x86-64

json_tools_rs-0.9.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (979.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_tools_rs-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

json_tools_rs-0.9.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (980.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_tools_rs-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

json_tools_rs-0.9.0-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

json_tools_rs-0.9.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (980.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

json_tools_rs-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

json_tools_rs-0.9.0-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

json_tools_rs-0.9.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (979.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

json_tools_rs-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

json_tools_rs-0.9.0-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

json_tools_rs-0.9.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.0-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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for json_tools_rs-0.9.0.tar.gz
Algorithm Hash digest
SHA256 92037711b9e141cee7868d98a4772e53751e8d7dc9449846ff74ea02667ee2c1
MD5 4f0d59a765a4a2947f4f07b4b378e9e6
BLAKE2b-256 75c46d933cf52dd23c8639ae2c0275a711a26418bbf3912eab2173bea6e8145d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47b365e4bbdbc6ea64c73a7664d8ce815ab930e0c014f335330ce088fc6b784e
MD5 053f6111e5af65fd12e0098e370401c8
BLAKE2b-256 ded9717a65281d3208c746bc033179de3b6229b8446a73bbe8fe7b12095a69c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0dd9f6ddb27d2d8ec0efb747bf9fa09ad0b7fdf9e7921d9a7182f6980bcc607
MD5 8ae8335a52898f1a2bb471e947645cb1
BLAKE2b-256 9fd9c5d4a98fb34294c317dc68d23db20a0951d6f7d73d2d17f09dc07e0e62eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ca7ec93588816602c2df7f384940697214445a6ab3fabe8fda09a7efea43b7c
MD5 58f3f7d1fbbcbc98855729584c0f4cd7
BLAKE2b-256 37e48e6e512ac5d448bf46bd54c7cc8d5fc331bb89fdc522b1f15ff429c00865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 649472df70be6e26bae11d7acf721b68de03832892485157bef3b455f7d3d0c5
MD5 fb428a25eb02d8067104bca61a8cc60b
BLAKE2b-256 50a81b5a061a0f9c2a346e65cfbba54d652a15fea8421fbe1b027280483c2f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df5102884b595660981ae42b563aaec4e058cfc0dd1467fc4299ba728a9c696e
MD5 3f97acdc553153ee85d9f5acd33b7225
BLAKE2b-256 5896f63f46b2713db7b41c2991f61134b96bfa71ddb9b713efce0e600424c7e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbe962bdfc6184055e33b9b8977939e356f9d523cd12ce4d94808b12d1df3ed4
MD5 3947a760250609fa329c0086b0a447a8
BLAKE2b-256 ad9642e691ba623e1e64a68e6f8f8deeb0728d9f1b17b809f92ed5acf82c6ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa5485f3f1650f9b1daa9c582f3a9045bab94bf9ee050faa18e27944f66fd4ae
MD5 29b7fbc5cce67e802bf6505845b48bc0
BLAKE2b-256 3fdaf6c621ed984cb2deadc23e9bf4307584c497ecd0b4089383baa20fc0090d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cde659703672795040579a0b2d7a1e5f42ff37867b9860fb7249a63c01728fc9
MD5 400b4c17fe4574de11ea5d87ec29f3df
BLAKE2b-256 db16dc7ada34db48a767e12e9ddffae32571b23cced4fba639eb3d9eed309f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 15850e1b32425e3c234208ea3dc8b52e10261847445dd0bd0930bb03685e8905
MD5 f51763ff9441532f5cbeb63aec05053b
BLAKE2b-256 05a927c18296a676e3e22db6a0474591496e381c7e7173f381f7ba8037d5878d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d820de25db8ef70cf137b40684f1ff6634ad85bce1aad92e1494ecdfa7d4a2a
MD5 db76b159f5af358488b59a8d55a2062e
BLAKE2b-256 6981968cd242bc823eda2e7ca1f238f39e8db15c5b51b5e1908397aaaebea006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57b7108b94499ae03b0c076efd1ed37321d4f0514d9e13229304ab94858d7d69
MD5 01ca2ef585a01f465b5425c3ebbc952b
BLAKE2b-256 d49258872f1ef76b142960dd589af04694b5880949481d4850ec23017b66ce5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64da85c8938fc82a12df921f7999428b515e8f2bb6e0928e63c820c1d7c54637
MD5 fb9ca81e584b0a2bb2260921f5ab9469
BLAKE2b-256 293c7ec796cbf822d3c6532d35def9558263cb995d8e93584afef787ca141013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7717845b5b0bda8d8b450dc6fe1568d904790974db8205f7a1b700ce4533ffc1
MD5 f9414ac13595be14514de3a631e2921f
BLAKE2b-256 5c80d6894470e6dd1b349ae4f5fd2fe3109a9e84e4a99572d6ec503c080d2ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b43f3ec162203669bdb1ba8873d5ad03d0c7d877459cebc124f92f2cf46ba25c
MD5 3bcd01234bfb2d2e2e6f799cfd5e21f0
BLAKE2b-256 7e58dce33f4b70e75b7a6a53c5647f8051d3fcdd386ac058474357a2d47e7b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ceaf54bd243134883f17c9d191647c73134060e0f6c34761d4be517539115e99
MD5 8293837f73693c6031e7e3bacb1d4ab4
BLAKE2b-256 25e63b3243fd985d8ef8985441a8976c8363a7c87a7a1b7c7dd68eef49214d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10fb5f8908061f823e1171da5aa5c4b1de5ebea9e2bc500cde0b7aa50e98d9da
MD5 221a53709b7bc0e024ae21c21c65d28c
BLAKE2b-256 aa447b18f058df133a62caedd2923336ff3c4eb038bcd5dd0caa29f67269be4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f594224ceb3a5d299009579f4122d7a6d4b7c4f68a0411bfc3d077945f77c2c8
MD5 616d19e8fecaee29293cff702e69ed22
BLAKE2b-256 f45460f259c77aef26fc73fb878416911c19d5866d9c31d68bb77c867be52c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82d00c84adce4db494487df057bb3b5233700dce8e6accd91b08a3313d7aa7a1
MD5 d0829cbdbfd31ccde446d024348de616
BLAKE2b-256 4c6069b2d3fb6cca7b868d11cece69b2299ba607e7419b6453f6fcb2e008d9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19d591fb56cfe3ab0ed93a3d955a1016bea0794d49bb43939548696ecaaeae2b
MD5 8f0b018dc94dc148315b7acb72ff55bd
BLAKE2b-256 759933318dc4550c40a33e339cba91a933c6ccdbe4fa88d24c54d72689fc5d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32fe84e156cc996717ae71bc6d73479284040270116f0faac24cde9796af54fb
MD5 ca065df284eb5b41eeb7080d5b168079
BLAKE2b-256 3f026f62302701c916a1214a13382bed51ba5869613cd8e39f35427a9e802446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60f34f2d2a693763abf18bbe77943a3bbf9e7bc0a328c530ff41dac416303584
MD5 6320f99431c737cf61f05b618b08c20a
BLAKE2b-256 fdf4426de49c830e0aad33c13be7a3dad52f74696a9389ba550c2fa81a642d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37deb1078b2551b357e946be70ff47f2eaa855f0884450dfd8c4fc6b7addafae
MD5 c9988feb3594c4220e259930cc341e4a
BLAKE2b-256 5714dc8f4a9b63b9c341c5863639b7b68e26ce14451774b858a3244d6df26655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08748f4b5a02083d7b6d1501aaa5ca6d3ee96c70fd4cf68a04e8b7c2f5ad4da7
MD5 56f895fe3a4563b571a9accbf0961188
BLAKE2b-256 b3086d28650c5b9e300622e9d7d23d6e670bcd38ac3c5a179932084707614838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 846e938ffb980531a18c6d769aad799a5846892328d51fbbf19e1c39312a5513
MD5 ec7fe46fce0b7ff31ce4a0e8a5864c0c
BLAKE2b-256 143e36cb204c6ecd1114f873254ec4bd3a7aca7d9db84107e221b4c41c2383e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3443ca53af853ac5a08f96aab668fb611b4fc0ff879712cd6264c4122d145204
MD5 41a1bceb3f9c524405f3a97a67535e22
BLAKE2b-256 9116873acf60dafbbedaa3714ebb3ae9bc559126ffedab1595cb161dbc22e428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5b1c94400266fa4a04c0b09aa403c4209e0d1fc41d634f3fd7a3e71ac316b541
MD5 992f02e7a85775a7a1bde8051213bdea
BLAKE2b-256 95df6cebd811e69334cf7bfb8bde8f4fc121cd4ed89f598a472cca5229e89f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8acbcac66181bd6c053a3a6a7f6f88ed82622ccaab3b00ea0305fa18280ef53
MD5 1a82abf9e7935f7abc9715fd138853e1
BLAKE2b-256 23117554c8042d07a00b616a26fcafec8d281882facd7db57e79de46d220f443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f18762ca38d712520efdacb0c9ebd0a0f6959e21610b5e32faa7d916eec2790
MD5 f28d5c8c2f8d93a524a87175ff8337b6
BLAKE2b-256 927b4f342a0fe011b005d8c28e60becf8af58aa2c168ba49f2af6cc00d07a9a2

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b96c3bcc6482bc355921f851c6dbdb6456de18eef07c4c144cb0a8657145ce9
MD5 d2a85300078868a27bcfed8d8f9d99ba
BLAKE2b-256 432122abda6f82d55248f0510259d9183c446b8b02bbc5b7e9b92cb8d1be5bae

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8aec733dffb433f225e9089fd5ae368b1559e52f5f8338f935a1e1a446d30e87
MD5 6048f21e63c6817ea5b507b68aaa17c0
BLAKE2b-256 500ab29a81d19b98604a924cbd543663592325b3346668ce1c2352e9bec050ba

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b2e507d64d7952e12dc6e76396acd30932e4dbd823e054bdeb5917bb3d4ba24
MD5 d3d3a5b1915a86d1b228ca12fe6805e5
BLAKE2b-256 120be8e8554446e82494cc0d7de15ccaef5db87f6cbfdb51c211572d80237498

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38322d3e724ded39bb275479cb1b5b70d6d7e724c5416ab1ff346c9c9ee527ac
MD5 3cd7416f470a08722281dfb0b93cbfe0
BLAKE2b-256 3a98a86accdaea2382ed5a1b9493bf0548d718d55f42d2a7eb30fe91e604f700

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78c7515cee7d6834e6d10cce7434ac5e62c370e2dbe44131fbf76461a341a493
MD5 d372d29a6058ccc5e77ea7c004ba0086
BLAKE2b-256 19965991d8e3bb876d5d86489b8eec0a0729489d9e2e45a82530439238f33c87

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26a2bc01ecd40bf07078be8e4132d76c12f386d760c8cde6379557f3b56ae057
MD5 00c10cc4561ccde8ead1875b0bf1bd0b
BLAKE2b-256 f6b50c67f0c8698fc473675fb85abc31994cca8d38573e7828a362912b068d94

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 756f9c56c1debc9b720a36f6bdb39596344644f992d2b019482edfdb0e20b4f3
MD5 8725ffacfb06d04eb6a2c5f47e4dbb24
BLAKE2b-256 87928b7345234b1829953ec95687cee21f9e3ecf802f191b597afeab7199caf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 24c40b4a4d6fb8f38a4cbb424c770ee5e20786901d71e6ec9fdd5b9fb23222c1
MD5 16d282b66e945bef0a34917e9ea38ab9
BLAKE2b-256 45b845b505efd879cfd34eda04bf911a7f9dea758b3e9f00397c98e75e38b6f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe229ad620960e9f8e2b30e037c1dc88e343fc4e508e0e5f7684635833d411e1
MD5 754b2877757c13d274526b652767cb8c
BLAKE2b-256 0b53d545f7216dc58706baa568b0c06db33e249975a9be6a40f384bf9569270e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42078cd076e1a822eb312ff49a6769e82e98c4a1778285e13aa7c6ab8ea23021
MD5 80777f281addf28c8bb70dd01637ebef
BLAKE2b-256 db1068430b6752258cadaa072a0b575e23728bdbf5e5d5e16d3320d0a2125fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d57287a70731df1d92725fed93633954bd2aaf8f77efbeef27a9bef1a3b8ed3
MD5 2307480fc929c0a90c0df908b1cf3eae
BLAKE2b-256 0bd8b546910328da2695d5f71793bf6cc91ac0b64a8aba7e1c6079737be376cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e582791e173fafcb96413ab3096ae42b332913418e24b523734cd61bb834fcb9
MD5 8dc1c744361374a5428b5a8793b91c02
BLAKE2b-256 43e64d3bf46708804fdeef0a0041edcb81396c310502f2263c1ad0e701d65d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94d32be638d47ec82545713bb230be049f2e2a7a8fae07eea2b558423d211d30
MD5 814519dc8764f394187ead1ee18747bf
BLAKE2b-256 e4dae665b142eccb57be4efe8f04933f1a17ba357c825d79461cd7ef3458f22a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 536ab297c0819cb21476ea7f83dd5456930308110eb2bad0cedb19177cdbebd6
MD5 c15832a8e3cad24e6cace545f82c86ed
BLAKE2b-256 97da2c98aa6b3af2708071b18497dd779ca811fa16d550cb12cb71b5cbb42bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e74e0debeeb26b522a9fb00a14a5968801061bd2b5f209870f192e1f155fddf
MD5 a20854633259451289bde5feb340aea5
BLAKE2b-256 b18ab0f4acf53158ec2592e68df61f423ec0d15f80789d04d724955848aff51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cba8ea5d572377d99d80b29d94ddc16ba6cdf226ad69cc026b8b6fc1a838967
MD5 d62caf28ea38116d2fec7f2c298edd42
BLAKE2b-256 00229820617b94ff1c89fd06444e56be37bad29af0c2c2f7741cf48f15de855d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 801dd53249fc55639831f3bc912c08f572595d1aa62cde325e7725e5c125c748
MD5 fc3dd4702ff637d649442597e9f24c92
BLAKE2b-256 93a6b4420d814716ddf0274229be50f147c1a211f73f6bc1238bf0b542ec8524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a877fa9a8faf81b6e8275911a1eb1b1b5f169337fc239370b00aa0bd082d5751
MD5 2a8ea0d1bc1e02cf27158ae07e4c4282
BLAKE2b-256 f83136195e3a3de0576926d5ea9cb759c9e1c42ec264c504a1e725c3d198b817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5300f7bbd181c50c32eab767092308fed6fbcc99153ca63903cf166795b684d0
MD5 1b674f56814e84fbeae2c20ca7c0d15e
BLAKE2b-256 217988985db4a839766fb99c87c8176dfa462aceb5280dbf6c57e72fc5437614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e85131e7c90bc32f26cd8ec13669c74f4bca7cb6b5db0c3231c6e7d04f51974
MD5 8424df968ff4e468c2f2491d86872d78
BLAKE2b-256 538dc02b9e132b9466d2126b9e8d728a3957822c8e2c72d7c980358e53de8be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20d5d2dba120ffb1efbde716376b8b3d0d70c2b404fc6f2efb36f8ab680af02e
MD5 ac235f544ca56ec97ee8b94d96a24e0a
BLAKE2b-256 e27648442426b973c2452901977d8cd0da7728fce0c44d3480ee961f53d7bfaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc71d56a08705a14e786f912fdfa0ca24bcd1dada362b78594e32146544067cc
MD5 41d6099693b9252b0821e1ae743ca122
BLAKE2b-256 0d3f00d3773190e0b8f42cc0b47f5bf34ecda4b7d6ce3cc4eac4c684c15f9eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bed9b9714e58e7b9079e402c4aa5c55c828f47c62e5bc0d6336eabcbe30c83b
MD5 6b4bb59f37bf7561a39a4b8e1d32e06d
BLAKE2b-256 e689c57a9d8902cdbfe5f533322e94b3f5d9e51807719bdfdec99139ac6662ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80114c8a354e5f5991956dc651ea105d78a7a148af75621a82ecf5a041a83be0
MD5 8b487623e4d3d7bd8a58a1402bb98b21
BLAKE2b-256 7f45aad93861e7184d864911cc652fde0df6491172a1d51ce9ff12098f3a91e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ca366be85edc38be77992f15ca1b3f8679c9e79b50a2a8dd91684e6045e94d2
MD5 c0cd6058e8b97b82cc7e363d28a45fe6
BLAKE2b-256 48ab7191f0c77e3879b398db87b400445aa48f5295d5fa1f59e10bed2b68ccee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4ed734d7168e01005d4dfcc287c658da8cc79a936f43f73ff5975fd3b706420
MD5 ee390f2a2f629f26d4af37f66289f66b
BLAKE2b-256 8eeba81cdd3c7e93e982188987bd10281e273571663bb359a0de2dac74463b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c090ba34e5757e3ececf381f23b351651f514b8d4d28a6d4469fadec9f09d7c9
MD5 f7f86a25fdf104aa0608b5034084e7f3
BLAKE2b-256 5cffb1f88ae7f850211604dec83b2c98e6827350b63f25c27fca8ba797153f2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92fd2b6af24661cc02df13cd55a6235860458c23e5420ebb0bc2387d78117078
MD5 609395b54a07fead1e921fcc1b3c3667
BLAKE2b-256 f6685bf4f667961fe055d0c8795412c26d8f04f177a6f912fa79b48ab3eb9bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 194405a41e8ceef2b845231bac039dd4010ea9f0412160c01322f6c48155e3c4
MD5 f88a31a744357e62ba1bfc72a18f8d57
BLAKE2b-256 b18babd4dac877198169a61d1373c66aab95f3b4b46336b62a932f3ddf04da98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5679d9996d9a1335bb0007f950cb1b0bd91e66fe49bcf395d37a64ff744af7b2
MD5 f069d3fba10692e41d7c0722a2ae9dfb
BLAKE2b-256 1f8aed8044f7449904930b593b2541e7582f6432e1842798b6f5f29a67353493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9806b91c62d3fe282511710f9f931ab7aeadbe86ac1a2f2d711541fb9093039
MD5 f903133d8c793b1992cbc88725003d37
BLAKE2b-256 3d2ace68caf3116220058243d7e2958e99a546559002e8e302d43421a56944fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 96dca31353f12f0a24f6051b162a897676824367e1a6777d77cd1e0bdc4621a2
MD5 a4614716868156ed35dc4e41e1869102
BLAKE2b-256 1d36b1195bfde9988edddaf4bf09d9e0b9a7e50aace75dcd5a5e0d202059c5c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc7d3410980e89670cc777765b073697a6eac72064e66f2c9049d9faf69310d2
MD5 d32868684ca2c425cefd4443cb51243b
BLAKE2b-256 905419b99be9714286cdadec2d9191c4580a2f2b3303a7e88e93a9bfa7c14b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5b4317ad60179febc7169f636e67cbbadbfd36972e49cff4379df913db92bb3
MD5 1c9418c61d49bdcda91b08d760cd17e3
BLAKE2b-256 0b56c5c3affc6e8de79ad4679b37d0a5569298019f14dc8cf2765f6e91e1e7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 29ca9fb6be1d4e07e807a5f78b666e9a89e70efb56be9b905e27759f13ad11a5
MD5 d3ba72fa30cbe1aa8b3675a429a50be5
BLAKE2b-256 0e364045efaaaaafffb3618998ee44f436c244119b3f9b02be1227752f06af0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aff2f0408e2f12ae32142e5813432ce2c8166536d58fdf5e78f25ef1e8516e10
MD5 be1cb09d5d5162a88830c59ef7afd662
BLAKE2b-256 30b53184a5fa69f8348df14c3981784359927fd2cd5839afed7f1c434bb4f623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d036cf22ba6998ef3ecc6554e87cdf30c832c082adf37e6d1b083e912774f1bd
MD5 9a58323a64c5e5a93b93d40bec76c25e
BLAKE2b-256 af70b699cf03b35ab835f1ab98733c0f9e9231e4ac79db63f34ac624f18441d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1ced9bd68a559f631777cc1aca0a0aa2644ca0b03ad6e671aadc0fb02bd1f1a
MD5 0705a77f7e7f518b388dd1effbc2d1e1
BLAKE2b-256 ba5a0d6eb46d6ee85b7803ef0accd9fa1c1a2b032805637608378ae305b62f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90f816440c0e43ea81d5692109f260c0e271c11ad3e327c04f13bdbdb9abb3b5
MD5 ddb08850bb230a93626315cb362d3100
BLAKE2b-256 d96eada2db17fdb165d4024eca365c96180d95a4579bb5d5135dcb8740bf4711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b250dcd52dae301495681d028ddff423a0059e0a699ef3ae70eb7e7a4a2fe069
MD5 8235cb3a781f886cee6ddf2e7282c7cb
BLAKE2b-256 ed29d9bef3cec834489f87f87b507c3be233a1e26dde32595ab6e7ca599acc54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 097bd94c4d8d83b707ebcdeb317762a88f2a4739f590891427005e2fd1498df3
MD5 1d328a9a058498649b51a9d9f426284e
BLAKE2b-256 e1832a72e33944f6a655f29442b72c1513c2a3aa17625cd45c6454201372ee1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e6982149c18dd3c07790688ccf9a3acbe414b9f8c7b4010dde03a811529b394
MD5 58323181837f53396762f1de740cd971
BLAKE2b-256 94d69a0e2e5e33d1d768c861ddb6967daa36632165ebca8ab5f10e2c51892d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b573ecef21638a1798a077ddee62346a4ae619c4d019c5318fa09adbea97ed09
MD5 9f419235b25148aabfc01b6b53e50110
BLAKE2b-256 643a1978290ca2c67be9f0e4489372e3583255dda8f84f364d908d2b36d62f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e0281ae222efe8d6e000b98431efa5beab7ce26b3da4fc6167e6d4b33465966
MD5 4ad834b91b5086ef6107e425daaad12f
BLAKE2b-256 ddf3f1ddc556d370d2fce13df1943d8c7b0a131f3b940f9ce741d79cc299f2a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f696d6ecb3520cfcf89dceb30515afdb1f996d17a3b8593aa5474864ae77d52
MD5 89e3289df3923f4d160fe24cdf63e266
BLAKE2b-256 b9736953a4867beba24da2d9345bdda2b17199745ab3d9f02b2d4d327a47e5bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9078141880e9c53b3ed6c5955c78d593b02df789086a7fc5e499629a8c75f240
MD5 fd3b3127de0ca9bf72e0d0ecb001f8b0
BLAKE2b-256 65cb5363f1b2e3d71d63d305e9a7bd5a944d5a90d83fc80c2459d3a29e51ef11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1dff8d2da3d3967fee4843db35ab114354d8c2310cab74bec61a3938fec533d9
MD5 8d9f59569f8e543b4275bc8095bfb03a
BLAKE2b-256 1990369af11d2100f3eac40422bbd2c1f32ae82d5d935ed622bee331472f66ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31ed63f5162a9e1354f4c8fd07184412c0bbb51062d53629fd31b3857cdf475b
MD5 2f0da43e02340f3ee1e6bdb5d3192b96
BLAKE2b-256 14e1afc458d44e41bbbbc37dc089e93e4780195989ca99ba3d4c1f9790af27a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 541eb3927cc6ddfa8809f32f5e29d87cc48cc0e53ee9d6086d6324eaca192ca7
MD5 73ba0910e9fe9416b66d4556cb6f2cf1
BLAKE2b-256 68398c03cff76f07d53af4612cbf243a591ab1a0fe6bd89c28f0a9b630cbe4a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66a7a54e60f409a5aa3fe6ad0e17625dfedc2deb819b331f6c001109b617919e
MD5 e713940a8d17919315ccf0d8d2672805
BLAKE2b-256 e2a679d2b42170756736e0961787d03508366fb47d32182ec8395a91f69229a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee6de5fbf0b0eb99c864967bc8aa678cc7bca294360c163a8219eca43ce80e08
MD5 69bbfa7d6533884844baa212ccb773d7
BLAKE2b-256 2e5e95898ad0ed22bf0507d14c262ead9d065b2f2778354e7911f6392005022a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39c3b41fc4920c88cbaa76eb2556cb24e95f3f8bdeffc3a42c8f7d0009ab06c8
MD5 cb335e298495339a1015b0b437795890
BLAKE2b-256 c39f992d34864872ba2f39639944f4b519881b5a4777d7c0e700aa30d8ea7f5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 37a8b95b6a807ccd99e74df76460a7a8002ecb848dd7b09b373a9434a1ebafdf
MD5 0fbdef60b4aef093bd02da55de69a5ae
BLAKE2b-256 fea805f3b441e6e36943d260b72cd66fb474379b1ef1b7d30918bf49e4a130ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1378bd4c04abc5a058d35ce66dbaa7cc1a7364fc6142f5b3523186ce68d6a270
MD5 c9022b40dae54caf4eeb45b05bbc444d
BLAKE2b-256 409437019ccd2c5ab5efd2f45e897c22c206aecf8fdebbd5203f346d6567cbc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17fb8276c2d2863d8b2ef296edf8e19ed3351c0e6a65e203022049cc6c58e71b
MD5 e48d6fb3a33a58f4a895e348c785b84e
BLAKE2b-256 4ee5e9909644f020a65aef13dc43d1038ed8a5badeec8ff8e1b91dba3dc9f83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fea2b1991b145754f8623548d6b7b02f2924aa5f3867d489def6c251714bab29
MD5 6dd021a9b333d1188d317e75f63d6337
BLAKE2b-256 8452d0b12bc06607608d2d0d7eccdbceaf6ff453aa02f73f6046daac762edf28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2a8aaecaebdb22b39eaf5a41b237ace795aa1ff3cabea7927c3fc83ec23d63a
MD5 97fff25d53189bc451b07a31f5218dfe
BLAKE2b-256 c58da7a3bde3a9806d493bcbbee5b881a5ca53e5756279af94979fa8b2fb01ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cc5d017279f193d32bb4168ce59ed325c2eb39903f21d30e702bf3353d55e43
MD5 64792584322278bd330d27a23a9e5d8f
BLAKE2b-256 8d2978c68958cb781f21bcf8ff6293ee976741e72969d03a6079cdea0a9f30d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0c5233d86b878a2a8d45ea2edb891ad60c20e8269394b3d1030cc5497c3129a
MD5 13a669009b3d7a4ae5b294a499c75b2a
BLAKE2b-256 962356ad5c85f480fe67644730685c942bfef8d9ffa20bfe6dbbfbda9036418f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5014fbd4632f112acdba0fcaea7e3b74555799300c0188660de7f3a89ee0f7b
MD5 32f17043730917392f9af7f534f3b3c3
BLAKE2b-256 22cca15e115a8786d034fb4fc9fafca51652a69a8016f907e2d744ce8ff80d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9561c3ed79425cc1a78e79a55ba8669df5c3c11f292ac6adf3f5c610f293225b
MD5 edb6114713bf0737166d9e2372386cb0
BLAKE2b-256 d094eb70e14aebf9243e64a7c5146125ef44509bbf99cc8f28a30180c2fc3b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 813ecdef8a8d708ba7e89eee2f61299014078ab0ec8c8f09ae6db626561b3efd
MD5 a44471990ff5f967b90a081699d1c345
BLAKE2b-256 d7c58379f9956e6106c63688a3f6a0cfa4b68c28ffb7e7a6420c31476372db03

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f11d9c5d0c02873707364473306c13c916445f9a03356896bba5f752f59737e2
MD5 dcdb0cfd462235b7c7e965f28213e428
BLAKE2b-256 730d4b2108db3fe8d7650d2a1af65b7ee2a8eee5a0a8b9b7e6320b6dfa5174f3

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9ad56a188bb2553867e6b2d99fd990ec93e6cd8e21e5654986f303b1a10a0e6
MD5 66ca1d6e473e0972acf3effcab4925cf
BLAKE2b-256 816b9e9c7464e0d0e7cbb1e497d7e1d7f2a834e4986ead39f0965d529fe6a8de

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d39141d01a423384e52303277b17bb1e0ec9fa87fbe181bc57cfd718842db2b
MD5 7bfdf861578d4cd3651d39b4499211e1
BLAKE2b-256 9b16fbd359c3bbdd0a7920d191a92fa1dff2bf12629274215e671a705589acfe

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c965ecc0d9a777be0e8922f0148406e2f14a39f2d77fd5df50816f3a44299432
MD5 8d7696254609b6e6191540886f68efd7
BLAKE2b-256 df280ae2b0c0f7ae01abb5e1fda226109279097fb2bbfacdb9beb4755b179fae

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d619bdcdc0251c50ec1a58e2afecc0ff69367574b2291103ea12e145bb3a8775
MD5 59e4c83a2bed392c0256518397e0c30c
BLAKE2b-256 f382a65211af9c724188a5f785f55a69b6584ee4fd3f302933de992888d883c6

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 096494c8bb00a08d3a69d123408b986c0f94cd0679c74f34494ae04e5c20bd46
MD5 c87d7535d5e7122d1cd0e0b2081dfee2
BLAKE2b-256 9dc0759ad6dd0218ab1a8f0ae017016e61f271c9c8e5e8d67a055aead667c08c

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad570a0304c265edebd305f28faad5c85c8a79d6d18fb52bf0e08d66071259b9
MD5 5b18af821594400281efca4233d89cbd
BLAKE2b-256 c3fd579eae4616a60b99e1aec878dd94372e2ab562d8843c9aa564c2f635bbdb

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ea52ea980cdbac60e92f33c33a4f24dd011a2a61868aef80991fd7275d802f1
MD5 294a9c02951b76419c121779bc039273
BLAKE2b-256 c271e20e3104a50d9f26234c30baa64e1af20767c689d2b48057e240c892325c

See more details on using hashes here.

File details

Details for the file json_tools_rs-0.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for json_tools_rs-0.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 06bc356994466d18cdd81965ef28e0c379db2fca664586061f03182ba60b97dc
MD5 2adc2255d919ef430379dd7846625d22
BLAKE2b-256 1e47709d2d626e00ea2f3d17948fc0e12f54935d327d91cf4a06248e47deed6c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page