在Python中导入文件夹

时间:2018-12-04 10:24:22

标签: python

我是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'

0 个答案:

没有答案