From 430368d79040e645ce1b9759f395595294c579da Mon Sep 17 00:00:00 2001 From: martinRenou Date: Mon, 4 Nov 2024 15:26:23 +0100 Subject: [PATCH] Mention nanobind's solution --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b081e2e..9e85d79 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,12 @@ ![Tests](https://github.com/pybind/pybind11_json/workflows/Tests/badge.svg) # pybind11_json + `pybind11_json` is an `nlohmann::json` to `pybind11` bridge, it allows you to automatically convert `nlohmann::json` to `py::object` and the other way around. Simply include the header, and the automatic conversion will be enabled. +> [!TIP] +> Looking for an equivalent with nanobind? Check this out https://github.com/ianhbell/nanobind_json ! + ## C++ API: Automatic conversion between `nlohmann::json` and `pybind11` Python objects ```cpp