Manage dynamic plugins for Python applications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
wu.shiming 74d6d5867b
Remove lower-constraints remnants
2 years ago
doc Merge "Adding pre-commit" 2 years ago
releasenotes Update master for stable/wallaby 2 years ago
stevedore Merge "Fix cache dir flooding when running from /tmp" 2 years ago
.gitignore Drop Python 2.7 support 3 years ago
.gitreview OpenDev Migration Patch 4 years ago
.pre-commit-config.yaml Move flake8 as a pre-commit local target. 2 years ago
.stestr.conf Switch to stestr 5 years ago
.zuul.yaml Dropping lower constraints testing 2 years ago
CONTRIBUTING.rst Workflow documentation is now in infra-manual 8 years ago
LICENSE add license 11 years ago
README.rst update git.openstack.org to opendev 4 years ago
bindep.txt Add local bindep.txt 4 years ago
requirements.txt switch to importlib.metadata package 3 years ago
setup.cfg Drop Python 2.7 support 3 years ago
setup.py Drop Python 2.7 support 3 years ago
test-requirements.txt Adding pre-commit 3 years ago
tox.ini Remove lower-constraints remnants 2 years ago

README.rst

stevedore -- Manage dynamic plugins for Python applications

Latest Version

image

Python makes loading code dynamically easy, allowing you to configure and extend your application by discovering and loading extensions ("plugins") at runtime. Many applications implement their own library for doing this, using __import__ or importlib. stevedore avoids creating yet another extension mechanism by building on top of setuptools entry points. The code for managing entry points tends to be repetitive, though, so stevedore provides manager classes for implementing common patterns for using dynamically loaded extensions.