从另一个文件夹中的不同文件导入类不起作用

时间:2017-08-14 01:46:27

标签: python

我已经看过这个解决方案Importing classes from different files in a subdirectory,但它仍然不适合我。

我有__init__.py文件,我在其中进行导入:

from api.get_channel_list import GetChannelList 

但是当我尝试运行我的应用时出现以下错误:

from api.get_channel_list.py import GetChannelList
ImportError: No module named get_channel_list.py

目录以这种方式构建:

api
    --get_channel_list.py
static
templates
__init__.py

其中api,static和templates是文件夹。知道我可能做错了什么吗?就像2天前一样,我对python很新。任何指向解决方案的指针都将受到赞赏。

0 个答案:

没有答案