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

  • 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.8.tar.gz (230.3 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.8-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.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.8-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.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.8-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.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14Windows x86-64

json_tools_rs-0.9.8-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.8-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.8-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.8-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.8-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.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.8-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.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

json_tools_rs-0.9.8-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

json_tools_rs-0.9.8-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

json_tools_rs-0.9.8-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.8-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.8-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.8-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.8-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.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.8-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.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

json_tools_rs-0.9.8-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

json_tools_rs-0.9.8-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

json_tools_rs-0.9.8-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.8-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.8-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.8-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.8-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.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.8-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.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

json_tools_rs-0.9.8-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

json_tools_rs-0.9.8-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

json_tools_rs-0.9.8-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.8-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.8-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.8-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.8-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.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.8-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.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

json_tools_rs-0.9.8-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

json_tools_rs-0.9.8-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

json_tools_rs-0.9.8-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.8-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.8-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.8-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.8-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.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.8-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.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.8-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.8-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.8-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.8-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.8-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.8-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.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

json_tools_rs-0.9.8-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.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

json_tools_rs-0.9.8-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.8.tar.gz.

File metadata

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

File hashes

Hashes for json_tools_rs-0.9.8.tar.gz
Algorithm Hash digest
SHA256 ecd8b40a7261d9a18886040434dfd615f2769a23b22bb5fe53037138138aa602
MD5 5d47669bb829cdc2d1498fe54b42917d
BLAKE2b-256 967ae526e656f31160112b7049ecbb9e122da77b0f2fc0d6bfc18aae282fbb39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9f5bfd0edbf63d61d22b2f4d5b877d5173de51c856c42cc75eebc11184a89dc
MD5 3aac920951de7d9f54d47006d70cff86
BLAKE2b-256 cb49fcedb60f18c91987ab8b3762ca08a4f61aabf87d6e2b55a80b47e434cb21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d0dcc2c2982c0589000dd5c108fd02e66f539d6f1defbf7bdb713615fc3106e
MD5 8b8bde7f38ae1db9cc0503a96bb7695c
BLAKE2b-256 0096ffa6479770fce7b8643368be8049b41c37d55d50d53216c794198bcc67a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bca58d91551a695a96dc385e688d548816153752d2c7391b8512fa670c89bba
MD5 e743e4c319ed3f49cc3a4533216a789d
BLAKE2b-256 73d64e491b9dce3b3b612a768bbdc68416db5ec60359cef7637f32add56b22b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbecef7dc8b7187aaac62027090ba03c511b3b3ce46b6ac0ec835e21d41fd06b
MD5 27fc14b8da032389388500775a635c32
BLAKE2b-256 47e99d6d1c89e1dd22efd3aefd2417f9ec261f9c9b02f204afcc5bb86c20142d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5114d492bf0bcd6d96417b311e0dbe76d667482ec0fdd4c5ce1d8e1462b86b27
MD5 d522cec7d7c224b8bf1cdaa461bf3f96
BLAKE2b-256 5e73d66f45ff13847c78446d1e8fa0a10405d46390f6b789833c8c8b07313778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec706806e9da59678c0ed83bb97f716bb13c6273483386fa72fc0ed7a727f5ce
MD5 3044eb31501831ee59bf16fdba550d90
BLAKE2b-256 9a5c7e9480a86857168e3e3fef4f6c2008637076acb31bf086955ed446d2c5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55637af7d0db09477af4510bf6e2db75b9b4945fcd6a7b3ae38ef3986c07de17
MD5 82960df2daa51953e8cea6bae29da829
BLAKE2b-256 1d1804e3a74b1299e1277db6553895a41599d8832574adece24130647b5aec8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7c732621189555577ccd26df803a27a31498ff1e12ef321d05611f5a790dbd7
MD5 9af5a5648de3984eb8a5bd8fc0db33c4
BLAKE2b-256 6da0bf113a8aee2f3d6303a0a2be2988b163966855dcb2ae6afa6ca0578b17ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0e18e1aabd153e2968ef50da7aa8807db496c99d9a8ffcc1d7067a54613ad86
MD5 d99ab237982d31e3e790bd6872cd170b
BLAKE2b-256 e071a488cb169bd157a248ea7274a5969faca5596c05e73521a8e86a55cba08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2770a5ee393370c1bee53a9daf8ad889067b223818600566d9e81bada78be052
MD5 1779e964300eaabc7659fdd3e54bfa85
BLAKE2b-256 78f6ab26f8d8862eba696206f4836cead955978dfa335d398131e98026f69fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 190920e85be24179ffbf1e1c4ba1715cb59d3647c00353a03c355bee7ee982ac
MD5 607ef0e29b2da74d8b920e7336f86605
BLAKE2b-256 ba5dcef3851bc3edb9a6907eb587cca6a5e84375d73f6c0a94b6646d39c201cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac487dde4156e43f3c5d6c9d4ba202d73659530bb635ae321316ab7cd68e7ce1
MD5 702a030a77b72d93a2f46bb0998b77cf
BLAKE2b-256 e3e88ed41fd6a23234a67372c4693694e846a12f7bb777cb84330cadbd92fccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae1eda375c05ecc72b0304ec4bc8415286d25a7154dbe5d195119837e71786aa
MD5 f262ed18ed2e3fd6904226c4245df3f2
BLAKE2b-256 44a0a9d69dc5f03f13eb90817776324634836c1f2179d40877b9258773066565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67efe25eb20f7c6b28c72ba4e4eb72ab27c7c4968966f0d444e70f4504687f92
MD5 8f438871c19f0bf10ccd81378ecd8647
BLAKE2b-256 14bc167a0766957b66590d6b1a6312badfba85be8e4d6adeee4248d513fb8eb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 938ead205dc07fd702a74ca5109b21fc4bdae1a56d7472f99ff65dfca8124d09
MD5 6330a273c91f1ddff3e06d00c17b432f
BLAKE2b-256 ddf456ccbbcdebf09c456df21f2a78d20852f8ac5e41715b5448c0dae76dff1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 789872e1516ce95f8e63ff83d8cee5f53d71575f91640db49185df2841c7e6b4
MD5 b154935892537facda27d1548bfd03fc
BLAKE2b-256 e1d4d3194e6e62db45cdda99d3896c1e0678319c6157a93383af764c4b20487f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36215a0f16e7b513a0337710d10a08150a9ae84681116ac4267ec09d0cb873cc
MD5 fb6a888a0322fb9cce2ccd5d0aee968d
BLAKE2b-256 2966f0779feabd525049e74a087a857ffb3c56d2c12821a97c64de76d0b9455c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dc1a176c71d295b5a2f797c6d3569f43e5259f7ccd36933588caafad67972f6
MD5 ba5cfea062011abd9879f89d25fe65f5
BLAKE2b-256 0ead0d8aaa9bbb05886dabe23921867bdb98d2f28c9dea4aefd2cd23a12574e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed671dc16b53dc9f38cdc79d513da8e875bb7eb66aa5b53a049c7f4fb1a9530f
MD5 3720288d5a87dcb900a2ad45ba185902
BLAKE2b-256 d53e2c4fdf15a2bfa8a9d8b59656740697ef629de0464be09bc7cb648abd45bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 280f7fb5bee19bcfc02d6125cc5c370c7c5ecc196c92e951c168f2e8b8fe5f09
MD5 780a4f0777f604810920e4c8c183e322
BLAKE2b-256 686164f0eeeaa61786c46b88c35202987071344f5696f6dade92297fb1263c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65d7cb1a222a5cd910a1c133cc6cb07e56e7b7955c3a6be644e064bbe486ab6c
MD5 08c9f01b534519f47955700cf9dd1a66
BLAKE2b-256 8878d4a9636f155b947f0180b3046c221d4637655dc673d5ebfee86290cabef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4e6e328b3b2e459606d6be46dbd18b4de50a7ea038e0bb6e2aec0326cda1c97f
MD5 3124f454fa0c491623653e7aac210737
BLAKE2b-256 b61e57c1a5839e66c7e14c8eee0a1780a89c254babe821734939ec561e0b6def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c921831d2de84b0529afb8dded7afc343ce6ec5d2d3046119ceb9880d21d14cf
MD5 f7ae77c445d50eef57f2ffa401352c4b
BLAKE2b-256 7fe112e967dad15379d5bce4ef05a8df6f79cafcdcfee93e8190936b8dcd8f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6666ed7095a8e4ee5ea2b47a23c1e9d60725f048bb7bfc2047a2967678c53d1
MD5 273ce84caf10bfa13552ec867fa78564
BLAKE2b-256 8a880ded85e89b36a48e9280087c05dc71058f02ed53b1755bbcb90ff7d9bf0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c90afca8fbe367e2f9555e78897c9dc5b20fdcc10517b5ecb8b1f056ab95cfd7
MD5 eef8d154f909511678e9d74be6189f5b
BLAKE2b-256 f82629dc701ce1ed266dde805d20249588ef8051a5627821a47a51ec91d8816d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc533b5defe195556c22e0e4dc22e10270151eb6f4f213343d5481542f0bddd9
MD5 0f625d970e3c42bff83139966a581465
BLAKE2b-256 26643a482f778dd908e66c9151e8b81b45f04ff7185385769c6cbfc40e13840c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf60fdac22fa87c5811bfc66901745f9d948629b6b97342493adb16a4ee71564
MD5 46f6ca77505bd7b0998372dd028b4fe3
BLAKE2b-256 05dfd0fc90d08621ffffe6c809d342095960c39fec339298b3dcfc50624d9841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d34a3dc624e9ee8a3ff252ba4e6d3a758f6d1660ddf6e74dcc141f3c6779309
MD5 47d9ea2215a28ae95a28d09cf512ed3b
BLAKE2b-256 937afc68cb50877391c8f677efc0c7acc611cda1ac8af7a14bbc29038f000a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a527104d7214f894f7c8263cb86d27c9400e572711900574228f892a8cbc41fc
MD5 551bba885d92cbc4822194c1723d4555
BLAKE2b-256 eb11bb78548be35d65aa635cb335de7b1faa02a9cf5d9303bae2dfbec0f5dad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61fdd99247b73a1675a18a47274e72ccc602b7ac63029e673b1c58e68bb30839
MD5 c2e72df39f4d3180c0d72075047cad7a
BLAKE2b-256 2cbe6478decceebdd86f82aed75bd3e6a8cb5cb4f225fd7980104a71306333d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c14da3c16c3c3db86ab9ab78a54fbaf7ce098dd9aaa5d0bf38faf6d752c7c220
MD5 0dcc8414a9305fa076f1794cd7a5f3e0
BLAKE2b-256 61eefc30eec7503bd7767c196d645ae9f60a34f0f427b095be89e6f00766aa4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f993058a5c2865ad450b0e3e0ce8165ea3fe239f9118392eab9f1b4101dd40db
MD5 c5280fa0d530a2b0bc98df8db26b8b8a
BLAKE2b-256 2f1c5b35594f3b282219056a9a911e4fefce3cda6be68851c28c7c32305053fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e72b16d75f3c30e4fb5dbf16c7d904b645170cf33d0c156f8605b5fb79391272
MD5 d9123e1a71337a102c9ad69c9105d11f
BLAKE2b-256 f13843df3d8e20098ed3b35459743b7bbd4509e2dceaa67676bd2752a7cdb956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33b9b49d9b183a0b74065ac4012c0ea3ddaf3411b729bdd991b9b3ec7ad56618
MD5 3e977f33e249f58eaeab57194f29eeb3
BLAKE2b-256 f79568ccf748b2880ac8645a5646c1ef22e655ff85e1bdb46bff6e0843f25d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ecd42cd8ff3911e6852eb170d49bf21f1fb0b87c390e7f5008ad462eaa5171b7
MD5 50f4afebb8f43887a305e618b295e295
BLAKE2b-256 7836d34cbdb1c3d20ef1fed3bf369cb19600cc51799073542b32ce92849e7184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69f32e4616edea12a91dbc78b7830feca89c98e9682eb64e8a1adae850bfc815
MD5 0e83bebbd78efd4b51fc6d986c5f4353
BLAKE2b-256 3c4b90e159ea94046b4719e0ce566007102e96edc26d498fedc117e56672f139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76ebfb1951a910380d811e6c85f80df41c0432ceadc30565883662d7d0e78b1e
MD5 6b85aebbcd91a584c00a86df5094a5e9
BLAKE2b-256 e9b669099e323eb01a3fa60e98d865e1be6b2031b01a5b84381e0d59278b2ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e000705af62b3f3f79a19654e1e2bea6e677a4c34cd5f100160c98f0cba07a53
MD5 6cca197bed436c94fe53a887c434eb5f
BLAKE2b-256 c8688deed8996a0809d26371f12ce84b030be7bab0afc1739160a4139d258c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 332a3f4c8b49724fe4cf5b6eb37a6f6f6d7751c3c05a5e32e07759ea2a54a9e9
MD5 de987bf8b71c0f4aa6833c68c7d47fc8
BLAKE2b-256 2b1c29d034a441f96fc5ea33ff24aa29d3d9f65ca00e455a9e77c89299a479ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d71ec861c79875e832ae21245f076622a341ca0de658a49c308348f96368d7f
MD5 0dd6121b9be89fab38f1206aba9b553e
BLAKE2b-256 c8943ecd47188160e079f9f5f845ce42c1f5c97a408bc3f6557d234861500522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19780b2c200ebaa30da520c24005070a69210513deb09288e8667ed88329bc89
MD5 9056287ccc3ccdf9ecdca58ed6965525
BLAKE2b-256 e4014a9f974238d0c38402ada21a6e1c9a850859e11a5035345a29843006383e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ee9bfc76919bc26bf84d7bc8f75012964d19199f1e3e50c3593d85c63ddde10
MD5 509acfff4ea8d7d502c3d7ff91f94811
BLAKE2b-256 5262c3847931f8c6f69782bbb5d7023b1b77624df65290016ecb18fdd329abd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22c28b168d0773e09767fd057c4ee1e5dad8e7980111147d02c64f81c0095246
MD5 235875ead09afde7866ce2f84b4c9463
BLAKE2b-256 27bf51555acda7fede6e92e2940d3d779a10f17df82700db418a415fb1e15374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a8e44500b76f8cbf38e7fe38cd6d8dd88aaa2d8eaf76db4063faf0f57a1e54fb
MD5 30ab429e4e9a58cfc3420a39134d92de
BLAKE2b-256 ca3353aa9bf46f3797dc64d4c8053c8cf55d5dd72ea5f782bdb482836e5d7161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a82142a2b91c7020d5acba303feb5c9f93a73cd0e0e08308e4572ed2888120a
MD5 769b112274d1fd2fcc4017fbbd5a52ef
BLAKE2b-256 d1910d6baee93a6c8e108c71739b00222e73bc4f485169215fb6552d72d92a53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a77b5a0e805012899f37b898b42ee955018478815b65ae863e80fa8911f66574
MD5 c8d0e504540147b3bf560024b996c087
BLAKE2b-256 f044a68464773bc52401258886df398b2031dbc162f7452b325c5c266e0f766b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 09911c950eca9cccaa1c4e10366866e082d28db1bb58cf4601e9253b25321cb8
MD5 929092dad9c68077623ec26b81bd826f
BLAKE2b-256 66375be8633d53ab69fbcce5e496de3a78da937aff282e1b2283bed1a0cd121c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61d5a5e846e3df1f36dd363bee746d8b03b44c247bb99c52c15df1383ab3f136
MD5 5d1609db775e7545f989c301c8cf6471
BLAKE2b-256 3c110acf05bb19b4053a3d3dbcc273a7ea12395452694d4e946901a13902cdab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 873f3a9879c340a57c4e18f0acc43918ea928a96aeab39df2832d38cab661f00
MD5 77b56312bf28efa437b7388a869c9b08
BLAKE2b-256 08173efb758b74dd1bdd3146ca8b477a702449882678cbaa2266b85f5a00d0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2c2819af82b99ed34fe6411d3ec1cc287be16383fa9ef2086aecd676185818f
MD5 0e531b6959e7207a7a9ab89946697ef0
BLAKE2b-256 f57f63b22a540303eac08eb339da88e9461e80f385f9c83aeae66529662f3961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3066aae264c6a0a075e1486f138448ddc3e4f7b04d0a96ff4b9745d126eddf45
MD5 d511201000250254625ad5e085fe0ddd
BLAKE2b-256 c82e154c6e7710a2f4121a85d0cbca0a0dc4e08c66b3425dda6735c895d23214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9fe9f907dfd20df48198c71d00e9aed52b264353542e654b0079b14c926e9f9
MD5 b026dd3384cf8f8ce5cea0fae11c00a6
BLAKE2b-256 a68ec6f757ba3a6cc68276ded8266b492931c723cffe263878a82f08508f7cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad4f4c05d2f5c7ba61c24827744c7c136a8a5c17a3de3131f9f3d20afbf4d457
MD5 000130cdc85c89e8fac0c7436e471343
BLAKE2b-256 5e43ca692ec224fb106671dbb001a63dddefe0791367d1d53c820ecc54b0bb2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a40a3b0a6c89d4ade326e9f7759036a91dbe30f77fdf47b70f527d6d4119046f
MD5 d4b963ff9a3875fedd29631e30ffedf6
BLAKE2b-256 b8b642533979158268b6011700d6b24593799edd658004ae93a5a2727513f550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa0b3f22ef874082097a8a85c4321c844383440d704a8f44c14944d3c62a7c1d
MD5 56c0cd856877f4eef3785cb2da2636f0
BLAKE2b-256 d7ca3b333f0e9a5fdedf108f14f453616f7ca7d21eef4191810e5347aeb7965a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc7d10c2edb480d94aff3e02234390766063312557f0951ffe261967f8a2917f
MD5 3f7d8ba079111dd096965227b4bcb44c
BLAKE2b-256 fc5ea032e469ddd839e6079fb5a028fc84c9b60841373e33208f765ff6e4a8b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a44d7ddab9678e37250b590cf18fca61b27463124cc6e7f8945ff6aa601e9d2
MD5 1ea7493c67ba21f8274ee2db198f6745
BLAKE2b-256 8ed6301021b8105dfd81cf050a3312e4ff38b527851a4d54e44583bb0d34eca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6e4b67ef5bb57984cb7b47d983e135ee17c85cbe45a5ca86e5aa383c0604852
MD5 c9fd579ef3bffbfeeead2205acbc66bb
BLAKE2b-256 97fabfebd6579910b77575891e354fd0386c4a058228f5656770da98745a08ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8fea2f9ed813809b4dd6f3952e0c2074db6392de89101525474b912b4fe055b
MD5 1696000e7f1842a01961b62a4c394052
BLAKE2b-256 5ed7e7fa9021ac41265e5bbbb4a7b546d858292ba392370865add802822c8e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cfa9fe8fde9fd300c1580b70813c5e88fc981ac871cdc078c9b4e0e1ba40011
MD5 a47fbf88e86def980947587e555fd500
BLAKE2b-256 305786e576fe8a1e5c63474e3ff9a8ac7996da16d98c3ad69082080c94e54f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c1e8d91351e211c761644a9d67eeed566181fdae7f12c148f0055a614450cc9
MD5 49671b48938a040e5415b7dbc229ab99
BLAKE2b-256 3d57f323e8288a77324835644f1eca45be6f4ea0f673661dd22ffd11959d145c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8331f6a684d3b914ec4fe74b8d28ddba717ba29caa6c2149e02cdf2f831bf79c
MD5 b380033666987811f06b225722991548
BLAKE2b-256 1656fa43cfbb259e09b1378bb96135ed2ff891b303926ff2c6484e19c7489af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16cf17bc6b676a641d436cc1b841973343df84a3097b09e11fddbe4937315c82
MD5 02b83ce01f29ca4b10926c39bdcdf7f6
BLAKE2b-256 384603cbfcd43f8214e8d63492271322118d987c22ef88e80a42387bc5765fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23f41ecd512b54a615ca311225ed5df5552a6e7de5d600ed5a6011ed078b29f7
MD5 2ef4b3548d109f3e5b4d6be9cb82e145
BLAKE2b-256 75b3f67c179e3321ee0201399a03519af4f672982b015cc48a9e7100342e6cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 020bd3743f721b33e6c249ae7f203c1b47bd37d9678e37d1de150b04fe6012ca
MD5 27110d70982e8b010814c15b737a85b6
BLAKE2b-256 cfa0b83bfb9c37aa49c2ec8a1da99ff7a7b96eead45a0050723121c37704b210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 515481799ef90a27a25d897597c0cb07f88610cdd8439bcf1e55c03cee43be7d
MD5 76d019093d704182e6b88da8d6a09b7d
BLAKE2b-256 4c8734e330e8e9616d21bd532e3d07d60ee846ee5cc0545b55bdba31624e2169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c37dfcbad10124a9e8c1fea83c769c52feee7d01f981e00b0244597a104df9bf
MD5 a3c6fdba84b1676b532593e1a63306d7
BLAKE2b-256 ebccefe09047dbc10f6f7a6d08d9bde7c1eb44d31454bbf1bf2bb5bb9d84dead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 066733f2d4d6d53ea590fb457457ba5d055cd9f304bc4aabd64ca63260f943e3
MD5 1a4baf66a8a3153528d0a79bf7af1451
BLAKE2b-256 09e7e885a307445c659dee398b9fba152078cd1dcae578dbcdd8222e6088caab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cae82ee22e9a1ce217fdbee53bf7346bedaad97ffc8ac4668f0f769458344d3f
MD5 c9114a0f67d8c57e6b6c0136870c4c8c
BLAKE2b-256 22b4a9427c65867753257c8f0da8922d1f87411042aaebbdcf6956cc1dd2620b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 25cf9db6da52622034886ad77190a601cb7f3899f3d10bdcb1eadf76aa0e8567
MD5 9d21c206db8b7b0e96d12856e0ba2d60
BLAKE2b-256 bd0f2224bb7fe9d53f8e7e9ef93bb10e9f4421bcc61a66a41482d35fc6455c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6229cd4195e29ceff3fede689c8e3a6fc12382e534675f16940955de9749893e
MD5 a48f86ba5a5cecd0487b4820b251641c
BLAKE2b-256 12dfcb88ac6452d6525e80a1c1fe4af6102003bbfeb5906df80fe9c82bde2bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00767b62748465319f4834c5453ef132a659d977e76e6b4840807484eacb2a07
MD5 cd4c5662e629805d387342481955f132
BLAKE2b-256 d78264d490906bfe5fb7689f143ec30bdcf3f8728b05bfeb9600bada2a78b7a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a866eb923f060e924e82f3d9a2ad2044ccee03f3dc11dfe8c1557be716b1c1f3
MD5 c51d1864e5924bb1a51ca21a494fcd94
BLAKE2b-256 b07e420d41066bb546568e49a790c200b403b674dfa9f2902d97fe45b71b7642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f391ab26dff67b1d8368e854497e29f75bfa2dd9d63d9d219725cf6d0b72c644
MD5 da0b4d9450a0d97b172715e8d5a5ab30
BLAKE2b-256 00fd8910d3634e667446b28d98d7aae5eee05c405e6eacdd7a6b1305ca3a297c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7604a708daaf9849788e75f2e0234efdd944ddd3592a7e1549c14b7d2115109
MD5 8660b0a7be311502284a3614f1977bcd
BLAKE2b-256 f064c717e1b8e69637bfab63ac169460cd7de7726f0144f936aa8bd0be7edd8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7622530ace8bba2c2ff33468c2c6b712c4dd9305aafc8f66223f792043ed2de
MD5 ac3a46d3a526f526a86b2990ab79388f
BLAKE2b-256 13281243d5a6f19e28c234db338a5b8d20e3eedae9d2e7264409a414aeb2bb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0a2ce8d3ea1e1ae7877d9f94bb280dc7bb4d8104331789db34708cb59d77c28
MD5 7927def986c1e6991606dd7eff599abe
BLAKE2b-256 dc4809b76e00b712b509fb8443109288d379a715c92565c6e05de925e069c777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3cec3e3eb6aa3b842f5f048f4f1cf750aaa2b427c8a0e5ed35ac58694eaaf0cd
MD5 e4ed7be6ef45f1ec92d2f4a59d24b30b
BLAKE2b-256 44caffb99105c85e4ff930570518da077f92486272040de907e5df5d9a53679c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84bc730108afcef5c1860700c542b03ebd92cb6367fc8c73323824f03f56b3e6
MD5 8314373cebebfb8ab84bd61340c69e59
BLAKE2b-256 7e9978a8fbf72ca8e7c845c5d4b80867f823b870b896ee84924f59cac4804014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67198b2c09f2e150873dbc55ebdcc50e127213fb15b9e3281baffcb65ad9d3bc
MD5 9b7f8ea5fbbe3e5b677917373863eb63
BLAKE2b-256 905222a7508c5515f35ef5d2423ef34850df9ef601b0da82b1b046c02ea9261c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bf3c49563f1ac00c7a25bb4d2247a5eddd0bc376506c98c106bad5f48b9d6cf
MD5 ca737c7b76f1bd3e8cc5763dba62079b
BLAKE2b-256 10e77f30b8911cd560ed805b61bdca91684a308305c89ad231dd02c28984b075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d1fd0307868e29c9c0c13b23f6c2ff25c510fcf4959629a4c1dea28b48cdead
MD5 f723a7b52c33798ce06c8e9e625c6a15
BLAKE2b-256 b41178f3199d3050618a61e27e8dbb2a2e9ebe5ab03d678595ac622fc21654b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 974df4f0df93817a40f4a87beb018121aa3f4af32d01bae8ddd7ff474b6515d5
MD5 63039e9048edfb70c220b1677c296300
BLAKE2b-256 f105f07d11664105fbeb2fd1aeaf0d679e4bc5d73f96d326dea768b5b901e0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6974ea7ae87d35f5abc505879266bb066c4450adece2ad659e23c39e562dfa10
MD5 fcc160330edb807b3206839f9ae834a7
BLAKE2b-256 9af292cbbfc10ad4b64f368a4dda485817e2dd4fa3051ee31401c55a144125b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac0f2c8dfcec0eb08bffc66714f462b39933230115d1e74258a1c10cbddfbc0a
MD5 8eb040cedbb56b99bc724bd78c04ac55
BLAKE2b-256 249c7af834fbc53176f43feb4e97893290c679e1bc9553ff2d1bac38811c8190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab7e13476626e3587b26e4d5e7cc2793625aec4eed02498d9fd259570dd6a22b
MD5 1ac0fd7c7c0e06e5eec859d02528e640
BLAKE2b-256 4f0d5a0433b5eae66f337385b85bbfa336aae4889415c1c616a034a97a42c064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bd26f53d2686844293b9f324f058228a8408eac1cc02a1d0f9a9f92e63d389a
MD5 c5481fd757e0415c3b4869143d9f5a80
BLAKE2b-256 008fa46c286dc97d6ab2265a628161384444099fd65a5dca55dbd58218ce3ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84cd344d638ccf53040f80e7bc6483254ecb8489ca851153ce23379566fc6333
MD5 665626d872ace0fa96c42a7ad4015b63
BLAKE2b-256 4956af6a8c56e48dc6aecdcd7597e83878546d24d1960b54110861fd1a957180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.8-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd74271a8f7d15337891cdce2dc21faf78fc8f33e18c0bfa02c8bf10a0604fac
MD5 574ea567a1cf23c0e2e4ad12af80fede
BLAKE2b-256 04eb80abb703a2e4e7bf847a9b6c74dca3749ac60dad0928fbae296f469fa360

See more details on using hashes here.

Release history Release notifications | RSS feed

0.9.30

90 files

0.9.29

90 files

0.9.28

90 files

0.9.27

90 files

0.9.26

90 files

0.9.25

90 files

0.9.24

90 files

0.9.23

90 files

0.9.22

90 files

0.9.21

90 files

0.9.20

90 files

0.9.19

90 files

0.9.18

90 files

0.9.17

90 files

0.9.16

90 files

0.9.15

90 files

0.9.14

90 files

0.9.13

90 files

0.9.12

90 files

0.9.11

90 files

0.9.10

90 files

This release

0.9.8 This release

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