Metadata-Version: 2.4
Name: qjph
Version: 0.0.4
Summary: Quick Json Parser Hack
Author-email: kagekirin <kagekirin@gmail.com>
Maintainer-email: kagekirin <kagekirin@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/KageKirin/py-qjph
Project-URL: Documentation, https://github.com/KageKirin/py-qjph
Project-URL: Repository, https://github.com/KageKirin/py-qjph.git
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: File Formats :: JSON
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=9.0; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Dynamic: license-file

# QJPH -- Quick Json Parser Hack

**Quick Json Parser Hack** is, as the name indicates
a quick hack to have Python parse JSON as Python.

CAVEAT: This lib relies on `eval()` with a few specific globals
to parse JSON. As such, it might not be safe against code injection attacks.

## ⚡ Usage

```python
import qjph

from_file = qjph.load("file.json")

from_string = qjph.loads("""
{
    "json": {
        "data": "value"
    }
}
""")
```

## 🔧 Building

```shell
uv build
```

## 🤝 Collaborate with My Project

Please refer to the [collaboration guidelines](./COLLABORATION.md) for details.
