pyjson5 icon indicating copy to clipboard operation
pyjson5 copied to clipboard

A Python implementation of the JSON5 data format

Results 13 pyjson5 issues
Sort by recently updated
recently updated
newest added

![Image](https://github.com/user-attachments/assets/033e0be7-a817-46ad-b3dc-17ea331132f7) 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,...