A library to parse and repair malformed JSON-like text.
Project description
JSONRescue
Overview
JSONRescue is a robust Python library designed to parse and repair malformed JSON-like text, specifically targeting common errors found in AI model responses that fail to return valid JSON. The library employs heuristics to identify, fix, and validate JSON structures against a provided schema, ensuring data consistency and correctness.
Features
- Bracket Matching and Extraction: Uses advanced regex patterns to identify JSON-like structures within a text, even when nested.
- Schema Validation: Ensures the parsed JSON adheres to a defined schema using a customizable
Schemaclass. - Error Recovery: Attempts to fix common JSON errors, including:
- Missing or unquoted keys.
- Unquoted or improperly formatted string values.
- Missing or extra brackets.
- Escaping illegal characters.
- Customizable Fixes: Implements modular methods for fixing specific JSON issues.
Installation
pip install regex
Usage
Example
from jsonrescue.custom_schema import Schema
from jsonrescue.parser import JSONRescue
# Define a schema for validation
schema = Schema(
type='object',
properties={
'name': Schema(type='string'),
'age': Schema(type='number'),
'emails': Schema(type='array', items=Schema(type='string'))
},
required=['name', 'age']
)
parser = JSONRescue(schema)
malformed_json = """
{
name: John Doe,
age: 30,
emails: ['john@example.com']
}
"""
parsed_data = parser.rescue(malformed_json)
if parsed_data:
print("Valid JSON:", parsed_data)
else:
print("Failed to parse JSON")
Examples of Errors Handled
-
Missing Quotes Around Keys or Values:
- Input:
{name: John Doe, age: 22} - Output:
{"name": "John Doe", "age": 22}
- Input:
-
Escaped Illegal Characters:
- Input:
{ "name": "John \"Doe\"", "age": 30} - Output:
{ "name": "John \"Doe\"", "age": 30}
- Input:
-
Fixing Missing Brackets:
- Input:
{"name": "Jane" - Output:
{ "name": "Jane" }
- Input:
-
Handling Multiple Objects in Text:
- Input:
Here is {"name": "Dana", "age": 27}{"name": "Chris", "age": 35} - Output:
{"name": "Dana", "age": 27}(First valid object parsed)
- Input:
-
Unquoted String Values:
- Input:
{"key": Value, "number": 123} - Output:
{"key": "Value", "number": 123}
- Input:
Key Components
Class: JSONRescue
Initialization
JSONRescue(schema: Schema)
- schema: An instance of the
Schemaclass defining the expected JSON structure.
Methods
-
rescue(text: str) -> Any- Attempts to parse the input text as JSON.
- Validates against the provided schema.
-
extract_json_candidates(text: str) -> List[str]- Extracts potential JSON substrings from the input text using a bracket-matching regex.
-
fix_json(json_str: str) -> str- Applies a sequence of fixes to a JSON string.
-
fix_keys(json_str: str) -> str- Quotes unquoted object keys.
-
fix_string_values(json_str: str) -> str- Quotes unquoted string values.
-
escape_illegal_characters(json_str: str) -> str- Escapes problematic characters like newlines, tabs, and unescaped quotes.
-
ensure_ending_brackets(json_str: str) -> str- Fixes mismatched or missing brackets.
Advanced Configuration
The library allows customization and extension by overriding its methods for specific JSON-repair scenarios. For example, you can add custom regex patterns or post-processing logic as needed.
Limitations
- The parser assumes input text contains at least one valid JSON-like structure. Extremely malformed input may result in parsing failures.
- It relies on heuristics to fix errors, which may not always produce the intended results.
Testing
The project includes a suite of unit tests to validate its functionality. To run the tests:
python -m unittest test.py
Example Test Cases
-
Proper JSON:
input_text = '{"name": "John Doe", "age": 30, "emails": ["john@example.com"]}' expected = {"name": "John Doe", "age": 30, "emails": ["john@example.com"]}
-
Missing Required Field:
input_text = '{"name": "Test", "emails": ["test@example.com"]}' assert parser_with_schema.rescue(input_text) is None
-
Incomplete Brackets:
input_text = 'Start {"name": "Bob", "age": 35, "emails": ["bob@example.com"' expected = {"name": "Bob", "age": 35, "emails": ["bob@example.com"]}
Contributing
Contributions are welcome! Please fork the repository and submit a pull request with your changes.
License
This project is licensed under the 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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jsonrescue-0.1.2.tar.gz.
File metadata
- Download URL: jsonrescue-0.1.2.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5059cd325560c5094225495908c449250153d9c4e781b0eed5b347d2a4f511d
|
|
| MD5 |
a3e8716639101d98ede4b1917983bf91
|
|
| BLAKE2b-256 |
f88683b57eda3619fed352067c9006a4d817601674c334a3f11c7141cff9367d
|
File details
Details for the file jsonrescue-0.1.2-py3-none-any.whl.
File metadata
- Download URL: jsonrescue-0.1.2-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67e2a72568827bd1656a5445cd9ed07cbe17110c946beb1e7068776ebaa12273
|
|
| MD5 |
7890594bf8d5c24c15aa371407aab5ac
|
|
| BLAKE2b-256 |
b6eb3523f852c01488226d6693a628945e7ab4f28aef7a64a42676de58639185
|