我有一个目录结构如下的项目
.
├── Pipfile
├── Pipfile.lock
├── module
│ ├── __init__.py
│ ├── helpers
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ └── __init__.cpython-36.pyc
│ │ ├── dynamo.py
│ │ └── logger.py
│ └── test.py
相关代码
记录器.py
import click
import sys
from tabulate import tabulate
def formatter(string, *rest):
return string.format(*rest)
def info(*rest):
"""Write text in blue color
"""
click.echo(click.style('☵ ' + formatter(*rest), fg='blue'))
测试.py
import helpers
helpers.logger.info('Trying')
当我尝试使用命令运行时
python3 module/test.py
我收到这个错误
Traceback (most recent call last):
File "module/test.py", line 4, in <module>
helpers.logger.info('Trying')
AttributeError: module 'helpers' has no attribute 'logger'
我尝试过重构代码。将helpers
目录放在外面,与module
目录平齐。但它仍然没有工作,它不应该有,从我读到的。我尝试研究一下__init__.py
python模块系统。我读得越多,它就越混乱。但无论我学到什么,我都创建了另一个示例项目。采用以下结构,
.
└── test
├── __init__.py
├── helpers
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ └── quote.cpython-36.pyc
│ └── quote.py
├── index.py
├── logger
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ └── info.cpython-36.pyc
│ └── info.py
代码与第一个项目相同。
当我这样做时,
python3 test/index.py
它按预期工作。两个项目的唯一区别:
在第一个项目中,我曾经
pipenv
安装 deps 并创建虚拟环境。