4

我有一个目录结构如下的项目

.
├── 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__.pypython模块系统。我读得越多,它就越混乱。但无论我学到什么,我都创建了另一个示例项目。采用以下结构,

.
└── 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 并创建虚拟环境。

4

2 回答 2

7

使用您的初始布局(loggers作为helpers包的子模块),您需要显式导入loggershelpers/__init__.py将其作为helpers包的属性公开:

# helpers/__init__.py
from . import logger
于 2017-12-14T10:15:13.660 回答
6

logger是模块而不是属性并helpers.logger评估logger为属性。其实你应该这样做:

from helpers import logger

print(logger.info('Trying'))
于 2017-12-14T09:30:33.600 回答