Skip to content

Instantly share code, notes, and snippets.

@stillPhys
stillPhys / mymodule.cpp
Created December 20, 2021 18:26 — forked from caiorss/mymodule.cpp
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>