mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 17:23:25 +01:00
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'
|
|
]
|