Was Sie brauchen ist
1. GCC ** gcc (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 8.1.0** 2. Python Python 3.7.4 3. Erweiterter Editor wie Visual Studio Code Version: 1.41.1 (system setup) OS: Windows_NT x64 10.0.18362
Erstellen Sie einen Ordner mit einem geeigneten Namen. Kopieren wir das folgende Programm!
> mkdir capi
** Python-Testbibliothek aufrufen **
capi.py
import myModule as capi #Gib ihm einen passenden Namen(Ich bin süchtig nach Tests
capi.hello()
** Bibliothekskörper **
capilib.c
#include <Python.h>
static PyObject* hello(PyObject* self, PyObject* args)
{
printf("Hallo Welt Tokio\n");
return Py_None;
}
//Definition des Funktionsnamens, der Spezifikationen usw.
static PyMethodDef myMethods[] = {
{ "hello", hello, METH_NOARGS, "Hello World"},
{ NULL }
};
// Module Definition struct
static struct PyModuleDef myModule = {
PyModuleDef_HEAD_INIT,"myModule","C API Module",-1,myMethods
};
//Initialisieren Sie die obige Struktur
PyMODINIT_FUNC PyInit_myModule(void)
{
return PyModule_Create(&myModule);
}
Skript zur Bibliothekserstellung
setup.py
from distutils.core import setup, Extension
setup(name = 'myModule', version = '1.0.0', \
ext_modules = [Extension('myModule', ['capilib.c'])])
Erstellen Sie eine Bibliothek.
python setup.py install
running install
running build
running build_ext
running install_lib
running install_egg_info
Removing C:\ProgramData\Anaconda3\Lib\site-packages\myModule-1.0.0-py3.7.egg-info
Writing C:\ProgramData\Anaconda3\Lib\site-packages\myModule-1.0.0-py3.7.egg-info
So überprüfen Sie die Bibliothek
\capi>pip freeze
...
myModule==1.0.0
...
Maßnahmen gegen verstümmelte Charaktere
> chcp 65001
Lauf
capi>python capi.py
Hallo Welt Tokio
Recommended Posts