我是python的新手,我想将包含.py
文件和dll
文件的文件夹导入另一个python脚本。
USB_Relay
__init__.py
USB_relay.dll
test.py
在另一个python文件中,我想在test.py
内运行一个函数,该函数需要使用dll文件中的源代码。我可以知道什么是正确的导入方式吗?
我尝试了一些,但是没有用。
#import USB_Relay
#import USB_Relay.test
from USB_Relay import test
test.turnoff1()
test.py
L = ctypes.CDLL( "./USB_relay.dll/" )
def turnoff1():
ret = L.usb_relay_device_close_one_relay_channel(hdev,1)
我会收到错误
type object 'L' has no attribute 'usb_relay_device_open_one_relay_channel'