我被困在一个点上,我无法前进,抱歉这个愚蠢的问题。我搜索了很多,但我不知道我错过了什么。请帮帮我。
我在python中学习了模块和类。现在我想使用python和apt进行一些操作。我是从http://apt.alioth.debian.org/python-apt-doc/library/apt.cache.html学习的 但是,我无法理解,该模块是apt.cache,如页面顶部所示。我希望通过编写apt.cache.Cache()来创建对象,但是通过编写apt.Cache()来创建对象,如下所示。为什么呢?
import apt
import apt.progress
# First of all, open the cache
cache = apt.Cache()
# Now, lets update the package list
cache.update()
# We need to re-open the cache because it needs to read the package list
cache.open(None)
# Now we can do the same as 'apt-get upgrade' does
cache.upgrade()
# or we can play 'apt-get dist-upgrade'
cache.upgrade(True)
# Q: Why does nothing happen?
# A: You forgot to call commit()!
cache.commit(apt.progress.TextFetchProgress(),
apt.progress.InstallProgress())
第二个类似的问题是关于下面的代码,Cache类是从模块apt.cache导入的。我希望通过编写apt.cache.Cache()来创建该对象,但它是通过编写apt.Cache()创建的。为什么呢?
>>> from apt.cache import FilteredCache, Cache, MarkedChangesFilter
>>> cache = apt.Cache()
>>> changed = apt.FilteredCache(cache)
>>> changed.set_filter(MarkedChangesFilter())
>>> print len(changed) == len(cache.get_changes()) # Both need to have same length
True
提前致谢
答案 0 :(得分:1)
如果您查看apt package的__init__.py
文件,则会看到以下行:
__all__ = ['Cache', 'Cdrom', 'Package']
python documentation说:
import语句使用以下约定:如果是包 __ init__.py代码定义了一个名为 all 的列表,它被视为从包导入时应导入的模块名称列表 *遇到了。
这就是你可以使用apt.Cache()
对于问题的第二部分,您可以使用
直接导入Cache类from apt.cache import Cache
cache = Cache()
您还可以使用
导入Cache类import apt
cache = apt.Cache() //because of the __all__ variable in __init__.py
cache = apt.cache.Cache() //because it's a fully qualified name