创建和发现插件¶
Often when creating a Python application or library you’ll want the ability to provide customizations or extra features via plugins. Because Python packages can be separately distributed, your application or library may want to automatically discover all of the plugins available.
There are three major approaches to doing automatic plugin discovery:
Using naming convention¶
If all of the plugins for your application follow the same naming convention,
you can use pkgutil.iter_modules()
to discover all of the top-level
modules that match the naming convention. For example, Flask uses the
naming convention flask_{plugin_name}
. If you wanted to automatically
discover all of the Flask plugins installed:
import importlib
import pkgutil
discovered_plugins = {
name: importlib.import_module(name)
for finder, name, ispkg
in pkgutil.iter_modules()
if name.startswith('flask_')
}
If you had both the Flask-SQLAlchemy and Flask-Talisman plugins installed
then discovered_plugins
would be:
{
'flask_sqlachemy': <module: 'flask_sqlalchemy'>,
'flask_talisman': <module: 'flask_talisman'>,
}
Using naming convention for plugins also allows you to query the Python Package Index’s simple API for all packages that conform to your naming convention.
Using namespace packages¶
Namespace packages can be used to provide
a convention for where to place plugins and also provides a way to perform
discovery. For example, if you make the sub-package myapp.plugins
a
namespace package then other distributions can
provide modules and packages to that namespace. Once installed, you can use
pkgutil.iter_modules()
to discover all modules and packages installed
under that namespace:
import importlib
import pkgutil
import myapp.plugins
def iter_namespace(ns_pkg):
# Specifying the second argument (prefix) to iter_modules makes the
# returned name an absolute name instead of a relative one. This allows
# import_module to work without having to do additional modification to
# the name.
return pkgutil.iter_modules(ns_pkg.__path__, ns_pkg.__name__ + ".")
discovered_plugins = {
name: importlib.import_module(name)
for finder, name, ispkg
in iter_namespace(myapp.plugins)
}
Specifying myapp.plugins.__path__
to iter_modules()
causes
it to only look for the modules directly under that namespace. For example,
if you have installed distributions that provide the modules myapp.plugins.a
and myapp.plugins.b
then discovered_plugins
in this case would be:
{
'a': <module: 'myapp.plugins.a'>,
'b': <module: 'myapp.plugins.b'>,
}
This sample uses a sub-package as the namespace package (myapp.plugins
), but
it’s also possible to use a top-level package for this purpose (such as
myapp_plugins
). How to pick the namespace to use is a matter of preference,
but it’s not recommended to make your project’s main top-level package
(myapp
in this case) a namespace package for the purpose of plugins, as one
bad plugin could cause the entire namespace to break which would in turn make
your project unimportable. For the “namespace sub-package” approach to work,
the plugin packages must omit the __init__.py
for your top-level
package directory (myapp
in this case) and include the namespace-package
style __init__.py
in the namespace sub-package directory
(myapp/plugins
). This also means that plugins will need to explicitly pass
a list of packages to setup()
’s packages
argument instead of using
setuptools.find_packages()
.
警告
Namespace packages are a complex feature and there are several different ways to create them. It’s highly recommended to read the Packaging namespace packages documentation and clearly document which approach is preferred for plugins to your project.
Using package metadata¶
Packages can have metadata for plugins described in the Entry points specification. By specifying them, a package announces that it contains a specific kind of plugin. Another package supporting this kind of plugin can use the metadata to discover that plugin.
For example if you have a package named myapp-plugin-a
and it includes
the following in its pyproject.toml
:
[project.entry-points.'myapp.plugins']
a = 'myapp_plugin_a'
Then you can discover and load all of the registered entry points by using
importlib.metadata.entry_points()
(or the backport
importlib_metadata >= 3.6
for Python 3.6-3.9):
import sys
if sys.version_info < (3, 10):
from importlib_metadata import entry_points
else:
from importlib.metadata import entry_points
discovered_plugins = entry_points(group='myapp.plugins')
In this example, discovered_plugins
would be a collection of type importlib.metadata.EntryPoint
:
(
EntryPoint(name='a', value='myapp_plugin_a', group='myapp.plugins'),
...
)
Now the module of your choice can be imported by executing
discovered_plugins['a'].load()
.
备注
The entry_point
specification in setup.py
is fairly
flexible and has a lot of options. It’s recommended to read over the entire
section on entry points .
备注
Since this specification is part of the standard library, most packaging tools other than setuptools provide support for defining entry points.