Skip to main content

JSON Tools RS

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

PyPI Crates.io Maven Central Documentation Book License

Why JSON Tools RS?

JSON Tools RS is designed for developers who need to:

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

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

Features

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

Table of Contents

Quick Start

Rust - Unified JSONTools API

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

Basic Flattening

use json_tools_rs::{JSONTools, JsonOutput};

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

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

Advanced Flattening with Filtering

use json_tools_rs::{JSONTools, JsonOutput};

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

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

Automatic Type Conversion

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

use json_tools_rs::{JSONTools, JsonOutput};

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

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

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

Python - Unified JSONTools API

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

Basic Usage

import json_tools_rs as jt

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

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

Advanced Configuration & Parallelism

import json_tools_rs as jt

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

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

DataFrame & Series Support

import json_tools_rs as jt
import pandas as pd

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

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

JVM / Spark

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

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

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

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

Runnable Examples

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

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

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

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

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

Quick Reference

Method Cheat Sheet

Method Description Example
.flatten() Set operation mode to flatten JSONTools::new().flatten()
.unflatten() Set operation mode to unflatten JSONTools::new().unflatten()
.normal() Set mode to pass-through (transform only) JSONTools::new().normal()
.separator(sep) Set key separator (default: ".") .separator("::")
.lowercase_keys(bool) Convert keys to lowercase .lowercase_keys(true)
.remove_empty_strings(bool) Remove empty string values .remove_empty_strings(true)
.remove_nulls(bool) Remove null values .remove_nulls(true)
.remove_empty_objects(bool) Remove empty objects {} .remove_empty_objects(true)
.remove_empty_arrays(bool) Remove empty arrays [] .remove_empty_arrays(true)
.key_replacement(find, repl) Replace key patterns (literal, or regex via r'...') .key_replacement("r'user_'", "")
.value_replacement(find, repl) Replace value patterns (literal, or regex via r'...') .value_replacement("@old.com", "@new.com")
.exclude_key(pattern) Drop a key (and its entire subtree) matching a pattern .exclude_key("crypto")
.exclude_value(pattern) Drop a key-value pair whose value matches a pattern .exclude_value("banned")
.handle_key_collision(bool) Collect colliding keys into arrays .handle_key_collision(true)
.auto_convert_types(bool) Convert types (nums, bools, dates, nulls) -- all 4 categories, default behavior .auto_convert_types(true)
.convert_dates/nulls/booleans/numbers(bool) Convert types independently per category, with optional _config(...) customization .convert_numbers(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. For independent control over each category below (e.g. only converting numbers, or customizing date/null/boolean matching), use .convert_dates()/.convert_nulls()/.convert_booleans()/.convert_numbers() instead -- see Automatic Type Conversion for the full per-category reference across all three language bindings.

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

Installation

Rust

cargo add json-tools-rs

Python

pip install json-tools-rs

JVM / Spark

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

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

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

Architecture

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

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

The processing pipeline:

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

Performance

Benchmark Results

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

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

Optimization Techniques

JSON Tools RS uses several techniques to achieve high performance:

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

CLI Demo

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

cargo run

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

Contributing

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

License

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

Changelog

v0.9.10 (Current)

  • New: execute(input, normalise=True, target=None) (Python) -- always returns a wide DataFrame (one column per flattened key) regardless of input shape (str/dict/list/DataFrame/Series all supported), working natively across pandas, polars, pyarrow, and now genuinely PySpark (a real pyspark.sql.DataFrame, closing the previous list-of-dicts fallback for this path). See DataFrame & Series Support.
  • New: JSONTools (Python) is now picklable (pickle.dumps/pickle.loads), including across a real process boundary (e.g. captured in a PySpark UDF/mapInPandas closure via cloudpickle) -- via __reduce__ plus a new to_config_json()/from_config_json() method pair. (#29)
  • Fix: critical auto_convert_types panic on multi-byte UTF-8 content in specific positions (e.g. "5€ García", a "+1Á2" timezone offset) -- two fixed-byte-offset string slices assumed the offset was always a UTF-8 character boundary. Fixed with an is_char_boundary guard at each site; no behavior change for valid inputs. (#29)

See CHANGELOG.md for full details.

v0.9.8

  • Changed: orjson is now a required Python dependency, used automatically for dict/DataFrame-row JSON (de)serialization -- pip install json-tools-rs is all that's needed. A per-call fallback to the standard library still covers inputs orjson can't handle (e.g. integers beyond 64-bit range).
  • Performance: Python binding marshaling ~37% faster (dict calls) / ~39% faster (str calls) via a detection fast-path plus the orjson backend; JVM binding marshaling ~22-38% faster per call (UTF-8 byte[] across the JNI boundary instead of String); unflatten ~5-6% faster and roundtrip ~4-5% faster (corpus-tuned container capacity hints, single-lookup entry()); flatten ~13-16% faster across payload sizes (removed a double-scan in the core tape scanner).

See CHANGELOG.md for full details.

v0.9.7

  • New: .exclude_key(pattern) (Rust/Python/JVM) -- drop any key, and its entire value/subtree, whose name contains pattern (literal by default, r'...' for regex). Matching a container key drops its entire subtree in O(1), without walking it. See Key Exclusion.
  • New: .exclude_value(pattern) (Rust/Python/JVM) -- drop a key-value pair whose value contains pattern. Applies only to scalar leaf values; checked after .value_replacement()/.auto_convert_types() have run. See Value Exclusion.
  • Fix: .remove_nulls() now runs consistently last across .flatten()/.unflatten()/.normal() mode -- previously .value_replacement() and .auto_convert_types() composed in different orders across the three engines, so a value that only became null after a replacement could slip past .remove_nulls() depending on mode.

See CHANGELOG.md for full details, including edge-case coverage across all three languages.

v0.9.6

  • New: fine-grained, per-category control over automatic type conversion -- .convert_dates(), .convert_nulls(), .convert_booleans(), .convert_numbers() (Rust/Python/JVM) let each category be enabled/disabled independently, each also accepting real customization (date UTC-normalization toggles, extra null/boolean tokens, per-sub-format number toggles). .auto_convert_types(bool) is unchanged and still means "all four, default behavior." See Automatic Type Conversion.
  • Breaking (pre-1.0): ProcessingConfig/FilteringConfig/CollisionConfig/ReplacementConfig are now #[non_exhaustive]; ProcessingConfig.auto_convert_types: bool removed in favor of ProcessingConfig.type_conversion: TypeConversionConfig. Only affects code constructing these via a bare struct literal or reading that field directly -- the JSONTools builder is unaffected.
  • Performance: the existing hot-path type-conversion function is untouched by this change; the new per-category dispatch is selected once per execute() call, confirmed within ~1% of prior auto_convert_types cost (Criterion).

v0.9.5

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

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

v0.9.4

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

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

v0.9.3

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

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

v0.9.2

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

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

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

v0.9.0

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

v0.8.0

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

See CHANGELOG.md for full history.

Download files

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

Source Distribution

json_tools_rs-0.9.10.tar.gz (243.8 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.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

json_tools_rs-0.9.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-cp314-cp314t-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

json_tools_rs-0.9.10-cp314-cp314t-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-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.10-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-cp314-cp314-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

json_tools_rs-0.9.10-cp314-cp314-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.10-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_tools_rs-0.9.10-cp314-cp314-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

json_tools_rs-0.9.10-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

json_tools_rs-0.9.10-cp313-cp313-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.10-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_tools_rs-0.9.10-cp313-cp313-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

json_tools_rs-0.9.10-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

json_tools_rs-0.9.10-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

json_tools_rs-0.9.10-cp312-cp312-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

json_tools_rs-0.9.10-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

json_tools_rs-0.9.10-cp311-cp311-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

json_tools_rs-0.9.10-cp311-cp311-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

json_tools_rs-0.9.10-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

json_tools_rs-0.9.10-cp310-cp310-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for json_tools_rs-0.9.10.tar.gz
Algorithm Hash digest
SHA256 e38d1b21683ce20e27870829fa4e2eded716e2aa7bbaefdfc3cb4a0e7138781b
MD5 e7e26997277ab74343cef69a52f609a6
BLAKE2b-256 4f93761d9cd8f7754f973d01009d767fab3502a813a8a834f074471d4d201c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50c623246b0791ee2a524e857d551fb714078f9e189fabed72bb8e08d30dacc2
MD5 07df162d4c874f20d021078ce162a5b1
BLAKE2b-256 cfd641f6d97df18e41abe6ec5090b3ffa5676b6f29b31e23bed5691945335570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b4decc3a56c5651a74e6e379039d008080f9dbf8f35227a915de396b5abc6f1
MD5 96177f1bf44f17254a2c8fd33aa71895
BLAKE2b-256 e01c4d35c651f969eb7af1938f38b8e63b919ab3d9faf2419af5b443f1beac3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae3e31413d2089468cce6673cf451a314c79aefca495a562d509d61ef333a98f
MD5 3ec88c0f00f48fce941174f60429f7ab
BLAKE2b-256 2601a5ead8d02788558158b540742c48fe2165ef0a9534f7d47c01f2c4870118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b17d5a1fe371cc0278597c1b7f6a6fcf181ab1f928f598d78d230ada04af245b
MD5 a16e8411005a0c3c281ec05cabfbac92
BLAKE2b-256 204c26c2f254fd205606493040bd6c3e4d5ec63c37c3419ae9a309d78df66681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c338e11f1b0c961c534bc3b5108af089146f34be4f3210d711e3578bffbd807a
MD5 c8454187083bffe0398d18a0bf8df915
BLAKE2b-256 419b605f99bda11214af0716613bb74418eac6884ad91ef48d60d6e117e82fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c28e9fd6fcb9b5ccf4f6e6267d6c4cdbe15e633403e1e87a4b3fe145c2cb8368
MD5 52e43cdf830e27e636dac59b9f69ffd4
BLAKE2b-256 a4f4005d3d1d05fa0c9447d7cccf542a6107df653bcffa0170fc235e631bfabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7db4aa89417bc6ea7caf3bac1c14e2891b47c5e49a7a600473513af04f5cd08
MD5 aa5b4dfb99b01831aaeee9775c1c14ce
BLAKE2b-256 77eef6f850b0420947eed7199a6a2d69ebc9730ecd4f39bde43a6f829674ddda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0981bb1d531062dccde65e90e190ea76a10829572ecfd27b5b3549448c16c1e7
MD5 ae8bc5639a7ef902f047bde3b120843b
BLAKE2b-256 1d0496a999f3e0115cfa3e90145af4a87778b328d3b91febd2704961807d334e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8ed38bef977b14678ab09d44a641c264b63058726607bae152c675b0d46ef664
MD5 a1f7566195985ea3e2015749d9ee71be
BLAKE2b-256 ebdd8de446f1fb5b3706a86e630f689dbf8f1711b817ebc1bfcf8dacaff35cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8759d9e4258719b321f41cce2f48f9fb3739d7bec4570206515841a7d56ac30
MD5 d3c78503217965f83bc6c9b9102e6564
BLAKE2b-256 3024fd8efa22dc56d035080b9620777d80a93d292894a4e2a5c0e4550d30739f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93636890681a9944923768239f2b3cfeaf700aa9ec3874f4a2534915c7ef3031
MD5 2c2e1b54275bc53e747f05472a520ef8
BLAKE2b-256 4c0d586a079c866619155bfe1f51c57fa9804f22af0c6567fad6b7788ceebb31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba61f500c7d474d947df8438925b2691b705709e55e82190fae9ace4b4475ba9
MD5 3f90700ace9c86db516b0c9a6a36f3ef
BLAKE2b-256 0a170004ea5820a610e3bd0f884a0105784acb6ff151ef726db6b0f1a8401a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7c63a465cbac0589e3b4d3e2ef29b00fe508781605e8bb9e7e53d7a267ac5240
MD5 07d0f70174c69ecdd2fb5853bd7061b3
BLAKE2b-256 b4ff1b724f76f7b6b2b34cfc4396b637fb0cfa53b927e8cebe822403e2c0a134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cf7c6f59b78a04bdde4ad05e8df4267892a5bb692648323d6d378a2e85f0c56
MD5 37b32b6db2817edf3f0f172622bb9168
BLAKE2b-256 0dfaa1478afdab3ed9eb0ca1ed4ffa7dababe303f44bf874361c213cbc002360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6611187eb4bcebfa448105395e57cbe4a9dde013212a2f9d726e59de71859d0d
MD5 dc03f8f448456e45dd0280314df889d4
BLAKE2b-256 6f11fdb7e0327d6d528a2c26873993d5269f7f0c882249ceed742db6276706a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee6ef3d795f8932d42fdc44f4026e884bc6be80fc281891b5e70dcfd8eec06d3
MD5 59068a9da9b052fded8b8495c50d27ed
BLAKE2b-256 52725f7b2cd39658d1e5ea48bf8a7dc656de5e2813071bc72090330512cc5d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd537b2290e36cdbf825b1ecc72946c58d5ab8ccc32e12e2568d4247ce8cb50c
MD5 b8b42ad75260d7bbd2b393856c83ebb9
BLAKE2b-256 9a1169576060598209e9653e53a8c8202e230b7fe5743a69f6ea7e2db810f8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1db252e044ea4cd6005b53c848ae40dcb3e7aa8b364315868b44c6a1e71a5962
MD5 96557733b0d01aa9c342fa78f0154edc
BLAKE2b-256 bb8c3bf4fc4ef980813a5221b306803fce5b4d2d874a419fa567615d46fbfa9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fb423e2f94338f842ee80182d42bfe5595aae8af90678a74c21df5b81b7454a
MD5 b6cfaf3ea492999e748d3b18302ca415
BLAKE2b-256 5861c860a1620064e9f1fef5102e6c2f7a33ec2f51d612dcde705b85d8347770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6be5740374e2130956abc6b92381ed0e18cbba207e6079a2e837a0638f7f2061
MD5 ec5d381b9e2dabf8f632ba392a10c33f
BLAKE2b-256 255218a7c551055642b5698dd8b55a6fec0700382ece43f55bac4394711e74d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d68c7a4810d65f3eb7dfefd492020fb93d3acd8553307b94419f1e081e2627d1
MD5 2c97d476f04cf88830d4a91d01bc9083
BLAKE2b-256 f34f94a5d2a054eefeebbab8c65da025cd9d497cdc12f4ab78604a3fc6b603a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1af799e3482ebf972d0d39bbab1bdd7a9c227d98060b510c2b7c7430f88e342b
MD5 2040f3f11366cc09eb4d5f445e56b350
BLAKE2b-256 5b477a0f8b65b10bfc88cfa284b1c040d80a153ea2710e943b933fd7bbd63f9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1d3d8acccf07e411a08288788e90168d13c83757d03c64a2db8770e952725574
MD5 abcce17d9b04cfa4d64e4ef5af06a52f
BLAKE2b-256 e47f1395b3540683e1152c14dd012d6032a1e3d6b916458d237855de5bfa1696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67decc4a6b9976a1c8aa6ce9f2b3ce6632b6cbb76d7dfd81effd3a47182b8fda
MD5 2e53f2d9f6cb2bbad4785bc9526534d9
BLAKE2b-256 9b919ef3d6b521aaa7b4951a2bfa83884c6cc5f15a43c5243d9b509507e46c07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc8efb0d9cd5d1af5159cb177a4f43546f1c8d38fde5a4f6a5b74c4c90adee2b
MD5 68482ec1054cbeddce61ebb2cf1b86c9
BLAKE2b-256 ac15dcff3174b8935adda1de9284eb6185b104d4d7e2766c5141ad3bd56bef90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 187d8d167a75fe023f0287d8685bd4fda03a4ac6c40cb360c681f50eb8fb806e
MD5 22be2b6974cc756c0d745714cdc81e6b
BLAKE2b-256 d6d776a3f7f8a2f8c58970e721dc16a154e38daf5a0a77b5e10071845e4fd3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b98d24bfe5fbcba28242ad974c1ffdc971299eebbcad8a01ec56cd6968bf964f
MD5 789c7fcf50920fb5ecbef2df779a681f
BLAKE2b-256 ed45dc91d33c9a7a74715f39671a59b65374a4033e096dbf2727bc29826f902a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7bc538fdabae12023988e99bfa4469e3395c51f33db234fe8bcb75d7b2ebf3e
MD5 77846fcba077a93783e1cbc19cc39437
BLAKE2b-256 24401120242059f05947d80fa5a5880ff3906c974f3fea37a599f7fc4a171185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66939605334b84d4e33af69973e57568129910443bbc7f1c6d5a31597f8fee88
MD5 f6ffa197e0b7c8dc2f48b64d4b9e2deb
BLAKE2b-256 834fa6b85d4567e38abadc958fc4d490ff3ac955f3f9a184e9b9ae0a5abc6edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d9e1ad24be463111dbc10cdec90588fe8b4b6d5c564d61337150c8bf2e08d8d
MD5 55b7f07f16bf5f950e210e57845d9d2c
BLAKE2b-256 e9dd9f814757d99c9b5d176e0ffe2e296c0917de23ea2fa682fa85483b215635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5317f71846426fda54460f49d0ba0f1f196c01132faee936c170a140fe8f9086
MD5 91f315183826a55278c8bb4d42f49f47
BLAKE2b-256 20cfb0fbc38ae4d3fc7d63a621fe4466d679d25c19ac8c0b9ac1d0689aa9175c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8711a045267b5c2afe48e98ec9dc1832c421330010d8fb2aa5fc21f8236c8447
MD5 d71a71661d56be6d6fb69ed9450dc529
BLAKE2b-256 8c4245ea18176726c0b8abf8eb7e682910551e2fef95f2b5cddaf3710fb1fb9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b631ae97d9c00746d533a936de7e2ef0d97c42a97a2a53361f80a7f4e6a47164
MD5 e9c1356de2f9093da4d8df8c4d3301ba
BLAKE2b-256 1b2b4a326186303c5adbc51b5ed1f1d2e4a1cebaee030e37b07c9b0ed5780961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dce99e0025b3f07607b476d5d20c8a7b50bad846b148763c32428ace157e1bec
MD5 731e88e50a348c455dc247d3e6cfd511
BLAKE2b-256 4e8f38f82ab83ae89d0d9da83d74cc775d88fa24f131e0b75b84e8be382d2c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ad159578960bd53e1796e3b126bbb5261fc111c69009bb568080751f61241d6d
MD5 a7971b2995e0ef8e10f31f6c41837917
BLAKE2b-256 9d1e5cdba2d2cad462adfdb41fc7dd1ea61f145389d53ba176637b26e840e65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91a342f85f4d76c67f04955060c1cef594ada6cddcd1c85f23d356cdab7bf7a6
MD5 73977c07fa477bac0c706ea74c12f88c
BLAKE2b-256 9185c565c605747738f14deb9785e107876a34e5d58d1fcd716ec92d1f4ec3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e34ac733671a4c9549e9749c39287d77cc5c2a3e3524e57501c12a765ed51c9
MD5 4033007c560b14567fa1738795c73629
BLAKE2b-256 ad44b4c32251b1d7b73f8ff8ef34e7d2273656c017ab082d1cb0cdeb71084539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1770ed1d7c04f40c2b14beb4a6bb6614e4a67d77c71f418d17280b10966ee3dc
MD5 f923122c2789b3b180061c25944028b5
BLAKE2b-256 628c83ebb03a2b4782efe457865a96d488af32acfb500a3414ae37da8dbedf03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 392037dd53c84d7f9f255bc25e44d05bcbc02bce11e146262de7aa7791c72463
MD5 ebda3d5d4a4ce0f608516f6c5dd460da
BLAKE2b-256 1eeddf5c54ab29fe962e0161185c4f88b3346629919e7e9706c9b888dfecea05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c7eda0a4f733823e8e3d127bf47f7d82ecd6330891bffefccd4b4932a193cbf
MD5 2325fe3d8828c92e91c770d6d0b67030
BLAKE2b-256 5afefdfb4233140cc7af3c2004df622fccb05cfd0dbdd367c325c5707da10d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0dc85fa2b507fc3861c69cdbf4cba6a8e2249a36c7fa029f7a9120596d91512
MD5 8adbe9598139f0ee51f09a18c15cf4a7
BLAKE2b-256 31601e9bc655ce77ce4dd7de89d0607065c5355b767a5ac336fd90de61aadaec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0019064d3d62cf7096a49abf71096fa05f664ed800d1acdea5382a8c41d268d
MD5 206b978db9d05bd5aae6092741985cb7
BLAKE2b-256 c8279dcf1232378ca7937f37d676d97331d4ab0c90d15e3cffb2e7ad2035b382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a03fa91cb7ec339033242d119c38635d9a96297916951b87969cbe61982b6f90
MD5 8d59655bf461b66920cb6c61747420f6
BLAKE2b-256 d232669c0e3293a6c6fc8862e1df17ea46662280182c7b9cdbcf83aa0bd0abba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 497299fcb23a9d6b5a70b10de08bab0506cf93ef36c5e18cfa12dfca24eb27c3
MD5 96d6dfc0d2d960aae00787b6ad400961
BLAKE2b-256 23ae6b354b487c8c0ba7a6041c4a8330343ad02c16a463f28f47a5406d232967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f8ac812ce08af3592806454744a3b936b798c305037f054531d28975aaf6276
MD5 57c00eeb9fc819fbeffe3f825ba76afe
BLAKE2b-256 edef3b6b99b77bbf42c81bbe9e569f56519197e19897e05bafea574c5ce433b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf8411bfaec50ac2d3bddb87a275b7fcd2b96cd987bb5462c44daf88244fd348
MD5 5892e8aaf4ee70331ecfacf93220cb07
BLAKE2b-256 df3bcc0f27ab0700b892fbd4bf56e104fa4d3ffb9533fb812d0523ce0364d3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be622a173bd150b28c6f26691fcc1d6b86003437d3c5101bdf44e3e7989ff3aa
MD5 94dd43693c606a87ba37f0aa66d7ecb3
BLAKE2b-256 bed1ccc003a80b76d7f64a4649909f07dbae8285b6d316ac62fd12a5529b3478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86c50be9b8a099f56c1cfa76b4e1c05c8b8f0c3666e32034d1eb60f0bcec43f7
MD5 84110db5ef2a1eed56dc0407f86bfc75
BLAKE2b-256 c7778c575b8ce9b3d3d4efd0ffce9bb289bea3fb268881e6f4177d64738dd190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6765578220c20fbd9e696b2cf293dd12094502ad4e4eebb1e2ca0314538d73cb
MD5 d54371f932c3734d0cd2feb2f643204b
BLAKE2b-256 b2ce81a5d333456b444e555b0fc84500fb50f40f86bb8b4537ce45220a269fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb015ddaf9d7484a7ca42283a6f722c07f09429d0992af6c0fab21271bbd0b50
MD5 3bee079c05f0764b128a5545969c543b
BLAKE2b-256 9d610942936a9ae9ad6f094ee97b123a0f2e730a0f514696ce16315a0b5f2b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f655f4fdec8f35ebc46895db8dbcf8d055743eb6267d19d11af14dd71ffd3679
MD5 229fd4be4b046d81d3d1e9d769ce11c4
BLAKE2b-256 6a1d8b2d0c442f27f6ed3683cefc7e4f6e9ad9eeca91405689f2f4486dce9c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73e46b7b08316532257c3fb85be6a96ee30b7f5834816c4247dcd8265cd73b16
MD5 45898c9b29610e1683194fdb44a44b44
BLAKE2b-256 afa891fb2901b627ec1c6f275679376853518c599826bed2a22fda634f5ea5fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 887efd458a3d4977e2f91acd3c4d8a832d41f97a6f50378abcd4f22052f1aa25
MD5 39e8f2ea75e1186524c0df36fa387a7f
BLAKE2b-256 577e413ef1c5ec842f006fa94a01c654f14babb95541f794edf33b7b7a57353b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2b3f973299552dcd384259bdec39b54c59f2db1c8e6531cb48331307fcfec48
MD5 f9129aae0e70cbc3536f05ed878fc707
BLAKE2b-256 77588bbc475171cc1ca638dc676631941b1ca35d081f847b1d8d3480e9db6b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b23866efcf8066dec7705c0fb08b3011718be4013c098bfff0b409f69e2ec348
MD5 2e6605ec56b2ab0a7a2bd20e9ba33c0e
BLAKE2b-256 173471e86b74ffcb05d0c2d5c1fa846bfa987de0073d7d785bd982a1a42839c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 768f808585aa8ea5a9ff8c90aaf0e1601583b0a8f55a30d49d68fb14c407610d
MD5 29687e01e90b79e6046e2c134a9bfb0d
BLAKE2b-256 f2aae716c0c07bb48cd3b2dd5ced5113521bce12fdb9054b0c3d21ae37d22120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11bbb1d22afa609d4b8295d93fff3929220eb7756d3aca6d4f535975f9a050a9
MD5 be912e7983995b4b88434eabb761ce7e
BLAKE2b-256 fb1cb92d6b42487dc84608a1f6a9e6fbb6267a3510995a1f9e139b93608ec6bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99ce589d5b6141e23d2f6c431e20a7e6ce6ba7cd3b45a00dda417c7b6b0a00c3
MD5 359ba065a91052e810e99562262f26b8
BLAKE2b-256 3283b6f4430d0df2c6a3f4dd420d5ffa01a69a106fa776e1492ba44375befdfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ff36f637c5c8db63f92c7c7ae5ba0daa4e298d4d36905341315ce5c990b13ca
MD5 38f0bf441dd34e7c415dff0acca8c7aa
BLAKE2b-256 534b760873238cc427652104f8c92e4e43f0ab41dfe2ca6b8ac346df970c3421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b6e54d84024245445af4e1e80acbbff6acbd881ed54bc38a7b53104dfc3ac52
MD5 1aeb3bbb5cac5cf92a6083e713a1c958
BLAKE2b-256 ddec2d656327881b57ad046f45fe67b6fbe1ebd61f7e05788c4ebc73ebc9d9ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0e5b3460a0357003923ca711d7f82c5b9dd99fa55582e559ae5aff3640bb88c
MD5 c8bb75aaab0d2efa49b03443c58c3e3f
BLAKE2b-256 a99825d2a7642c8f87c4c8216fe3c7c19cb76e80a7489be1dcd5c54bd9bc08fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 853a2d9681da302a09306d96367dfff71a8ab84d8fd18dd17314f26487405670
MD5 b14ae93ce829a8215e5a4e87ded5c343
BLAKE2b-256 c49509ed86e346bb4543a7927c0bbfecff4be6ff0e98ae1e86e2592db6700c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 046171d621da6109687844a213008c7d568028220a485b2ae59e37f803bdbe9d
MD5 3718cfce9ccc5e32050532f7aaf47c3b
BLAKE2b-256 8245fe270f587b8940cea2c91f87ab8088c14edb90d5bc55bec5a458d752ee19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dc42ce57d1359ff0e11328a83f8aef0a86b5fd859433c442809a2f6e79ac211
MD5 13b96443cdf72d85f430fb6c8264e220
BLAKE2b-256 8356ceed628a5a0253b91ee894bf758b52bf834882f4557a774a462f54bfc05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74f70c4cb5c6951ac6111e7138fdc54d8dbb418e0e025f305ad612bc2f46d98b
MD5 a2d9f0b34bbf91d0af7d49194b845dd5
BLAKE2b-256 42873f6aea1028951bfa5c31d8a1f2c9775ed38120d1d1f41e95928c3cd34781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2fa976597e170767922ab484f7110717d52f9857ca8d06692bc5413adabdd464
MD5 cf78e9f2267f5462009f759fb3b68d8e
BLAKE2b-256 f3201a62b04e8dddea0a6be092ab2645853ed2967974a5c7a0f072cb4424d41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd5931adb24709a5f51c8f1927a2eec8dfe1bbb7fdac478c61f6139a1ee8a504
MD5 4a096850a7bb8e53b838605a8a55d14d
BLAKE2b-256 0f95f9282f17919e43bed989cc2ca40d649691ffe00473ec3f4c81db975abd85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6ae62329ba6bf1ddf29aff65a7852c526c147887b538e452c46ea327ceb16fef
MD5 c70215f2ac40e54debc97d83b017926f
BLAKE2b-256 5a251d44444d3ff6621d6a4cb0609b80ecea80eb41ee533dc56fbd0638718abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f64f5e9e27cd1ea3b7a769d25c6e473149d8984618538a5e4f976db229246c5
MD5 2a41e64b69d1e7905faa44e868211420
BLAKE2b-256 21810223cd7e4a976b6403ddc3b04e7b83e8c41b550c432be084cffc949076d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49158c1fe7ab61da9ef3c5349cdffe324089c132bb2542ce42ed30c438bb8b10
MD5 e6acbd16e73d19d6a719d0428acdd7fd
BLAKE2b-256 db406d79c190439c9997b30e76b4d7d91aed38961a1dc930e35d14fa09645fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9bdb2ad33dae8da74f8eededa1fa753c08a8a30e0a8d23e23bc290029f1e42ac
MD5 7466e840534b5456245f5bb451952cda
BLAKE2b-256 f16312c966cef2a7a48a772ea967d55c5161a13b0e07d2cbff5665638e2ac6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef073d332c41058e24435cab8027b5bacd83dc1774ae8c9888828731b7a69462
MD5 0d215f6c5b8174815be74c8c9ba076ee
BLAKE2b-256 5c107fae8d39c2cff0ae8acadbd60b57dbaaf3cd53b234596a1f6f215817e884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd9a0717ba894d6362e5c752dcf35c6d2fde4d85399e683fba762e9135479bf7
MD5 b084b13c8bf37659c4eb678416234d86
BLAKE2b-256 7279d6531ce02c9b62c3ecea573e353148e3ef8c13b254eeeda066503da545cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f290fbd96e50d31e1aa96743ef5764e04c17b5c96a258fccd71c3666e836ae98
MD5 9c0f2738b6768132a14555f970791aa0
BLAKE2b-256 c6471a5d4b2e1c4334c4ab429f8a222f71cd97901e58cb3ba869d19078bac0bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3eb4f0a2f69671ca5f756f2566f8ee1257f321241d4ead800e16eaa1a34a22e5
MD5 14e280e85e315901a5cfbc6969c47dfd
BLAKE2b-256 80c54e235a3d5fd2280aaddc77755285deaf527e146e933a317e4a46e0a909df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92c83ab478b120d0e6d1fb6a73e8961ad0e29b77941e7b99435de51a2b1a8526
MD5 6442da4d65c863b6b146ade5b86cde43
BLAKE2b-256 f3170afcc6ad982aff67a99d5f3f19cec3e427127a9e1a40ccb457dd37aef55d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87e080727ce30a43da94ac8929ca341059c9f5f31002edf7349ad8054ea65956
MD5 98748e89e05d2dd8a78f000ef0e4c023
BLAKE2b-256 b76ffa6207b511511f6271e3ec02029d0a398ebcccb99fdacb476ab341af55d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bc2b5cc8980bfe540af3303c0bb603d9cb777b6c8f3d754eded303807c7b783
MD5 ea4bc5993a1e256d14d93ca0d13fdb19
BLAKE2b-256 7e3ab1cbff5ad9703af2698778ca8d69464afbc0790d04600d0f1ffaed522fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4e28dc77c38b4fbc02c6d58cc8913f0bca31b5836a5a6b192b0e36dba422dee
MD5 a2ae853516c85734a012f83484e577aa
BLAKE2b-256 793d1f63ff9009b051ba87de031caa6240752d847fe2c77b71989efdece70d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b147f1b4123e4ba91e4f28d44cbac51a586a0148b9dfe639c2f9fa49ea01001e
MD5 ccebdac3d10c0111031cc5378488b132
BLAKE2b-256 3e15543730b2cd7856c3a47f093f6a4596a250dc76e5f28b3e0ba0280077137e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e193b3befe3ff21b0692021bd40649a2deb2aef4a8de8305c6f3050ecf004a0c
MD5 77958a5bc164b7b4b1b520e84065a077
BLAKE2b-256 b1c9da2b2b36d98c6240ebd89bee8f61c19b46403d5a2702fcb8539614afe0be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7334fbc7a84b6226489708196d41ed487979df188cb42ef23a1418f9e10400d4
MD5 5f0328532083a9b38d98fcf423f356e7
BLAKE2b-256 ae61cdea0d14d9790da89e60718a576e716e2108208963975c92b8cf3a1d65f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a540076c96e9231a023eca0370a7fae28ae7bd6287231f7e52a4f8a45a1419b0
MD5 34f403921c9222479c70ca667ca8585f
BLAKE2b-256 88a3fb8182fa716f3119a6d935df951fe4b9669955b2d7d4e1bc8fd6968338bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0ec34a99c993acca8b8c78091db7f136e81c305fa464edc718e61caf3805ae4
MD5 943722029ad3fde6cc168f3e0540e9af
BLAKE2b-256 69040a3b6c849efbfb4be33d16c82250911840b5fac0be48a0a3e8deb658fea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adb06be89ab1794bee6f4a869ed9e3dc042fb3363c03b989aaafa5f3095d797d
MD5 204546436fa8bbe77d41b0bfbf272988
BLAKE2b-256 dd1d0773a19f0e9f67714a47e7cc9a1ead490c9517ae93dacae68ba86094c08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf0d4a703c7abba3d3623c75ed202767ec567ca101cef096e6ff891496dc2c5a
MD5 d99738ba5fc4e1dd8adeb76691fc95fe
BLAKE2b-256 03b1a09654f7ddc936dce497ae82f9df43d060939ca851fcc7277b1b71b7da8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a24a5855faee897325e1d76e7c0af544b2cd33d5af5ae3f24745f43e651fd73
MD5 706345d2c93013edd843ced813bda53d
BLAKE2b-256 a61fda3911a304c22f52608b1025f2fea7f633e0ea494711345ae05f3949132e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ffbf6c3ec2693671e535355864efc00cdb899e372a49c207a24f0c1ef695b39
MD5 c07cdd0c976d57b4cf80e5e7d62c50dd
BLAKE2b-256 2358ad8f45378e0a042107a85931930bda671085c648b24785c86f06eba77f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c6d74defa83954411acd341ad2e90a97152040e10dc4ef365451e7b6b1d4178c
MD5 ef34604e2c6f54e644b25560a3970ed9
BLAKE2b-256 8ef051f6f37a04a3182250b2f5c612555cf390993f0421b41bc4a4e84ea81acf

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

This release

0.9.10 This release

90 files

0.9.8

90 files

0.9.7

90 files

0.9.6

90 files

0.9.5

90 files

0.9.4

90 files

0.9.3

90 files

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