Skip to content

__main__

main() #

Example calling a function from a C++ class built in C++ extension with a Nanobind binding.

During installation of cogip-tools, a script called cogip-cpp-nanobind-example will be created using this function as entrypoint.

Source code in cogip/tools/cpp_nanobind_example/__main__.py
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
def main():
    """
    Example calling a function from a C++ class built in C++ extension with a Nanobind binding.

    During installation of cogip-tools, a script called `cogip-cpp-nanobind-example`
    will be created using this function as entrypoint.
    """
    example = NanobindExample()
    print(example.get_message())
    data: NDArray = example.get_data()
    print(f"data type: {data.__class__}")
    print(f"data shape: {data.shape}")
    print(f"data = \n{data}")