mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-10 03:25:57 +00:00
8 lines
260 B
Python
8 lines
260 B
Python
import deluge.pluginmanagerbase
|
|
pm = deluge.pluginmanagerbase.PluginManagerBase("core.conf", "deluge.plugin.core")
|
|
|
|
for p in pm.get_available_plugins():
|
|
print "Plugin: %s" % (p)
|
|
for k,v in pm.get_plugin_info(p).items():
|
|
print "%s: %s" % (k, v)
|