From 482c9a2114ed43b0d0b7b0835366e3957a565191 Mon Sep 17 00:00:00 2001 From: martinRenou Date: Mon, 4 Nov 2024 15:36:07 +0100 Subject: [PATCH] Mention nanobind's solution (#71) --- 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