pyjson5
pyjson5 copied to clipboard
A Python implementation of the JSON5 data format
 In termux, it seems like it isn't building pyjson5 because python might be missing some important stuff for pyjson5 to work.
I'm getting a typing error (with pyright) in python 3.13 with this: ```python with open(path, 'r', encoding='utf-8') as f: config_data = json5.load(f) ``` The error is ``` config.py:752:27 - error:...
In dumps, the **kw at the end causes an unknown type error: ```text Type of "dumps" is partially unknown Type of "dumps" is "(obj: Any, *, skipkeys: bool = False,...