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

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

json_tools_rs-0.9.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-cp314-cp314t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14Windows x86-64

json_tools_rs-0.9.7-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.7-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

json_tools_rs-0.9.7-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.7-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

json_tools_rs-0.9.7-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.7-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

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

File hashes

Hashes for json_tools_rs-0.9.7.tar.gz
Algorithm Hash digest
SHA256 778457065026e1a227a917ae5de6445b958d61c20986f1dc7cf7ad914d02799c
MD5 938a58edc303b2bf094c0f89d425be0a
BLAKE2b-256 2e7973784e824428bf2f333985a9835c9397b422fc376c167bb31c29c46cb24a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85714c3264ec1a5f1c017c5457cef1ecd4b5d7b06509e7b9b1b5682c3def3396
MD5 34b1f0e68c49771deb57d6bf53b55923
BLAKE2b-256 a1398687a5aa912d895cb0c6065735a15df7ee7814969189e71174d0781820f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f3c3a23edf9e8f1ce86f0768c1948c98caec3f307c93e5a982176306732f11d
MD5 1a2fbbb9ae0c0bda7a89fe1e10e3afbf
BLAKE2b-256 a8403feb609ecd1c0fd32f78cefe989095abcf9b27f7ab0cb0d7d6227a4fa619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f005426bacb48015fd9bb2c7014d3eed4c3293696450fb892df9335a80f3751
MD5 2cbbff3259e06505bcae5972202d1708
BLAKE2b-256 81657feac029703b7fd19fe67573acc1e3c210ba07241394e032db4289e205d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5a928f21714e3dc6b6c13034afad01b11348b1558d09f88daa3d24fd965aa26
MD5 3132a55de36d4cf685ba36e53d0469bf
BLAKE2b-256 64583af1dd5908a0040070b15d59bf00934171e78a984dc1702c1b6b2dd2df0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 737d4ae784e2cb3b41bfe2e1231526d07aa1908aa4b7da69a63e7182b518f7d5
MD5 36ac889d0972de7b703691415d878825
BLAKE2b-256 65f39a756924380494fe085c97ecdd1968f8057f74c7557fde7ffd971c0a7a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b254713068f3d4032eccbb06ba7292b3b3b778d2e6658e4e31209eaf6cbde654
MD5 dcd69baa4a2e913179c86869b3ef6de0
BLAKE2b-256 4acf815c26957423a837ebfc5523a64fdab2fb6a6de60328d9140b40f2eca138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32854ca524b67147839a546317713297bf8a68fc8d10d0f51105c767b352581c
MD5 7f4a0d696c72ba58bdd9e2637d99c2fc
BLAKE2b-256 263f4f67adbcd6a685aa43945ad6f52df373eaedc7b776b31169ff1d40cabe95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fa51677f73d13d73d5893a8d7f4ce036a32203fd172520032fba6a922b0c00e
MD5 7974ecddf2bc383c8028faf25804415f
BLAKE2b-256 136db939148bee30ca195d9553269540f681099ce90b654435d6edabef2e69fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f39182746cf71302bb4edcc3e95f9a521d848c62060bb3d07b21323ebddaa8ae
MD5 34541b08ec87c9aecb057ac71291cbe4
BLAKE2b-256 02920c260708c18a00963b73a3fe7cd36bac67cb419f38b0f31a6cc5f65306d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c984f9186ef2d8652ecd1ba774276bc4b8da00139ecc93b895aab5cc8326f412
MD5 a58617efb0606d4ec16bde63acae40ac
BLAKE2b-256 fde26308218a15b2c314b14bbb229504f1c6833060749c2f6444ef05944b475a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 626707bb3fc390f7d940ae0afa1d2df52a39e27bdd2d47aed3e5afb08fb611bb
MD5 4f45a8fea4b8eebdc4458022a6a677a0
BLAKE2b-256 476b81c4ba39b45784e2d47621718fa4b0ba26631c01ae90d6e473f6490de712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cb24f120fbced2a644d5168a2472e65a33c285c6e96da324ed971701f3ddd9f
MD5 e32c4715835f0d1b660644898cbffcbf
BLAKE2b-256 13b4e7163c72485f8bcf8b396128c743b52b025bad3137160a2de6d5f441e51c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 826dac205d9bba05263d878569808dbfd38a2fddd717d35ba02509ab92b93a5e
MD5 503a7a31727f7639087708d8409d452c
BLAKE2b-256 feebba25c8c96eb7e6d4979780d51b047a55fdbc6d0082becfea00fc3a684c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8beedc80accc4e8f27f4dd3280c8d75a46a374bde1d68878427708f7f07a090c
MD5 ddd47084f534147cb333240893894515
BLAKE2b-256 7f15318f0ea1951ebae84cf09c6f3b35eb04b8ca61bb92a51f4531ade0c4e67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52d84cbb9011d7c1d8129844e95ca18d965ce5a5c81855ef372bfa7f1aee6529
MD5 def9b7985e6a930d97fc352d4dbcadac
BLAKE2b-256 126de6f3382a850cfe69c8edbd3fddd69d6d2959ee3039ebc544a7493e832e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4239d290a31911a67494e8cb47d7e5643795ca2a9dc59d97e9dab140a4d91d10
MD5 9209e9ba9dad4f285ac7f18d2ab0fd1e
BLAKE2b-256 8ddb1594ad59c456f0fb732dca9900b26dc259c5781e0d6700bf5423da208f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c8c2497c5f85493503162708b6ebaa0383cb61c8afaf468a7cb96242633aa6d
MD5 3d494701018cf8b357dd6301f3af3af8
BLAKE2b-256 f98a176d3a66e1cc3320763db58158db7ea9467905787f4ec985095d624a5168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e67d970851be9d2cbdca2adb90fb3d90f23989078f1de1fb445c2274a2b4568e
MD5 44309a074be29344a1ed04b3c8536438
BLAKE2b-256 eda55375344f6c6f6616fe2c0bcdd24157b78f97656c5ae08259c0267fd04f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf67b5ca14e6373c22b3d72c0a4feb4f81ae8aa79631cfb3fe31f28ce8ae8a6e
MD5 217c75c03d4900f901bd1ba2efef1e37
BLAKE2b-256 4508000cf19306c3884b6b0d18ba717e975e4bbf8aa5d3b0a2546411ca735309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84d1dc64a90a4358c99ba7d7effeede3d8ea1b52092d9153bccc4f6cfbad1dfd
MD5 31689ed860af10cf58469f5bdf6fff9b
BLAKE2b-256 0c03dec204d9f52adb6942ae96c0511bc652d56d87358650955b7d99d94d4a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a826e4a297c351bb3dd7cf82dc1fd8e014d2c313d6e565e14bfa5110f090b34
MD5 586dc202f0814a6d9927e92b6b420d55
BLAKE2b-256 abc316838eb4aaaf806ca36af4dbcf6b9c02505bfb8bc0cf00695c55cc3ee231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 64ff261921391cbd135b1bc82f0bc31d0dc14aa06ce115a33825aba8b7bdfa30
MD5 bf466757e05c27142e9e1ab36f60e84a
BLAKE2b-256 b91c0e2da6d7bf2d07fa6da9f8a5ff83cac7ca29d94905be08403292bf909cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 edcbadc224ce0c4ebc38bb42dfa5909ee8a77eff6052008a65aa9fcb68c1d247
MD5 8786bfd5e3060bba32423c7fa8c0e2ab
BLAKE2b-256 0bf28a8581cd9b6ccce3339866e2e2cffe82f6657db658eeaf0bda6694693622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83d55fc513d542f553aacf3abcd882a4f302f54a86944b104bcfd5c1b3f0e8ec
MD5 84be14d8601ff858b4033299cea50c1f
BLAKE2b-256 504003e8d170d173009964ada290f69f6ed7c3ac32a75cd206abc5842267985b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11d05d9174d0a0b418af992cb103c91297903a109a4982536c3bc9d89b392f2e
MD5 b7d901c8710b42cd2340f899f6e50f03
BLAKE2b-256 43f7b72a86ba5a2b60ba2cf8ee55c7001e596a97d8c525332a30c446296ef3c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d0e7b365768c6be650135ff9f8cadc638011643b16ca82e5f1c6cd2e42e19ad
MD5 15478fe7cd217bc0a9ea81df5a2ecf7d
BLAKE2b-256 efce55f235ab69c2429566a2e1baa954b7190d25fe33a75b59a9038200856eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88c9b3bbd90796cb2c7eb953653961fc8207a4bf4c3a7969bd8c4df6aca91fc9
MD5 01b6b4055787200a9d3cf2d7f3e6121c
BLAKE2b-256 f5ec1c8734bbe1986f0e2277e386a6ac61bfc44e609c6de128302935b1a26881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de9bde38fb518524dfd45965feea2a8ab05fd635b91456b4dfacd4b16b39c6e7
MD5 437d2312a589478840c892adb798bae7
BLAKE2b-256 718bbab85a4d8530e9e5ec9dd5da120767e64fa465f1203bd941c546bf56abac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9c50da446785c7762945b2a210229371f53dd91989759657c1916648297df75
MD5 9db0221259fc269bf4ee89c5360534bc
BLAKE2b-256 3feb382355162ec65996308d5e9f8cf2aacbb67daadebefd288886ab603aa11b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8336fc4c0c566312df97cf2ff2588a12a4240fa3d460e099c30835f5d8fbb039
MD5 b169b329254ca917ff872343d177b262
BLAKE2b-256 48eea0982cbb1c979cc33f3839096373791eb162d929a62d876597defabb8ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eaa41bdd83970d5e293e9762e42391be91807534ac1ad310abc14c0b1707a3f
MD5 4be3dc488cfd20782f6433d28bc62df8
BLAKE2b-256 081467d5ff3889ef3d936a7aada5d6309bdaf2c45f611f159f035fcbac0e3a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 71e23bcdbbfd6c2ff534d166cac9cedcf770d5f433c9747f6039d6175d2e4dfd
MD5 acee177245d665538ec057fa850f7bc6
BLAKE2b-256 aee1dd671bfbe93528eb06e7373f92043e4a426b580ad96ade638748b4e3a2c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d6c9dd35afbef21983598a0d5ea1aaa1028efab19fcf8a87922b73807fd5f05
MD5 983682ce9e08893b7c774bf108a24492
BLAKE2b-256 e463a9ca951343014828d9253eb309b7e6de78f92dfb2ee81df51dddd1268e4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d66c5f4802512282e41a3bf1253f851abe44eabf414f686bee2153e9f73f7c96
MD5 e1e51a4594dab76da5bc7b16255c5833
BLAKE2b-256 f8e74b04e4b02793797bd070811e6bfcd0c3d6100695d73303dc66ef7b56aae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec6e57f553e267c8101d0707a10479a17638a2b629a353f37a33b3468264176b
MD5 07eb7778c3f1645d4a721c7fbc91786e
BLAKE2b-256 4cf889477c19d709fa9cdff0b87efa48990cfa7b941ca565d9ff8c0b938df3e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7930552a898d50a10115d52efb7cfe2211b44821f6aeddb9c388ad74cd490db9
MD5 0656866dd5d45dbc65b6245d24ecbacf
BLAKE2b-256 9c8c946de3b6eed1d3deb2bb146d84c792f6bde5df59de6418069d91f7b911a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b57a6a85bc0f984abc25aa14d9a960d1ad16e0bb1121727c3d8c29e0ef287dc
MD5 982816c73d5e804b16b536935ec404c3
BLAKE2b-256 eaf0d59eceac0f49edf7903ca0188b544f058b1106bf5b5d4c1ec55c734b2bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a60fd1ef4217a2f65342c46f78b5c2add1fd3a937f5684c4337ac40685092db
MD5 1578c5329121399225b70a26cbafd159
BLAKE2b-256 5c4455669af9d2cbc8864441de9bba9a07258176ac60f97b061bf95c8339f2d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d2b1de3fc113b44b939f45e367c0aa3564982055bcae655fba30e8ffa1b6410
MD5 78e3bccbe4162f4959c35bc25414fb40
BLAKE2b-256 5b17be7f5c713e4747e81d23da59a4a66b9e17bdf049c41d2ab826845f4ba04e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52ca54b022bc76364c13ddfca3bc9fe8bed111468c86c674aa561542ee37455f
MD5 48782298b2a298ad4c06c6cde4e307ed
BLAKE2b-256 f320fdefce50bf057c0d3fc4349521c23cd52341f4a6e59a4452a79fd4e62d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adabdbcf94a7f2f7b54b0e998ba3753b48f52411a110a1b7d2d812add58f999a
MD5 954d9ffa5f17ee72354fd7cb50688a25
BLAKE2b-256 2687d1257df52a60db350d53c8ae0637b7de4c5d4d2318093d5a3bb8f71fbb9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08a1f0ecee079453fb5d6a6c562c1230629ce2fe10607799ad39ac9b6f720959
MD5 215f989bb0f0dddc32f69d58e38e89e2
BLAKE2b-256 57fea062dcce280f57c3a0659804d8b1053e3f22c522bce1d7964aa2e3cab72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da78f4a59cc26f562cb53cf7bc7e0e169f59c00aaa244da40e9a24aeabf128e1
MD5 5a86795587727a30192d39c30206f392
BLAKE2b-256 4e3149918961bc7c75b465849283e66d42e9873cf720b40fbfdec5077556fc78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7991ef86fd926efde969e39de7c88ca90617d0b8f986274423705cd8da3d34ac
MD5 9ca0fe65f41ced93f62a16ff4db0708d
BLAKE2b-256 5bfa9b7a87ddb9c4fe663bb12c750a008699f46549a7d2dbcc9e39a49fc7a23b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a88f6176a5dcdd39e2bf1cd4eb2d310e22f5d66c9d825bfe8782994d52267b5e
MD5 21ea7561f6c559ad27f648a6189bf900
BLAKE2b-256 c4885fc21507267dd4716e0db7414254a852c2ea0db0b848ea97166ba68170cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04298cba1ae45b0b7811039854427548d40c2493600f18d25e32a3819d6b819b
MD5 b1c4c2dacc6ce0b09211fcd886d7a401
BLAKE2b-256 56b05573a50d320eb23fac924f609df5cb182c2c69940211ef6a70c61caf1b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 739175ae4afdaaea2311d80d3acc4863abd2a98855efc90f9ea473ea58e3b75d
MD5 b77cfdf65fc30523956dba70aea88c3a
BLAKE2b-256 7660341100ce086b12f385252c37cb1489125a16866a3d7bab255404d6f637d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 144a09f710086f06f84b9d51345ae9bf298645636387ff7d37dc437be744d8ae
MD5 0222e893f7634548b4d8b1f8654033ce
BLAKE2b-256 ab4f218d7c47a27ca7796f8dfbbc494191d5283adafdb0fa601f5d851feb60cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe3a794dc61b675a6639330ca43fc5b5648dcab8a33934e6f6e58675c58b7957
MD5 7b27532fd134a86f183597a1693d7e50
BLAKE2b-256 a3b5414cfa091ffdc51c2cdfcb5e74b160979f145d3eb741f7bf7bdb4b5a76d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bea380294297b2d6125d64db961322818db36790228d3a3ce49852f7410f5e69
MD5 f1785834fd2c6860ae37e171657748a0
BLAKE2b-256 615ae8a87da120afa2cb6f499004b376038ed0efb0ec433b0f80705c9ecb24ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bc65fb3ee7f04703b987fe571fc94e191c9ba7afbb8aa5851800f93d4598458
MD5 87d884c1414d49260b390a603ccd4a51
BLAKE2b-256 10b3c54e32d4475a07370eefc81e3db2204fdf4635db443b8331eb0afb219ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df5c50a730f600bd4a64ee10398e160a44f9497e96b17bd3d7d93f9d1018377a
MD5 4441a2843e4fb8f2a8d8b583fedf0377
BLAKE2b-256 b8d8332729e17a19fc1be44c69790f6e7b9f5476ff2563af9554056931a9fd0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77c56555f5fbb990966921bec763e89b4d0e4347b43af5d7a0afe01038b47a57
MD5 c97a6cb36862aa1e0e4090a1973d877b
BLAKE2b-256 567012c78170101cf3128ab44ed223b613784d2d83658f86c5291a5ddc5819c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60d61e354e8b62d8230f93f2318553779d7b992b31c7725aea2d8ca9213c4709
MD5 b3cbe5587d4d8150946227de43f40170
BLAKE2b-256 ab39c8405d304bb7e1d498bdcb2381eadd5cb9bed0b3333d3f28295836857e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31e54fc59a8230b2039ea93d0859b042904ac0ea444c5761544293b46ee664bd
MD5 a6d9db019bda0c9f4ae7278f5f68ea8d
BLAKE2b-256 5a211ca67a9fa763840a7ddb8595283f3d4615174b7c4e12810931b7f305ff4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 04cca786b6be7e03c72932b12dcc22f82484044e72703234e209a2b2be8f1169
MD5 bf8cf3d647403f5fbf0a34d54db21a0e
BLAKE2b-256 9d51c69f0b89522855ad1e44947a9cb5ccfee9a0566982a08a02a73877baafbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e5f0885ac33bb8fea1e7b8b3f734a3b355fad1fb9afe1b1c795fee19cd5486d
MD5 8c1bbb96fb9077b1e80fc7ab1a6dfd6b
BLAKE2b-256 d526b5f14941fff95726d5b49003b285ce43741451bfb2069c325e61fd68b17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60b98a9e26071e68bb6580f43fb1b8ea1eefdefe13934ded1cd50dd2d171564d
MD5 bef65a9da333b642a7a156b062d99401
BLAKE2b-256 c982f78fca43331e3c197b9fd34652d78f46df3fddc9ecf3d046fa016764dbca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db7672f99f94880d91b0e2ad7cd0c4f2f28c69d0cd4253ae598d170a32f2478d
MD5 c7a98093c39aad5e1eb1f9610e4d43b2
BLAKE2b-256 ab9d383c8bb2405636cad6d041715cce501742666e22d4ac80887d0e2e74d6bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2460e11ba12f68ec26c153f7a38a8f3dadf0b6a9e900262e8761b6a4b65f396c
MD5 c48593f566446966b7d34d125a3f4646
BLAKE2b-256 8d2e07c424624e5d4cdd48985c7dfd3b71bd23ccd4a1dbeeb1984eddd151fdbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d02c7de57890593240b5bdae3234c17d63deec209e05de3f45b656959c67b391
MD5 198a80d98846246d302c61340d85ac24
BLAKE2b-256 0a71368914738243f65ed581edb3c7f4220c412edd1a30b873f8a92ec94d788f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c21d6f51b43b17d1239fcefdb4347b2a75be1c1b6aa77dc41720381ed8cbf74
MD5 d426e4e7694f24722c98372b0c59bb5e
BLAKE2b-256 0024bd7d07fe5a4ec6216e86054bd267c671680079e3272a04640bf0fe80cd96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8df74e2aaf340e70f4e46c27612573f30f3c66afd5a2c9bc2f6828c586e45c62
MD5 fa7c10a66c6ebdf119e1c08b63512fde
BLAKE2b-256 b3ae29f6928f26abf20aa23a08cf4d4e89731573be7778e96ea3e605938c6576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b31bf53b04f94ce1ad5f8942656db998200a9e8520771d4af05373beacda01a2
MD5 2006101fd472aee1ca01aa6c7a663980
BLAKE2b-256 0323e1740690bfa8d6d1ca3d307832abedb98d77c0ae8e62aa2cd4a066a62985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c465003b3dd2c346e95f04278dde2e805296aea8adaa74ab3e872f6ac4119a76
MD5 98770d68d80622f09276f5b128f76e83
BLAKE2b-256 0aefa6f4762ff8009da54a65807d5edc994ab76ad301738c6a5e5b63af702410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0d8e72e13d9d20c4b24325de13162208f67ceac975ba1a8077a7fac14f3f667
MD5 a0149d66dfb051c4ea2fbbb9bcb2763d
BLAKE2b-256 884d88883bcef02128337ec5d483405e395d7419e78ff230a074bcdf38e95043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56726c7f31c522828efe7c04875d414e2724b9eb22a7e44dda5140175a2afded
MD5 aeab0afffb48df848c18d5f5248f5ea8
BLAKE2b-256 c1409effd1af2769a8e6dea6d3d4667d8a72918551e4b05118a6c6a663d23b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ad8e45563f12ef2c854eb530e180e01c65b62cb4c5d1eb9672dbcf7743681619
MD5 438f7a15c7a225d4484854dc4d5072ef
BLAKE2b-256 6dd37f49a90b613eb78a0356f6b357f8efdc56936c6ba9877cfca0d291445922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e81d65b63b62422055bfebcc2e6a5e229c20148ebd46a46fae3542a5526f6cc7
MD5 affe51900762799a12da19960bb08380
BLAKE2b-256 0ceb4a9990ba54ad586c56db5dd693d9437a19d4de9beda225adfbcea4ad7b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 858f34cd682d35a4a40589ec662554d4bfdc5ca1de91dc083c73fc453c86910d
MD5 72a37a9c00d311795d5e158d7c5bf06d
BLAKE2b-256 6f805d0572589fdee6bf37dd4bb0a46d5eb394610d619bb00647d2227321a3c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3d14c26d5e763feeaa30f5464c74108df35b0116bf53f0ce2014e0545cd356cd
MD5 62d4308335ff7ee8dd63ded1f0419037
BLAKE2b-256 79574ea7bd96b30d787aa2cab9f05b263c73f85697f2c865004a6f5d327e5d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 443ec77cdd9222a549d85a154660bb1e4f14c0fe006f987e7910e02f2a06304a
MD5 a1289afc3f5a6c6bf83226bec055885b
BLAKE2b-256 070ab744df1cf0484db7d1135186dd6da43c74e73552e33e37a6ee20096d0a99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ed8b6dbee9da7b2ca7e0144d3987ef340d9f2da2becd8d15d63e17791d5b1a2
MD5 0a009c24cd45e8801c23cda4558ec283
BLAKE2b-256 8bfda4f7d4be5fe3dbc4d7c4aa0185794333efcf8e6465628e2d877674c6ac71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ebb9c3ee15c004b306364c724ffb82d14f7c9499c661e7138eef91a3b2eac38
MD5 2a469d3eb0da32f5d51460610a49f592
BLAKE2b-256 a1d6591041a4df03674923440685f0656fe3d403bf4d3e3e6d8f65027dd3e810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1beb2d2fc97252e10e1202bc25c68c226343db744b3eb0750c973d8520a02917
MD5 71d194e6aab801d56925aefe38c7711a
BLAKE2b-256 7a20449990cb1a45b625d6833f59e1a5ce051ed865121b4351d7de9b6ade06f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05aa6213c2ccc8371d271f986e69b4b86cd94c1e61b73b9ed50b612929285b39
MD5 9f3e717e4d9a806819907741d35cd949
BLAKE2b-256 8e220546b21461742df45bc837d8c7565d94eb70a39b0a5fa14607648792ccab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 455e288ef494a1fc5db11445a86e4caa02a694454429be32a85ddfb3240915a4
MD5 9dd52c5d35d930549bca0335e7735452
BLAKE2b-256 7401f46539878ad55ff47e6865036193b83ed5d3311a4aaa21f815941ffdd0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95283d4cf97c07e97b6429ad28110eaccd0fb06e38749190c5dbf258bfc6a2dc
MD5 54bd0548bf981a74b5aa59e3cc4e1922
BLAKE2b-256 3f67e7f0a0966e67d3ae147df7fbf0ee6550790111fb951f27b1b3b12829176c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b8acc5422f94cad2131a501405410e01a851cf5a9f65d9c7c9265103e9f61eb
MD5 d0c55bc5f2d15aa18042a356c4c9dcd0
BLAKE2b-256 b819f5526e3a6a148e069714b9dfd07920aab686c923072e19cdfd9dbce6447a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8a85d470fe0ed54ccd07a99afc70cebd0fd468e52673a0469f14286ed1475135
MD5 6d2f96463ac57c9ed45dce76e5953e30
BLAKE2b-256 c8f3ed454feb86983a5a9c873f4f5e1e75538f3eab03cf7a80218282d0df70c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 606b4bc63c1445b71708fb272510576c6ac677e35f3589073e106a6fc8c68599
MD5 1e643bc0cd52c578063b2793d728fb1f
BLAKE2b-256 7f61f2377627523e65279ee8f1e489b726afd66cccedd0f4b489596d1efb1996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f81f4b491a46b4e5c94841887b2e75216fb6fc6fe424d33b131ab9b664575210
MD5 4ab025a5877a1bd939591ab101679b7e
BLAKE2b-256 37198a47e38969764ddc323fe1302ddbb0bed7811bd46409d52d454373971d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b45a4bce934f04d84d5d93678ed87ded752e7d2c97aa71a7e9769cfa51995a94
MD5 96be3543d9558396b3e4570d1bb9e399
BLAKE2b-256 a24f2e05b52c4c960eaba5c3436126fc4ebf4e735f5021f882a61b01af56965e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad6bbea56f78d38e9c00d22985eb1ac0b38e1363649d78bafc1ec7fd7876bf69
MD5 c6d2f6df4863be6d6417e757b55e14c0
BLAKE2b-256 7ceb3e4d85567a8416429bc2e7c7e959d438130b7f051a3e722e0c37e21d8479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5155d397fefd4d1eb474e5cc2f9f2a0837489ae97f762b5e79373f6893496a54
MD5 5ace47d656adee4a9be3e72254e827c9
BLAKE2b-256 bd476f44e58b95d25427a871168d641474730cdc486c769056eaedd4a10bbd1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b51900e4dd36851a757fd5e68e09e3e0da5dbc4c25ecf4475063111e68d12e4
MD5 bf17190a37d293a09af195096bbba334
BLAKE2b-256 c5a88949e7fdd065f66ca5a6668ccd37d1ba7b46b326b541f0f10100c4495aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a910fb23ddc9105202acc8ac2847d9c1a8b275ae453b9400caf91b88623eb4fb
MD5 e25c6b4212919bdc1a7afada8c2cdc4a
BLAKE2b-256 2bdc2c3517e4c5e041e197cd8a7351cbfba3a6aa257511d87afa0a290d56fcae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeb49c6ac05fd3885462c46f1e0330b843d05c9f587a419d259f21baafdb073b
MD5 23b8aa2c4e66e05eba4c52f28f9c074f
BLAKE2b-256 72c76d8a5bfc14711a4b2790a1b105ad00e0bfdafd740621145475c3177ee22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for json_tools_rs-0.9.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aa2773bf85487616e6bcec669fb88e7f837f0d8c67f101a18e5e82dda1cfdee8
MD5 16f33d1ba52d622c38dde7f577ba983d
BLAKE2b-256 6ca8f0b2563195c52ad449c3985e84923a95d9bdfdfd91cfe473986f07450a26

See more details on using hashes here.

Release history Release notifications | RSS feed

0.9.30

90 files

0.9.29

90 files

0.9.28

90 files

0.9.27

90 files

0.9.26

90 files

0.9.25

90 files

0.9.24

90 files

0.9.23

90 files

0.9.22

90 files

0.9.21

90 files

0.9.20

90 files

0.9.19

90 files

0.9.18

90 files

0.9.17

90 files

0.9.16

90 files

0.9.15

90 files

0.9.14

90 files

0.9.13

90 files

0.9.12

90 files

0.9.11

90 files

0.9.10

90 files

0.9.8

90 files

This release

0.9.7 This release

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