Skip to content

Instantly share code, notes, and snippets.

@caiorss
caiorss / mymodule.cpp
Last active January 21, 2022 09:42
Sample C++ Python native module
// Author: Caio Rodrigues
// Descr: Sample Native Python 3 module (library) DLL
//
// Compile with:
// $ clang++ mymodule.cpp -o mymodule.so -g -std=c++1z -fPIC -shared -I/usr/include/python3.6m
//-------------------------------------------------------
#include <iostream>
#include <string>
#include <functional>