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 55e9e1e5e8 Update master for stable/zed
Add file to the reno documentation build to show release notes for
stable/zed.

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

Sem-Ver: feature
Change-Id: I258603f7e7304c3e852d6d47bae5e024e33a90f7
9 months ago
doc Merge "Adding pre-commit" 3 years ago
releasenotes Update master for stable/zed 9 months ago
stevedore Fix remaining logic to support Python 3.6/7 12 months 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 Add Python3 zed unit tests 1 year ago
CONTRIBUTING.rst Workflow documentation is now in infra-manual 9 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 Fix remaining logic to support Python 3.6/7 12 months ago
setup.cfg Drop python3.6/3.7 support in testing runtime 1 year 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.