如何在Python中创建PYD文件
原文英文,约900词,阅读约需4分钟。发表于: 。Python has several other Python files besides the traditional *.py file that it supports. In this tutorial, you will learn about the PYD file. A PYD file is a dynamic link library (DLL) written in...
PYD文件是一种用Python编写的动态链接库,仅适用于Windows操作系统。创建PYD文件需要安装setuptools和Cython模块,并创建一个名为PyInit_CUSTOM_NAME()的特殊函数。最后,使用setup.py脚本将其转换为PYD文件。PYD文件可以用作混淆的一种形式,也可以让其他程序加载它们。