https://github.com/martinrenou/xjson
Simple Python JSON library, based on pybind11_json
https://github.com/martinrenou/xjson
json nlohmann-json pybind11 python
Last synced: about 1 month ago
JSON representation
Simple Python JSON library, based on pybind11_json
- Host: GitHub
- URL: https://github.com/martinrenou/xjson
- Owner: martinRenou
- License: bsd-3-clause
- Created: 2021-09-29T13:06:13.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-30T06:58:49.000Z (over 3 years ago)
- Last Synced: 2025-02-14T14:19:38.031Z (3 months ago)
- Topics: json, nlohmann-json, pybind11, python
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xjson
The simplest JSON library for Python. Performances are decent.
It exposes two functions:
```python
from xjson import dumps, loads# Dump JSON-like object to string
dumps({"Hello": "World"})# Load JSON string into Python object
loads('[1, 2, 3]')
```