Skip to main content

No project description provided

Project description

jiter-pupy: Pure Python jiter Implementation

A drop-in replacement for the jiter package that is API-compatible with the original Rust-based implementation, but uses only Python's standard library json module.

Features

  • 100% API compatible with the Rust-based jiter package
  • Pure Python implementation using only the standard library
  • No compilation required - works anywhere Python runs
  • Supports all jiter features:
    • String caching for performance
    • Partial JSON parsing
    • Different float modes (float, decimal, lossless-float)
    • Special value handling (Infinity, NaN)
    • Duplicate key detection

Installation

pip install jiter-pupy

Usage

import jiter_pupy as jiter

# Parse JSON data
data = jiter.from_json(b'{"name": "John", "age": 30}')
print(data)  # {'name': 'John', 'age': 30}

# Use different float modes
from decimal import Decimal
data = jiter.from_json(b'{"value": 123.456}', float_mode="decimal")
print(isinstance(data["value"], Decimal))  # True

# Handle partial JSON
incomplete = b'{"name": "John", "address": {"city": "New Yor'
data = jiter.from_json(incomplete, partial_mode=True)
print(data)  # {'name': 'John'}

# Include trailing strings
data = jiter.from_json(incomplete, partial_mode="trailing-strings")
print(data)  # {'name': 'John', 'address': {'city': 'New Yor'}}

# Catch duplicate keys
try:
    jiter.from_json(b'{"foo": 1, "foo": 2}', catch_duplicate_keys=True)
except ValueError as e:
    print(e)  # Detected duplicate key "foo" at line 1 column 18

# String caching
jiter.cache_clear()
jiter.from_json(b'{"foo": "bar"}')
print(jiter.cache_usage() > 0)  # True

API

def from_json(
    json_data: bytes,
    /,
    *,
    allow_inf_nan: bool = True,
    cache_mode: Literal[True, False, "all", "keys", "none"] = "all",
    partial_mode: Literal[True, False, "off", "on", "trailing-strings"] = False,
    catch_duplicate_keys: bool = False,
    float_mode: Literal["float", "decimal", "lossless-float"] = "float",
) -> Any:
    """Parse input bytes into a JSON object."""

def cache_clear() -> None:
    """Reset the string cache."""

def cache_usage() -> int:
    """Get the size of the string cache in bytes."""

class LosslessFloat:
    """Represents a float from JSON, preserving the exact string representation."""

Performance

While this implementation prioritizes API compatibility over raw performance, it still offers benefits:

  • String caching can improve performance in scenarios with repeated strings
  • No compilation required, works anywhere Python runs
  • Useful as a fallback when the compiled jiter package isn't available

Development

This project uses Hatch for development workflow management.

Setup Development Environment

# Install hatch if you haven't already
pip install hatch

# Create and activate development environment
hatch shell

# Run tests
hatch run test

# Run tests with coverage
hatch run test-cov

# Run benchmarks
hatch run bench

# Run linting
hatch run lint

# Format code
hatch run fix

License

MIT License

Project details


Download files

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

Source Distribution

jiter_pupy-0.8.5.tar.gz (97.4 kB view details)

Uploaded Source

Built Distribution

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

jiter_pupy-0.8.5-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file jiter_pupy-0.8.5.tar.gz.

File metadata

  • Download URL: jiter_pupy-0.8.5.tar.gz
  • Upload date:
  • Size: 97.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.4

File hashes

Hashes for jiter_pupy-0.8.5.tar.gz
Algorithm Hash digest
SHA256 b3ff01e69d512120d71f9fe08b3adb89e8af5e6b0bce6a8bc8ab87ae8b72490e
MD5 7a1d2dc23b8989c389436b874d0b5e5f
BLAKE2b-256 31f5558310da9315cc56846282284203034e97c6bde570eb9275f7ac1635337f

See more details on using hashes here.

File details

Details for the file jiter_pupy-0.8.5-py3-none-any.whl.

File metadata

File hashes

Hashes for jiter_pupy-0.8.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8e3ebe106f45e8bb5b5c192f03bb8f01b4001f3b1837058f43452ccb2f2f0f06
MD5 80dddb60e61b0b013d4efc050ea5b5de
BLAKE2b-256 96d483f699efc1febcf5115656280d3ec6c858f410674584b117675f6c88c169

See more details on using hashes here.

Supported by

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