Metadata-Version: 2.1
Name: json5rw
Version: 0.2.2
Summary: A tool for JSON5 I/O
Author: Andy Zhang
Author-email: andy@nwsoft.tk
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# `json5rw` - A JSON5 parsing tool

This tool supports loading and dumping JSON 5 content

## Supported syntax

Currently, the following are supported:

- Comments
    - `//`
    - `/**/`
- Different numerals
    - Hex (`0xABC`)
    - Int (`100`)
    - Float (`12.34`)
    - NaN (`NaN`, `nan`)
    - Infinity (`Infinity`, `-Infinity`)
- Trailing commas

*Note: Unquoted keys are not supported*
