Jul 5, 2018
1 min read
Python is very handy for prototyping things and thanks to Thanks to dynamic typing, Python is handy for coding in an interactively way, fast prototyping projects, etc. However, Python is not efficient enough, if some part of your code is compute-intensive that needs to run efficiently like C, you should consider writing that part in C.
static PyMethodDef module_methods[] = {
{"_dtw", dtw, METH_VARARGS, "dynamic time warping"},
{NULL, NULL, 0, NULL}
};
PyMODINIT_FUNC PyInit_<module>(void)
{
PyObject *module;
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT, // just add
"sequence_utils", // module name
"module_docstring", // module document
-1, // global state
module_methods, // method table which initialized before
NULL,
NULL,
NULL,
NULL
};
module = PyModule_Create(&moduledef);
if (!module) return NULL;
return module;
}
setup.py
from distutils.core import setup, Extension
setup(name='dtw',
version='1.0',
description='test',
ext_modules=[Extension('sequence_utils', ['_dtw.cpp'])]
)
Sharing is caring!