-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d89c3a8
commit 1fbedbf
Showing
7 changed files
with
107 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,52 @@ | ||
# jiter | ||
|
||
[![CI](https://github.com/pydantic/jiter/workflows/CI/badge.svg?event=push)](https://github.com/pydantic/jiter/actions?query=event%3Apush+branch%3Amain+workflow%3ACI) | ||
[![pypi](https://img.shields.io/pypi/v/jiter.svg)](https://pypi.python.org/pypi/jiter) | ||
[![versions](https://img.shields.io/pypi/pyversions/jiter.svg)](https://github.com/pydantic/jiter) | ||
[![license](https://img.shields.io/github/license/pydantic/jiter.svg)](https://github.com/pydantic/jiter/blob/main/LICENSE) | ||
|
||
This is a standalone version of the JSON parser used in `pydantic-core`. The recommendation is to only use this package directly if you do not use `pydantic`. | ||
|
||
The API is extremely minimal: | ||
|
||
```python | ||
def from_json( | ||
data: bytes, | ||
json_data: bytes, | ||
/, | ||
*, | ||
allow_inf_nan: bool = True, | ||
cache_strings: Literal[True, False, 'all', 'keys', 'none'] = True, | ||
cache_strings: Literal[True, False, "all", "keys", "none"] = True, | ||
allow_partial: bool = False, | ||
catch_duplicate_keys: bool = False, | ||
) -> Any: | ||
""" | ||
Parse input bytes into a JSON string. | ||
allow_inf_nan: if True, to allow Infinity and NaN as values in the JSON | ||
cache_strings: cache Python strings to improve performance at the cost of some memory usage | ||
- True / 'all' - cache all strings | ||
- 'keys' - cache only object keys | ||
- 'none' - cache nothing | ||
allow_partial: if True, return parsed content when reaching EOF without closing objects and arrays | ||
catch_duplicate_keys: if True, raise an exception if objects contain the same key multiple times | ||
Parse input bytes into a JSON object. | ||
Arguments: | ||
json_data: The JSON data to parse | ||
allow_inf_nan: Whether to allow infinity (`Infinity` an `-Infinity`) and `NaN` values to float fields. | ||
Defaults to True. | ||
cache_strings: cache Python strings to improve performance at the cost of some memory usage | ||
- True / 'all' - cache all strings | ||
- 'keys' - cache only object keys | ||
- False / 'none' - cache nothing | ||
allow_partial: if True, return parsed content when reaching EOF without closing objects and arrays | ||
catch_duplicate_keys: if True, raise an exception if objects contain the same key multiple times | ||
Returns: | ||
Python object built from the JSON input. | ||
""" | ||
... | ||
|
||
def cache_clear() -> None: | ||
"""Clear the string cache""" | ||
... | ||
""" | ||
Reset the string cache. | ||
""" | ||
|
||
def cache_usage() -> int: | ||
"""Get number of strings in the cache""" | ||
... | ||
""" | ||
get the size of the string cache. | ||
Returns: | ||
Size of the string cache in bytes. | ||
""" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,41 @@ | ||
from typing import Any, Literal | ||
|
||
def from_json( | ||
data: bytes, | ||
json_data: bytes, | ||
/, | ||
*, | ||
allow_inf_nan: bool = True, | ||
cache_strings: Literal[True, False, "all", "keys", "none"] = True, | ||
allow_partial: bool = False, | ||
catch_duplicate_keys: bool = False, | ||
) -> Any: ... | ||
def cache_clear() -> None: ... | ||
def cache_usage() -> int: ... | ||
) -> Any: | ||
""" | ||
Parse input bytes into a JSON object. | ||
Arguments: | ||
json_data: The JSON data to parse | ||
allow_inf_nan: Whether to allow infinity (`Infinity` an `-Infinity`) and `NaN` values to float fields. | ||
Defaults to True. | ||
cache_strings: cache Python strings to improve performance at the cost of some memory usage | ||
- True / 'all' - cache all strings | ||
- 'keys' - cache only object keys | ||
- False / 'none' - cache nothing | ||
allow_partial: if True, return parsed content when reaching EOF without closing objects and arrays | ||
catch_duplicate_keys: if True, raise an exception if objects contain the same key multiple times | ||
Returns: | ||
Python object built from the JSON input. | ||
""" | ||
|
||
def cache_clear() -> None: | ||
""" | ||
Reset the string cache. | ||
""" | ||
|
||
def cache_usage() -> int: | ||
""" | ||
get the size of the string cache. | ||
Returns: | ||
Size of the string cache in bytes. | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,35 @@ build-backend = "maturin" | |
|
||
[project] | ||
name = "jiter" | ||
description = "Fast iterable JSON parser." | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{name = "Samuel Colvin", email = "[email protected]"} | ||
] | ||
dynamic = [ | ||
"description", | ||
"license", | ||
"readme", | ||
"version" | ||
license = "MIT" | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: Unix", | ||
"Operating System :: POSIX :: Linux", | ||
"Environment :: Console", | ||
"Environment :: MacOS X", | ||
"Topic :: File Formats :: JSON", | ||
"Framework :: Pydantic :: 2", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.maturin] | ||
module-name = "jiter" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pytest | ||
pytest-pretty | ||
dirty_equals |