From a0721d79e49637ec3d2c4319e408a2d00d4c6877 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Thu, 19 Nov 2020 15:14:27 +0100 Subject: python: Improve access to device_addr_t This makes two changes: - Add device_addr_t as a type that the Python property tree access can handle - Add a to_dict() call to device_addr_t (in Python) that will return a regular dictionary from a device_addr_t for a more Pythonic access. --- host/lib/types/types_python.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'host/lib/types') diff --git a/host/lib/types/types_python.hpp b/host/lib/types/types_python.hpp index 0e5bd3cdc..54d1a2188 100644 --- a/host/lib/types/types_python.hpp +++ b/host/lib/types/types_python.hpp @@ -43,7 +43,10 @@ void export_types(py::module& m) // Methods .def("__str__", &uhd::device_addr_t::to_pp_string) .def("to_string", &uhd::device_addr_t::to_string) - .def("to_pp_string", &uhd::device_addr_t::to_pp_string); + .def("to_pp_string", &uhd::device_addr_t::to_pp_string) + .def("to_dict", [](uhd::device_addr_t& self) { + return static_cast>(self); + }); // This will allow functions in Python that take a device_addr to also take // a string: py::implicitly_convertible(); -- cgit v1.2.3