13 lines
356 B
Python
13 lines
356 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import pkg_resources
|
||
|
|
||
|
|
||
|
def get_plugins(group, point, name=None):
|
||
|
for plugin in pkg_resources.iter_entry_points(group):
|
||
|
if plugin.name.startswith(point):
|
||
|
try:
|
||
|
yield plugin.load().connect_plugin
|
||
|
except (AttributeError, pkg_resources.DistributionNotFound):
|
||
|
continue
|