jiter

0.13.0 · active · verified Sat Mar 28

jiter is a fast iterable JSON parser for Python, currently at version 0.13.0, released on February 2, 2026. It is actively maintained with a release cadence of approximately every 2-3 months.

Warnings

Install

Imports

Quickstart

A simple example demonstrating how to parse JSON data using jiter.

import os
from jiter import from_json

json_data = b'{"name": "John", "age": 30}'
parsed_data = from_json(json_data)
print(parsed_data)  # Output: {'name': 'John', 'age': 30}

view raw JSON →