Manage dynamic plugins for Python applications
You cannot 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
OpenStack Release Bot 9de37d3227 Update master for stable/stein
Add file to the reno documentation build to show release notes for
stable/stein.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/stein.

Change-Id: I3dee8ebf67de1f4cb6724e832cace24a273ba483
Sem-Ver: feature
4 years ago
doc Update doc/conf.py to avoid warnings with sphinx 1.8 5 years ago
releasenotes Update master for stable/stein 4 years ago
stevedore Delete repeated param description. 4 years ago
.gitignore Switch to stestr 5 years ago
.gitreview Update .gitreview after moving the repository 9 years ago
.stestr.conf Switch to stestr 5 years ago
.travis.yml Clean up Python 2.6 related stuff 8 years ago
.zuul.yaml add python 3.7 unit test job 4 years ago
CONTRIBUTING.rst Workflow documentation is now in infra-manual 9 years ago
LICENSE add license 11 years ago
MANIFEST.in Include all images from docs in sdist 10 years ago
README.rst fix wrong link 5 years ago
announce.rst fix setuptools url 6 years ago
lower-constraints.txt Switch to stestr 5 years ago
requirements.txt Updated from global requirements 6 years ago
setup.cfg Change openstack-dev to openstack-discuss 5 years ago
setup.py Updated from global requirements 6 years ago
test-requirements.txt Switch to stestr 5 years ago
tox.ini add python 3.7 unit test job 4 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.