我有使用 python 的经验,但我刚刚开始学习如何为 Kodi 开发插件。理解文档有点麻烦。
是否可以从另一个插件或脚本导入或以其他方式访问 python 代码?
例如,如果我的插件是:script.hello.world
并且我想使用some_method
from plugin.video.someplugin
。
addon.xml 导入我希望访问的插件:
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="plugin.video.plexbmc" version="3.4.5" optional="true"/>
</requires>
我很确定这行不通,我是对的:
from plugin.video.someplugin.default import some_method
文档中唯一看起来可能有效的是:
spi = xbmcaddon.Addon ('plugin.video.someplugin')
我可以访问 xbmc 的 spi 内置方法,但无法访问实际的 python 对象。