| Class: PluginsFor | ./src/peak/binding/components.py | ||||||||
|---|---|---|---|---|---|---|---|---|---|
Component key that finds plugins matching a configuration keyUsage:
# get a list of 'my.plugins.X' plugins, sorted by property name
myPlugins = binding.Obtain( binding.PluginsFor('my.plugins') )
# get an unsorted list of all 'foo.bar' plugins
myPlugins = binding.Obtain(
binding.PluginsFor('foo.bar', sortKeys=False)
)
This key type works similarly to
|