An open API service indexing awesome lists of open source software.

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

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]')
```