- Exposed Python Worker Extension Interfaces for third-party libraries to integrate into Azure Functions Python Worker.
- Third-party library vendors can now implement the abstract classes FuncExtensionBase (apply to specific trigger) and AppExtensionBase (apply to all triggers in function app) to allow Python Worker execute your lifecycle hooks.
- Lifecycle hooks that is supported in AppExtensionBase: post_function_load_app_level, pre_invocation_app_level, post_invocation_app_level
- Lifecycle hooks that is supported in FuncExtensionBasse: post_function_load, pre_invocation, post_invocation