forked from extern/httpie-cli
21 lines
497 B
Python
21 lines
497 B
Python
"""
|
|
A library for parsing the HTTPie nested JSON key syntax and constructing the resulting objects.
|
|
|
|
<https://httpie.io/docs/cli/nested-json>
|
|
|
|
It has no dependencies.
|
|
|
|
"""
|
|
from .interpret import interpret_nested_json, unwrap_top_level_list_if_needed
|
|
from .errors import NestedJSONSyntaxError
|
|
from .tokens import EMPTY_STRING, NestedJSONArray
|
|
|
|
|
|
__all__ = [
|
|
'interpret_nested_json',
|
|
'unwrap_top_level_list_if_needed',
|
|
'EMPTY_STRING',
|
|
'NestedJSONArray',
|
|
'NestedJSONSyntaxError'
|
|
]
|