您好我有一个django应用程序名称" celery_tasks"具有以下目录结构:
.
├── apps.py
├── emitter
├── __init__.py
├── kse
├── mongo
我添加了一个新模块名称kse,其中包含两个文件:
├── __init__.py
├── lol.py
kse模块中的__init__.py
包含from .lol import lol
lol.py文件包含以下类:
class lol:
@staticmethod
def x():
return True
def __init__(self):
pass
问题是我无法通过django shell访问kse
模块:
>>> import celery_tasks
>>> celery_tasks.kse
Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: module 'celery_tasks' has no attribute 'kse'
但是可以访问mongo和emmiter模块:
>>> celery_tasks.mongo
<module 'celery_tasks.mongo' from '/Users/kheshav/Linux_projects/rockynode.io/App/rockynode/celery_tasks/mongo/__init__.py'>
>>> celery_tasks.emitter
<module 'celery_tasks.emitter' from '/Users/kheshav/Linux_projects/rockynode.io/App/rockynode/celery_tasks/emitter/__init__.py'>
我创建了kse
模块的方式与mongo和发射器模块相同,但无法访问kse模块。
我错过了什么吗?谢谢
更新1
这里要求的是目录的ls -la
:
drwxr-xr-x 11 root root 374 Oct 13 19:28 .
drwxr-xr-x 14 root root 476 Oct 12 22:51 ..
-rw-r--r-- 1 root root 98 Dec 11 2016 apps.py
drwxr-xr-x 5 root root 170 Oct 12 19:56 emitter
-rw-r--r-- 1 root root 0 Oct 13 20:51 __init__.py
drwxr-xr-x 5 root root 170 Oct 13 19:53 kse
drwxr-xr-x 6 root root 204 Oct 12 19:56 mongo
drwxr-xr-x 3 root root 102 Oct 13 20:50 __pycache__
drwxr-xr-x 5 root root 170 Oct 12 22:51 zabbix
答案 0 :(得分:1)
要按照您期望的方式导入模块,您应该在kse
内导入celery_tasks/__init__.py