Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
202 views
in Technique[技术] by (71.8m points)

c++ - pybind11 redirect stream fprintf

I am using a C library from my C++ code which provides pybind11 bindings. The C library (which I cannot change) is using fprintf like outputs. I want to display these messages when I use the pybind11 bindings in python.

In a note in the pybind11 documentation regarding stream redirection https://pybind11.readthedocs.io/en/stable/advanced/pycpp/utilities.html#capturing-standard-output-from-ostream it is mentioned that this is not working for fprintf like output and one should redirect the streams in C.

I found this https://stackoverflow.com/a/11110451/9759769 for redirecting streams to files, but I could not manage to adopt this to get it working with pybind11.

How can I setup the redirection to get it work with pybind11?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...