Metadata-Version: 2.1
Name: json-lisfy
Version: 0.1.0
Summary: 
License: Apache-2.0
Author: Naoya Yamashita
Author-email: conao3@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: more-itertools (>=9.1.0,<10.0.0)
Requires-Dist: pydantic (>=1.10.9,<2.0.0)
Description-Content-Type: text/markdown

# python-json-lisfy

## Usage

```bash
$ poetry install
$ poetry run json-lisfy
```

## Example

```bash
$ poetry run json-lisfy
json-lisfy> 1
(int nil 1)

json-lisfy> 2.4
(float nil 2.4)

json-lisfy> false
(symbol nil "false")

json-lisfy> {"a": 1, "b": 2}
(object nil (item nil (str nil "a") (int nil 1)) (item nil (str nil "b") (int nil 2)))

json-lisfy> [ 1, 2, "asdf",    true ]
(array nil (int nil 1) (int nil 2) (str nil "asdf") (symbol nil "true"))
```

