Skip to content

Manage dynamic plugins for Python applications. Mirror of code maintained at opendev.org.

License

Notifications You must be signed in to change notification settings

openstack/stevedore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

27e27c1 · Feb 15, 2025
Oct 22, 2024
Nov 21, 2024
Oct 22, 2024
Apr 21, 2020
Apr 19, 2019
Oct 22, 2024
Jul 5, 2018
Apr 10, 2023
Dec 5, 2014
Jun 19, 2012
Apr 25, 2019
Jun 27, 2019
Oct 31, 2024
Oct 24, 2024
Apr 21, 2020
Apr 30, 2024
Feb 15, 2025

Repository files navigation

stevedore -- Manage dynamic plugins for Python applications

Latest Version

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.