ErisPulse 2.2.1.dev0__py3-none-any.whl → 2.3.0.dev5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. ErisPulse/Core/Bases/__init__.py +14 -0
  2. ErisPulse/Core/Bases/adapter.py +196 -0
  3. ErisPulse/Core/Bases/module.py +54 -0
  4. ErisPulse/Core/Event/__init__.py +14 -0
  5. ErisPulse/Core/Event/base.py +15 -2
  6. ErisPulse/Core/Event/command.py +21 -2
  7. ErisPulse/Core/Event/message.py +15 -0
  8. ErisPulse/Core/Event/meta.py +15 -0
  9. ErisPulse/Core/Event/notice.py +15 -0
  10. ErisPulse/Core/Event/request.py +16 -1
  11. ErisPulse/Core/__init__.py +38 -19
  12. ErisPulse/Core/{erispulse_config.py → _self_config.py} +16 -3
  13. ErisPulse/Core/adapter.py +374 -377
  14. ErisPulse/Core/config.py +137 -38
  15. ErisPulse/Core/exceptions.py +6 -1
  16. ErisPulse/Core/lifecycle.py +167 -0
  17. ErisPulse/Core/logger.py +97 -49
  18. ErisPulse/Core/module.py +279 -56
  19. ErisPulse/Core/router.py +112 -23
  20. ErisPulse/Core/storage.py +258 -77
  21. ErisPulse/Core/ux.py +664 -0
  22. ErisPulse/__init__.py +587 -242
  23. ErisPulse/__main__.py +1 -1999
  24. ErisPulse/utils/__init__.py +15 -0
  25. ErisPulse/utils/cli.py +1102 -0
  26. ErisPulse/utils/package_manager.py +847 -0
  27. ErisPulse/utils/reload_handler.py +135 -0
  28. {erispulse-2.2.1.dev0.dist-info → erispulse-2.3.0.dev5.dist-info}/METADATA +24 -6
  29. erispulse-2.3.0.dev5.dist-info/RECORD +33 -0
  30. {erispulse-2.2.1.dev0.dist-info → erispulse-2.3.0.dev5.dist-info}/WHEEL +1 -1
  31. {erispulse-2.2.1.dev0.dist-info → erispulse-2.3.0.dev5.dist-info}/licenses/LICENSE +1 -1
  32. ErisPulse/Core/env.py +0 -15
  33. ErisPulse/Core/module_registry.py +0 -227
  34. erispulse-2.2.1.dev0.dist-info/RECORD +0 -26
  35. {erispulse-2.2.1.dev0.dist-info → erispulse-2.3.0.dev5.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,15 @@
1
+ """
2
+ ErisPulse SDK 工具模块
3
+
4
+ 包含各种辅助工具和实用程序。
5
+ """
6
+
7
+ from .package_manager import PackageManager
8
+ from .reload_handler import ReloadHandler
9
+ from .cli import CLI
10
+
11
+ __all__ = [
12
+ "PackageManager",
13
+ "ReloadHandler",
14
+ "CLI",
15
+ ]