-
-
Save lucasea777/8801440f6b622edd3553c8a7304bf94e to your computer and use it in GitHub Desktop.
Python C Extension Hello World
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcc -fpic --shared $(python3-config --includes) greetmodule.c -o greet.abi3.so | |
# can also use $(pkg-config --cflags python-3.5) | |
# or | |
# python3 setup.py install --record files.txt --user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Python.h> | |
static PyObject * | |
greet_name(PyObject *self, PyObject *args) | |
{ | |
const char *name; | |
if (!PyArg_ParseTuple(args, "s", &name)) | |
{ | |
return NULL; | |
} | |
printf("Hello %s!\n", name); | |
Py_RETURN_NONE; | |
} | |
static PyMethodDef GreetMethods[] = { | |
{"greet", greet_name, METH_VARARGS, "Greet an entity."}, | |
{NULL, NULL, 0, NULL} | |
}; | |
static struct PyModuleDef greet = | |
{ | |
PyModuleDef_HEAD_INIT, | |
"greet", /* name of module */ | |
"", /* module documentation, may be NULL */ | |
-1, /* size of per-interpreter state of the module, or -1 if the module keeps state in global variables. */ | |
GreetMethods | |
}; | |
PyMODINIT_FUNC PyInit_greet(void) | |
{ | |
return PyModule_Create(&greet); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import greet | |
def main(): | |
greet.greet('World') | |
if __name__ == "__main__": | |
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup, Extension | |
setup( | |
name='greet', | |
version='1.0', | |
description='Python Package with Hello World C Extension', | |
ext_modules=[ | |
Extension( | |
'greet', | |
sources=['greetmodule.c'], | |
py_limited_api=True) | |
], | |
) |
👍
Thank you. You are a lifesaver.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git clone -q https://gist.github.com/lucasea777/8801440f6b622edd3553c8a7304bf94e && cd 88* && source build.sh && python3 hello*.py