我的环境是带有python2.7的virtualenv
我创建了一个非常简单的python软件包,以尝试找出问题所在。我的软件包中都包含带有__init__.py
文件的子软件包,但是在生成后,我无法从子软件包中导入文件。除了我要导入的文件之外,所有文件都是空的,该文件仅包含一个虚拟类。
class LazyUrl(object): pass
。
- setup.py
- sloth_toolkit/
- __init__.py
- webtools/
- __init__.py
- urls.py
- systools/
- __init__.py
- utils/
- __init__.py
from setuptools import setup
setup(
name = 'sloth-toolkit',
packages = ['sloth_toolkit'],
version = '0.0.01',
author = 'crispycret',
description='Contains lazy rich objects, such as the LazyUrl..',
)
class LazyUrl(object):
pass
然后安装软件包,将终端移至用户根目录以避免导入源,然后运行ipython
。我没有问题地导入了软件包,然后尝试导入/访问虚拟类LazyUrl
,这是它中断的地方。
In [1]: import sloth_toolkit
In [2]: sloth_toolkit.webtools.urls.LazyUrl()
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-2-edc6d4b8bbf3> in <module>()
----> 1 sloth_toolkit.webtools.urls.LazyUrl()
AttributeError: 'module' object has no attribute 'webtools'
In [3]: from sloth_toolkit.webtools import urls
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-3-f6b31fa7f72c> in <module>()
----> 1 from sloth_toolkit.webtools import urls
ImportError: No module named webtools
这让我发疯。我相信问题是我所不知道的环境。
[这里是我正在研究的项目https://github.com/crispycret/sloth-toolkit
。
在安装virtualenv并导入软件包后,从将LazyUrl
类导入到软件包主__init__.py
文件中时出现此错误。
In [1]: import sloth_toolkit
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-70e153ca48f0> in <module>()
----> 1 import sloth_toolkit
/home/crispycret/Documents/sloth-testing/lib/python2.7/site-packages/sloth_toolkit-0.0.11-py2.7.egg/sloth_toolkit/__init__.py in <module>()
3 # from . import utilities
4
----> 5 from .webtools.urls import LazyUrl
6 from .systools.paths import LazyPath
7
ImportError: No module named webtools.urls
问题: __init__.py
文件不应为空。
解决方案:使__init__.py
文件导入要包含在包中的所有函数,类,子模块等。
sloth_toolkit/__init__.py
from .webtools import *
from .systools import *
from .utils import *
sloth_toolkit/webtools/__init__.py
from .urls import * # OR from .urls import LazyUrl
我希望这会有所帮助!