From 34122908c0ea1eef1f026ae5a9f10c1003eb8d69 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 06:26:50 +0000 Subject: [PATCH] Add converter, examples, and flavors modules --- regex_humanizer/flavors/__init__.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 regex_humanizer/flavors/__init__.py diff --git a/regex_humanizer/flavors/__init__.py b/regex_humanizer/flavors/__init__.py new file mode 100644 index 0000000..46d0922 --- /dev/null +++ b/regex_humanizer/flavors/__init__.py @@ -0,0 +1,23 @@ +from .registry import ( + Flavor, + FlavorRegistry, + FlavorWarning, + get_flavor, + get_supported_flavors, + validate_flavor, + detect_flavor, + check_feature_support, + get_compatibility_warnings, +) + +__all__ = [ + "Flavor", + "FlavorRegistry", + "FlavorWarning", + "get_flavor", + "get_supported_flavors", + "validate_flavor", + "detect_flavor", + "check_feature_support", + "get_compatibility_warnings", +]