Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个小程序,我想使用这个配方分发它:
__main__.py
#!/usr/bin/env python
问题是在这个包中我还有额外的文件(我正在使用 pygtk 工具包,我需要图像和 ui xml 文件)。当我尝试访问这些文件时,出现资源不可用的错误(我尝试打开的路径类似于 file.zip/gui/gui.ui )。
我该如何处理这种情况?
我自己想通了,使用 pkgutil.get_data 访问包内的数据就足够了。