exonware-xwsystem 0.0.1.406__tar.gz → 0.0.1.408__tar.gz

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 (515) hide show
  1. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/PKG-INFO +3 -3
  2. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/README.md +2 -2
  3. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/pyproject.toml +1 -1
  4. exonware_xwsystem-0.0.1.408/src/exonware/__init__.py +40 -0
  5. exonware_xwsystem-0.0.1.408/src/exonware/conf.py +119 -0
  6. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/__init__.py +18 -159
  7. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/__init__.py +1 -1
  8. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/base.py +1 -1
  9. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/bloom_cache.py +1 -1
  10. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/cache_manager.py +1 -1
  11. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/conditional.py +1 -1
  12. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/contracts.py +1 -1
  13. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/decorators.py +1 -1
  14. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/defs.py +1 -1
  15. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/disk_cache.py +1 -1
  16. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/distributed.py +1 -1
  17. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/errors.py +1 -1
  18. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/events.py +1 -1
  19. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/eviction_strategies.py +1 -1
  20. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/fluent.py +1 -1
  21. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/integrity.py +1 -1
  22. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/lfu_cache.py +1 -1
  23. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/lfu_optimized.py +1 -1
  24. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/lru_cache.py +1 -1
  25. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/memory_bounded.py +1 -1
  26. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/metrics_exporter.py +1 -1
  27. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/observable_cache.py +1 -1
  28. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/pluggable_cache.py +1 -1
  29. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/rate_limiter.py +1 -1
  30. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/read_through.py +1 -1
  31. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/secure_cache.py +1 -1
  32. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/serializable.py +1 -1
  33. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/stats.py +1 -1
  34. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/tagging.py +1 -1
  35. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/ttl_cache.py +1 -1
  36. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/two_tier_cache.py +1 -1
  37. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/utils.py +1 -1
  38. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/validation.py +1 -1
  39. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/warming.py +1 -1
  40. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/write_behind.py +1 -1
  41. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/__init__.py +1 -1
  42. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/args.py +1 -1
  43. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/base.py +1 -1
  44. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/colors.py +1 -1
  45. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/console.py +1 -1
  46. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/contracts.py +1 -1
  47. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/defs.py +1 -1
  48. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/errors.py +1 -1
  49. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/progress.py +1 -1
  50. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/prompts.py +1 -1
  51. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/tables.py +1 -1
  52. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/conf.py +1 -21
  53. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/__init__.py +1 -1
  54. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/base.py +1 -1
  55. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/contracts.py +1 -1
  56. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/defaults.py +1 -1
  57. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/defs.py +1 -1
  58. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/errors.py +1 -1
  59. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/logging.py +1 -1
  60. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/logging_setup.py +1 -1
  61. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/performance.py +1 -1
  62. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/__init__.py +1 -1
  63. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/advanced_client.py +5 -1
  64. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/base.py +1 -1
  65. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/client.py +5 -1
  66. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/contracts.py +1 -1
  67. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/defs.py +1 -1
  68. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/errors.py +1 -1
  69. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/__init__.py +1 -1
  70. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/__init__.py +1 -1
  71. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/archive.py +1 -1
  72. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/archive_files.py +1 -1
  73. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/archivers.py +1 -1
  74. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/base.py +1 -1
  75. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/codec_integration.py +1 -1
  76. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/compression.py +1 -1
  77. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/__init__.py +1 -1
  78. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/brotli_format.py +1 -1
  79. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/lz4_format.py +1 -1
  80. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/rar.py +1 -1
  81. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/sevenzip.py +1 -1
  82. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/squashfs_format.py +1 -1
  83. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/tar.py +1 -1
  84. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/wim_format.py +1 -1
  85. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/zip.py +1 -1
  86. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/zpaq_format.py +1 -1
  87. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/zstandard.py +1 -1
  88. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/base.py +1 -1
  89. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/__init__.py +1 -1
  90. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/base.py +1 -1
  91. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/contracts.py +1 -1
  92. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/registry.py +1 -1
  93. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/__init__.py +1 -1
  94. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/base.py +1 -1
  95. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/lock.py +1 -1
  96. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/watcher.py +1 -1
  97. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/contracts.py +1 -1
  98. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/defs.py +1 -1
  99. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/errors.py +1 -1
  100. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/facade.py +1 -1
  101. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/__init__.py +1 -1
  102. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/base.py +1 -1
  103. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/conversion.py +1 -1
  104. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/file.py +1 -1
  105. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paged_source.py +1 -1
  106. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/__init__.py +1 -1
  107. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/byte_paging.py +1 -1
  108. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/line_paging.py +1 -1
  109. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/record_paging.py +1 -1
  110. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/registry.py +1 -1
  111. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/source.py +1 -1
  112. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/filesystem/__init__.py +1 -1
  113. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/filesystem/base.py +1 -1
  114. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/filesystem/local.py +1 -1
  115. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/folder/__init__.py +1 -1
  116. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/folder/base.py +1 -1
  117. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/folder/folder.py +1 -1
  118. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/__init__.py +1 -1
  119. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/auto_serializer.py +1 -1
  120. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/base.py +2 -2
  121. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/contracts.py +1 -1
  122. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/defs.py +1 -1
  123. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/errors.py +1 -1
  124. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/flyweight.py +1 -1
  125. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/format_detector.py +1 -1
  126. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/__init__.py +1 -1
  127. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/bson.py +1 -1
  128. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/cbor.py +1 -1
  129. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/marshal.py +1 -1
  130. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/msgpack.py +1 -1
  131. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/pickle.py +1 -1
  132. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/plistlib.py +1 -1
  133. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/dbm.py +1 -1
  134. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/shelve.py +1 -1
  135. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/sqlite3.py +1 -1
  136. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/configparser.py +1 -1
  137. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/csv.py +1 -1
  138. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/formdata.py +1 -1
  139. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/json.py +1 -1
  140. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/json5.py +1 -1
  141. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/jsonlines.py +1 -1
  142. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/multipart.py +1 -1
  143. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/toml.py +1 -1
  144. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/xml.py +1 -1
  145. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/yaml.py +1 -1
  146. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/registry.py +1 -1
  147. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/serializer.py +1 -1
  148. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/utils/__init__.py +1 -1
  149. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/utils/path_ops.py +1 -1
  150. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/__init__.py +1 -1
  151. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/async_operations.py +1 -1
  152. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/base.py +1 -1
  153. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/codec_io.py +1 -1
  154. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/async_fabric.py +1 -1
  155. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/base.py +1 -1
  156. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/contracts.py +1 -1
  157. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/defs.py +1 -1
  158. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/errors.py +1 -1
  159. exonware_xwsystem-0.0.1.408/src/exonware/xwsystem/lazy_bootstrap.py +79 -0
  160. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/base.py +1 -1
  161. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/contracts.py +1 -1
  162. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/defs.py +1 -1
  163. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/errors.py +1 -1
  164. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/performance_manager_generic.py +1 -1
  165. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/system_monitor.py +1 -1
  166. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/tracing.py +17 -15
  167. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/tracker.py +1 -1
  168. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/__init__.py +1 -1
  169. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/base.py +1 -1
  170. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/defs.py +1 -1
  171. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/diff.py +1 -1
  172. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/merge.py +1 -1
  173. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/patch.py +1 -1
  174. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/base.py +1 -1
  175. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/contracts.py +1 -1
  176. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/defs.py +1 -1
  177. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/errors.py +1 -1
  178. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/registry.py +1 -1
  179. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/__init__.py +1 -1
  180. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/base.py +1 -1
  181. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/contracts.py +1 -1
  182. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/defs.py +1 -1
  183. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/errors.py +1 -1
  184. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/__init__.py +1 -1
  185. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/base.py +1 -1
  186. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/contracts.py +1 -1
  187. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/defs.py +1 -1
  188. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/env.py +1 -1
  189. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/errors.py +1 -1
  190. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/reflection.py +1 -1
  191. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/auth.py +1 -1
  192. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/base.py +1 -1
  193. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/contracts.py +1 -1
  194. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/crypto.py +1 -1
  195. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/defs.py +1 -1
  196. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/errors.py +1 -1
  197. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/hazmat.py +1 -1
  198. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/__init__.py +1 -1
  199. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/base.py +1 -1
  200. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/contracts.py +1 -1
  201. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/defs.py +1 -1
  202. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/errors.py +1 -1
  203. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/base.py +1 -1
  204. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/contracts.py +1 -1
  205. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/defs.py +1 -1
  206. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/errors.py +1 -1
  207. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/async_primitives.py +1 -1
  208. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/base.py +1 -1
  209. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/contracts.py +1 -1
  210. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/defs.py +1 -1
  211. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/errors.py +1 -1
  212. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/base.py +1 -1
  213. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/contracts.py +1 -1
  214. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/__init__.py +1 -1
  215. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/base.py +1 -1
  216. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/contracts.py +1 -1
  217. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/defs.py +1 -1
  218. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/errors.py +1 -1
  219. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/formatting.py +1 -1
  220. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/humanize.py +1 -1
  221. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/parsing.py +1 -1
  222. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/timezone_utils.py +1 -1
  223. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/errors.py +1 -1
  224. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/test_runner.py +1 -1
  225. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/utils_contracts.py +1 -1
  226. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/__init__.py +1 -1
  227. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/base.py +1 -1
  228. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/contracts.py +1 -1
  229. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/declarative.py +1 -1
  230. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/defs.py +1 -1
  231. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/errors.py +1 -1
  232. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/fluent_validator.py +1 -1
  233. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/version.py +2 -2
  234. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/xwsystem.py +1 -1
  235. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_auto_install.py +1 -1
  236. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_core_lazy_loading.py +1 -1
  237. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_core_xsystem_utils.py +1 -1
  238. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_core_xwsystem_utils.py +1 -1
  239. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_direct_mapping.py +2 -2
  240. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_dynamic_mapping.py +2 -2
  241. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/test_lazy_hook_early_installation.py +25 -66
  242. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/test_lazy_mode_example.py +1 -1
  243. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_lazy_hook_integration.py +5 -11
  244. exonware_xwsystem-0.0.1.406/src/exonware/__init__.py +0 -31
  245. exonware_xwsystem-0.0.1.406/src/exonware/conf.py +0 -179
  246. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/_lazy_bootstrap.py +0 -77
  247. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/ARCHITECTURE.md +0 -820
  248. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/__init__.py +0 -268
  249. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/config.py +0 -163
  250. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/lazy_base.py +0 -465
  251. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/lazy_contracts.py +0 -290
  252. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/lazy_core.py +0 -2248
  253. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/lazy_errors.py +0 -253
  254. exonware_xwsystem-0.0.1.406/src/exonware/xwsystem/utils/lazy_package/lazy_state.py +0 -86
  255. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/.github/workflows/publish.yml +0 -0
  256. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/.gitignore +0 -0
  257. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/LICENSE +0 -0
  258. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/USAGE_GUIDE.md +0 -0
  259. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/performance_modes.py +0 -0
  260. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/version_manager.py +0 -0
  261. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/atomic.py +0 -0
  262. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/path_manager.py +0 -0
  263. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/__init__.py +0 -0
  264. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/__init__.py +0 -0
  265. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/__init__.py +0 -0
  266. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/__init__.py +0 -0
  267. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/message_queue.py +0 -0
  268. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/pipes.py +0 -0
  269. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/process_manager.py +0 -0
  270. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/process_pool.py +0 -0
  271. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/shared_memory.py +0 -0
  272. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/__init__.py +0 -0
  273. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/error_recovery.py +0 -0
  274. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/memory_monitor.py +0 -0
  275. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/metrics.py +0 -0
  276. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/performance_monitor.py +0 -0
  277. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/performance_validator.py +0 -0
  278. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/contracts.py +0 -0
  279. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/errors.py +0 -0
  280. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/__init__.py +0 -0
  281. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/context_manager.py +0 -0
  282. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/dynamic_facade.py +0 -0
  283. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/handler_factory.py +0 -0
  284. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/import_registry.py +0 -0
  285. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/object_pool.py +0 -0
  286. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/__init__.py +0 -0
  287. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/path_validator.py +0 -0
  288. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/resource_limits.py +0 -0
  289. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/__init__.py +0 -0
  290. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/circular_detector.py +0 -0
  291. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/tree_walker.py +0 -0
  292. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/__init__.py +0 -0
  293. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/locks.py +0 -0
  294. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/safe_factory.py +0 -0
  295. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/paths.py +0 -0
  296. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/data_validator.py +0 -0
  297. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/type_safety.py +0 -0
  298. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/src/xwsystem_wrapper.py +0 -0
  299. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/README.md +0 -0
  300. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/__init__.py +0 -0
  301. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/conftest.py +0 -0
  302. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/runner.py +0 -0
  303. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/runner_out.md +0 -0
  304. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_caching_standalone.py +0 -0
  305. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_core_caching.py +0 -0
  306. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_core_caching_installation.py +0 -0
  307. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_core_xsystem_caching.py +0 -0
  308. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/cli/__init__.py +0 -0
  309. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/cli/runner.py +0 -0
  310. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/cli/test_core_xsystem_cli.py +0 -0
  311. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/config/__init__.py +0 -0
  312. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/config/runner.py +0 -0
  313. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/config/test_core_xsystem_config.py +0 -0
  314. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/core/__init__.py +0 -0
  315. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/core/runner.py +0 -0
  316. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/core/test_core_xsystem_core.py +0 -0
  317. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/enterprise/__init__.py +0 -0
  318. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/enterprise/runner.py +0 -0
  319. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/enterprise/test_core_xsystem_enterprise.py +0 -0
  320. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/http/__init__.py +0 -0
  321. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/http/runner.py +0 -0
  322. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/http/test_core_xsystem_http.py +0 -0
  323. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/__init__.py +0 -0
  324. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/runner.py +0 -0
  325. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/test_core_io_modular_imports.py +0 -0
  326. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/test_core_xsystem_io.py +0 -0
  327. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/__init__.py +0 -0
  328. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/runner.py +0 -0
  329. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/test_core_xsystem_ipc.py +0 -0
  330. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/test_core_xwsystem_ipc.py +0 -0
  331. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/monitoring/__init__.py +0 -0
  332. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/monitoring/runner.py +0 -0
  333. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/monitoring/test_core_xsystem_monitoring.py +0 -0
  334. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/patterns/__init__.py +0 -0
  335. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/patterns/runner.py +0 -0
  336. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/patterns/test_core_xsystem_patterns.py +0 -0
  337. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/performance/__init__.py +0 -0
  338. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/performance/runner.py +0 -0
  339. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/performance/test_core_xsystem_performance.py +0 -0
  340. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/plugins/__init__.py +0 -0
  341. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/plugins/runner.py +0 -0
  342. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/plugins/test_core_xsystem_plugins.py +0 -0
  343. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/runner.py +0 -0
  344. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/runtime/__init__.py +0 -0
  345. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/runtime/runner.py +0 -0
  346. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/runtime/test_core_xsystem_runtime.py +0 -0
  347. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/security/__init__.py +0 -0
  348. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/security/runner.py +0 -0
  349. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/security/test_core_xsystem_security.py +0 -0
  350. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/__init__.py +0 -0
  351. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/config.json +0 -0
  352. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/config.yaml +0 -0
  353. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/test_data.json +0 -0
  354. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/user_data.pkl +0 -0
  355. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/runner.py +0 -0
  356. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/test_core_serialization_fixed_features.py +0 -0
  357. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/test_core_xsystem_serialization.py +0 -0
  358. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/structures/__init__.py +0 -0
  359. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/structures/runner.py +0 -0
  360. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/structures/test_core_xsystem_structures.py +0 -0
  361. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/threading_tests/__init__.py +0 -0
  362. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/threading_tests/runner.py +0 -0
  363. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/threading_tests/test_core_xsystem_threading.py +0 -0
  364. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/__init__.py +0 -0
  365. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/runner.py +0 -0
  366. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/validation/__init__.py +0 -0
  367. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/validation/runner.py +0 -0
  368. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/0.core/validation/test_core_xsystem_validation.py +0 -0
  369. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/__init__.py +0 -0
  370. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/conftest.py +0 -0
  371. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/lru_cache_tests/__init__.py +0 -0
  372. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/lru_cache_tests/test_lru_cache.py +0 -0
  373. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/runner.py +0 -0
  374. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/security_tests/__init__.py +0 -0
  375. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/security_tests/test_secure_cache.py +0 -0
  376. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/__init__.py +0 -0
  377. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/conftest.py +0 -0
  378. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/runner.py +0 -0
  379. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/test_lfu_optimized.py +0 -0
  380. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/test_security.py +0 -0
  381. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/test_validation.py +0 -0
  382. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/__init__.py +0 -0
  383. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/conftest.py +0 -0
  384. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/runner.py +0 -0
  385. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/runner_out.md +0 -0
  386. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/test_universal_codec_registry.py +0 -0
  387. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/test_xwio_codec_integration.py +0 -0
  388. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/config_tests/__init__.py +0 -0
  389. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/config_tests/conftest.py +0 -0
  390. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/config_tests/test_logging_config.py +0 -0
  391. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/ALL_ISSUES_RESOLVED.md +0 -0
  392. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/COMPLETENESS_REPORT.md +0 -0
  393. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/CRITICAL_FIXES_APPLIED.md +0 -0
  394. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FINAL_STATUS.md +0 -0
  395. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FINAL_VICTORY.md +0 -0
  396. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FIXES_COMPLETED.md +0 -0
  397. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FIX_PLAN.md +0 -0
  398. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/README.md +0 -0
  399. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/RENAMING_COMPLETE.md +0 -0
  400. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/VICTORY_REPORT.md +0 -0
  401. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/__init__.py +0 -0
  402. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/__init__.py +0 -0
  403. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_archive_files.py +0 -0
  404. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_archive_format_metadata.py +0 -0
  405. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_archivers.py +0 -0
  406. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_base.py +0 -0
  407. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/__init__.py +0 -0
  408. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_base.py +0 -0
  409. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_contracts.py +0 -0
  410. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_registry.py +0 -0
  411. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_simple_examples.py +0 -0
  412. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/common_tests/__init__.py +0 -0
  413. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/common_tests/test_atomic.py +0 -0
  414. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/conftest.py +0 -0
  415. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/file_tests/__init__.py +0 -0
  416. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/filesystem_tests/__init__.py +0 -0
  417. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/folder_tests/__init__.py +0 -0
  418. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/runner.py +0 -0
  419. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/runner_out.md +0 -0
  420. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/__init__.py +0 -0
  421. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/__init__.py +0 -0
  422. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/__init__.py +0 -0
  423. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json.py +0 -0
  424. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json5.py +0 -0
  425. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_jsonlines.py +0 -0
  426. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_yaml.py +0 -0
  427. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/test_base.py +0 -0
  428. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/test_contracts.py +0 -0
  429. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/test_registry.py +0 -0
  430. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/stream_tests/__init__.py +0 -0
  431. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_base.py +0 -0
  432. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_contracts.py +0 -0
  433. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_defs.py +0 -0
  434. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_errors.py +0 -0
  435. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_facade.py +0 -0
  436. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/__init__.py +0 -0
  437. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/runner.py +0 -0
  438. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/runner_out.md +0 -0
  439. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/test_diff.py +0 -0
  440. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/test_merge.py +0 -0
  441. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/test_patch.py +0 -0
  442. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/patterns_tests/__init__.py +0 -0
  443. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/patterns_tests/conftest.py +0 -0
  444. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/patterns_tests/test_handler_factory.py +0 -0
  445. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/performance_tests/__init__.py +0 -0
  446. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/performance_tests/conftest.py +0 -0
  447. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/performance_tests/test_threading_performance.py +0 -0
  448. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/conftest.py +0 -0
  449. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_crypto_comprehensive.py +0 -0
  450. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_input_validation.py +0 -0
  451. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_path_validator.py +0 -0
  452. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_security_edge_cases.py +0 -0
  453. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/__init__.py +0 -0
  454. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/conftest.py +0 -0
  455. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/multilingual_emoji_test.py +0 -0
  456. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/runner.py +0 -0
  457. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_all_serializers.py +0 -0
  458. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_bson_debug.py +0 -0
  459. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_complete_optimization.py +0 -0
  460. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_final_optimization.py +0 -0
  461. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_new_serializers.py +0 -0
  462. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_optimization_progress.py +0 -0
  463. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_optimization_simple.py +0 -0
  464. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_optimizations.py +0 -0
  465. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_serialization_basic_features.py +0 -0
  466. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_serialization_security_performance.py +0 -0
  467. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_serialization_worst_case_scenarios.py +0 -0
  468. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_universal_options.py +0 -0
  469. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_xserialization.py +0 -0
  470. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/structures_tests/__init__.py +0 -0
  471. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/structures_tests/conftest.py +0 -0
  472. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/structures_tests/test_circular_detector.py +0 -0
  473. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_advanced_http.py +0 -0
  474. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_async_io.py +0 -0
  475. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_caching.py +0 -0
  476. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_core_components.py +0 -0
  477. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_ipc.py +0 -0
  478. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_standalone_mapping.py +0 -0
  479. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/__init__.py +0 -0
  480. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/conftest.py +0 -0
  481. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/debug_imports.py +0 -0
  482. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/test_threading_utilities.py +0 -0
  483. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/__init__.py +0 -0
  484. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/dt/__init__.py +0 -0
  485. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/dt/runner.py +0 -0
  486. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/dt/test_core_xwsystem_utls_dt.py +0 -0
  487. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/runner.py +0 -0
  488. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/runner_out.md +0 -0
  489. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/__init__.py +0 -0
  490. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/conftest.py +0 -0
  491. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/runner.py +0 -0
  492. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/test_end_to_end.py +0 -0
  493. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/__init__.py +0 -0
  494. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_end_to_end.py +0 -0
  495. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_format_conversion_workflow.py +0 -0
  496. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_io_codec_integration.py +0 -0
  497. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/test_caching_integration.py +0 -0
  498. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/test_module_interactions.py +0 -0
  499. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/2.integration/test_security_integration.py +0 -0
  500. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/__init__.py +0 -0
  501. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/__init__.py +0 -0
  502. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/runner.py +0 -0
  503. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/test_performance.py +0 -0
  504. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/test_security.py +0 -0
  505. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/conftest.py +0 -0
  506. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/runner.py +0 -0
  507. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/test_caching_extensibility.py +0 -0
  508. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/test_caching_performance.py +0 -0
  509. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/3.advance/test_caching_security.py +0 -0
  510. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/README.md +0 -0
  511. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/__init__.py +0 -0
  512. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/conftest.py +0 -0
  513. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/performance/benchmark_suite.py +0 -0
  514. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/pytest.ini +0 -0
  515. {exonware_xwsystem-0.0.1.406 → exonware_xwsystem-0.0.1.408}/tests/runner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exonware-xwsystem
3
- Version: 0.0.1.406
3
+ Version: 0.0.1.408
4
4
  Summary: Enterprise-grade Python framework with AI-powered performance optimization, 24 serialization formats, military-grade security, automatic memory leak prevention, circuit breakers, and production monitoring - replaces 50+ dependencies
5
5
  Project-URL: Homepage, https://exonware.com
6
6
  Project-URL: Repository, https://github.com/exonware/xwsystem
@@ -78,8 +78,8 @@ Description-Content-Type: text/markdown
78
78
  **Company:** eXonware.com
79
79
  **Author:** Eng. Muhammad AlShehri
80
80
  **Email:** connect@exonware.com
81
- **Version:** 0.0.1.406
82
- **Updated:** 15-Nov-2025
81
+ **Version:** 0.0.1.408
82
+ **Updated:** 20-Nov-2025
83
83
 
84
84
  ## 🎯 **The Python Revolution Starts Here**
85
85
 
@@ -7,8 +7,8 @@
7
7
  **Company:** eXonware.com
8
8
  **Author:** Eng. Muhammad AlShehri
9
9
  **Email:** connect@exonware.com
10
- **Version:** 0.0.1.406
11
- **Updated:** 15-Nov-2025
10
+ **Version:** 0.0.1.408
11
+ **Updated:** 20-Nov-2025
12
12
 
13
13
  ## 🎯 **The Python Revolution Starts Here**
14
14
 
@@ -93,7 +93,7 @@ profile = "black"
93
93
  line_length = 88
94
94
 
95
95
  [tool.mypy]
96
- python_version = "0.0.1.406"
96
+ python_version = "0.0.1.408"
97
97
  strict = true
98
98
  warn_return_any = true
99
99
  warn_unused_configs = true
@@ -0,0 +1,40 @@
1
+ """
2
+ exonware package - Enterprise-grade Python framework ecosystem
3
+
4
+ Company: eXonware.com
5
+ Author: Eng. Muhammad AlShehri
6
+ Email: connect@exonware.com
7
+ Version: 0.0.1.408
8
+ Generation Date: September 04, 2025
9
+
10
+ This is a namespace package allowing multiple exonware subpackages
11
+ to coexist (xwsystem, xwnode, xwdata, etc.)
12
+ """
13
+
14
+ # Make this a namespace package
15
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)
16
+
17
+ import importlib.metadata
18
+ from pathlib import Path
19
+
20
+
21
+ def _load_version() -> str:
22
+ try:
23
+ return importlib.metadata.version("exonware-xwsystem")
24
+ except importlib.metadata.PackageNotFoundError:
25
+ version_path = Path(__file__).parent / "xwsystem" / "version.py"
26
+ ns: dict = {}
27
+ try:
28
+ exec(version_path.read_text(encoding="utf-8"), ns) # noqa: S102
29
+ except FileNotFoundError as exc: # pragma: no cover
30
+ raise ImportError(
31
+ f"Version metadata unavailable at {version_path}."
32
+ ) from exc
33
+ return ns["__version__"]
34
+
35
+
36
+ __version__ = _load_version()
37
+
38
+ __author__ = 'Eng. Muhammad AlShehri'
39
+ __email__ = 'connect@exonware.com'
40
+ __company__ = 'eXonware.com'
@@ -0,0 +1,119 @@
1
+ #exonware/conf.py
2
+ """
3
+ Public-facing configuration for all exonware packages.
4
+
5
+ This module is self-contained and can be imported without triggering
6
+ any library initialization. It provides lazy mode configuration that
7
+ works across all exonware packages (xwsystem, xwnode, xwdata, etc.).
8
+
9
+ Company: eXonware.com
10
+ Author: Eng. Muhammad AlShehri
11
+ Email: connect@exonware.com
12
+ Version: 0.0.1.408
13
+ Generation Date: 11-Nov-2025
14
+ """
15
+
16
+ from __future__ import annotations
17
+
18
+ import sys
19
+ import types
20
+
21
+ # CRITICAL: Set up warning filter BEFORE any other imports to catch early warnings
22
+ # This suppresses the decimal module mpd_setminalloc warning that appears on stderr
23
+ _original_stderr = sys.stderr
24
+
25
+ class _FilteredStderr:
26
+ """Stderr wrapper that filters out decimal module warnings."""
27
+ def __init__(self, original_stderr):
28
+ self._original = original_stderr
29
+ # Match various forms of the decimal warning
30
+ self._filter_patterns = [
31
+ "mpd_setminalloc",
32
+ "MPD_MINALLOC",
33
+ "ignoring request to set",
34
+ "libmpdec",
35
+ "context.c:57"
36
+ ]
37
+
38
+ def write(self, text: str) -> int:
39
+ """Write to stderr, filtering out unwanted warnings."""
40
+ # Check if this line contains any of our filter patterns
41
+ if any(pattern.lower() in text.lower() for pattern in self._filter_patterns):
42
+ return len(text) # Pretend we wrote it, but don't actually write
43
+ return self._original.write(text)
44
+
45
+ def flush(self) -> None:
46
+ """Flush the original stderr."""
47
+ self._original.flush()
48
+
49
+ def reconfigure(self, *args, **kwargs):
50
+ """Handle reconfigure calls - update original reference and reapply filter."""
51
+ # Update the original reference after reconfigure
52
+ result = self._original.reconfigure(*args, **kwargs)
53
+ # Ensure filter stays active
54
+ if sys.stderr is not self:
55
+ sys.stderr = self # type: ignore[assignment]
56
+ return result
57
+
58
+ def __getattr__(self, name: str):
59
+ """Delegate all other attributes to original stderr."""
60
+ return getattr(self._original, name)
61
+
62
+ # Set up filter immediately (default: suppress warnings)
63
+ _filtered_stderr = _FilteredStderr(_original_stderr)
64
+ sys.stderr = _filtered_stderr # type: ignore[assignment]
65
+
66
+ # CRITICAL: Configure UTF-8 encoding on Windows for emoji support
67
+ # This ensures emojis work automatically when exonware.conf is imported
68
+ # Root cause: Windows console defaults to cp1252 encoding, which can't encode emojis
69
+ # Trigger: This code runs at import time, before any prints, ensuring UTF-8 is active
70
+ if sys.platform == "win32":
71
+ try:
72
+ # Try to reconfigure stdout/stderr to UTF-8 (Python 3.7+)
73
+ if hasattr(sys.stdout, "reconfigure"):
74
+ try:
75
+ sys.stdout.reconfigure(encoding="utf-8")
76
+ except (ValueError, OSError):
77
+ pass # May fail if already reconfigured or not supported
78
+ if hasattr(sys.stderr, "reconfigure"):
79
+ try:
80
+ sys.stderr.reconfigure(encoding="utf-8")
81
+ except (ValueError, OSError):
82
+ pass # May fail if already reconfigured or not supported
83
+ except Exception:
84
+ # Fallback: wrap stdout/stderr with UTF-8 TextIOWrapper
85
+ import io
86
+ try:
87
+ if hasattr(sys.stdout, "buffer"):
88
+ sys.stdout = io.TextIOWrapper(
89
+ sys.stdout.buffer, encoding="utf-8", errors="replace", line_buffering=True
90
+ )
91
+ if hasattr(_filtered_stderr._original, "buffer"):
92
+ _filtered_stderr._original = io.TextIOWrapper(
93
+ _filtered_stderr._original.buffer, encoding="utf-8", errors="replace", line_buffering=True
94
+ )
95
+ except Exception:
96
+ pass # Silently fail if wrapping is not possible
97
+
98
+ try:
99
+ # Try new path first (exonware.xwlazy.host.conf)
100
+ from exonware.xwlazy.host.conf import get_conf_module
101
+ except ImportError:
102
+ try:
103
+ # Fall back to old path (xwlazy.lazy.host_conf) for installed packages
104
+ from xwlazy.lazy.host_conf import get_conf_module
105
+ except ImportError: # xwlazy not installed yet
106
+ class _UnavailableConf(types.ModuleType):
107
+ def __getattr__(self, name: str):
108
+ raise RuntimeError(
109
+ "Lazy configuration requires 'exonware-xwlazy'. "
110
+ "Install it via 'pip install exonware-xwlazy' to enable lazy mode."
111
+ )
112
+ _module_instance = _UnavailableConf(__name__, __doc__)
113
+ else:
114
+ _module_instance = get_conf_module(__name__, __doc__)
115
+ else:
116
+ _module_instance = get_conf_module(__name__, __doc__)
117
+
118
+ sys.modules[__name__] = _module_instance
119
+
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: October 10, 2025
8
8
 
9
9
  XWSystem - Enterprise-grade Python framework with AI-powered performance optimization.
@@ -50,6 +50,7 @@ This module provides common utilities that can be used across different
50
50
  components including threading, security, I/O, data structures, and design patterns.
51
51
  """
52
52
 
53
+ import importlib
53
54
  import logging
54
55
  from typing import TYPE_CHECKING
55
56
 
@@ -58,103 +59,15 @@ if TYPE_CHECKING:
58
59
  from typing import Any
59
60
 
60
61
  # =============================================================================
61
- # EARLY LAZY BOOTSTRAP - Install hook before any imports
62
+ # LAZY MODE INTEGRATION
62
63
  # =============================================================================
63
- # Import bootstrap FIRST to install hook if [lazy] extra detected
64
- # This ensures hook is active before serialization modules are imported
65
- from . import _lazy_bootstrap # This installs hook if [lazy] extra detected
66
-
67
- # =============================================================================
68
- # LAZY LOADING SYSTEM - Unified Package
69
- # =============================================================================
70
- # All lazy loading functionality consolidated into lazy_package following DEV_GUIDELINES.md
71
- # Implements per-package lazy loading with automatic installation of missing dependencies.
72
-
73
- from .utils.lazy_package import (
74
- # Core classes
75
- LazyLoader,
76
- LazyModuleRegistry,
77
- LazyModeFacade,
78
- LazyPerformanceMonitor,
79
- LazyInstaller,
80
- LazyInstallerRegistry,
81
- LazyInstallMode,
82
- LazyInstallPolicy,
83
- DependencyMapper,
84
- LazyDiscovery,
85
- LazyInstallConfig,
86
- DeferredImportError,
87
- LazyMetaPathFinder,
88
-
89
- # Dataclasses
90
- DependencyInfo,
91
-
92
- # Lazy mode functions
93
- register_lazy_module,
94
- get_lazy_module,
95
- get_loading_stats,
96
- preload_frequently_used,
97
- enable_lazy_mode,
98
- disable_lazy_mode,
99
- is_lazy_mode_enabled,
100
- get_lazy_mode_stats,
101
- configure_lazy_mode,
102
- preload_modules,
103
- optimize_lazy_mode,
104
-
105
- # Install functions
106
- enable_lazy_install,
107
- disable_lazy_install,
108
- is_lazy_install_enabled,
109
- set_lazy_install_mode,
110
- get_lazy_install_mode,
111
- install_missing_package,
112
- install_and_import,
113
- get_lazy_install_stats,
114
- get_all_lazy_install_stats,
115
- lazy_import_with_install,
116
- xwimport,
117
-
118
- # Discovery functions
119
- discover_dependencies,
120
- get_lazy_discovery,
121
- export_dependency_mappings,
122
- config_package_lazy_install_enabled,
123
-
124
- # Hook functions
125
- install_import_hook,
126
- uninstall_import_hook,
127
- is_import_hook_installed,
128
-
129
- # Security & Policy APIs
130
- set_package_allow_list,
131
- set_package_deny_list,
132
- add_to_package_allow_list,
133
- add_to_package_deny_list,
134
- set_package_index_url,
135
- set_package_extra_index_urls,
136
- add_package_trusted_host,
137
- set_package_lockfile,
138
- generate_package_sbom,
139
- check_externally_managed_environment,
140
- )
141
-
142
- # Auto-detect [lazy] installation mode and install import hook only when enabled
143
- config_package_lazy_install_enabled("xwsystem")
144
-
145
- # =============================================================================
146
- # LAZY INSTALLATION - Simple One-Line Configuration
147
- # =============================================================================
148
- # DISABLED BY DEFAULT - Users can enable manually if needed
149
- # Auto-detects if user installed with [lazy] extra: pip install xwsystem[lazy]
150
- # config_package_lazy_install_enabled("xwsystem", install_hook=False) # Configure lazy mode
151
-
152
- # =============================================================================
153
- # TWO-STAGE LAZY LOADING - Install import hook BEFORE importing serialization
154
- # =============================================================================
155
- # DISABLED BY DEFAULT - Prevents import hook interference
156
- # Install the hook NOW, before serialization imports, so it can intercept them
157
- # install_import_hook("xwsystem") # Install hook to intercept serialization module imports
64
+ # Minimal-intrusion lazy mode bootstrap (one line)
65
+ # Enables optimized lazy mode for xwsystem if xwlazy is installed
66
+ # Uses fastest mode from benchmarks: cached + full (1.482 ms)
67
+ try:
68
+ from .lazy_bootstrap import _bootstrap_lazy_mode # noqa: F401
69
+ except ImportError:
70
+ pass # xwlazy not installed - silently continue
158
71
 
159
72
  # Logging utilities
160
73
  from .config.logging_setup import get_logger, setup_logging
@@ -446,6 +359,14 @@ from .shared.contracts import IStringable
446
359
  # Import version from centralized location
447
360
  from .version import __version__
448
361
 
362
+ try:
363
+ import sys as _sys
364
+ _parent_pkg = _sys.modules.get("exonware")
365
+ if _parent_pkg is not None:
366
+ _parent_pkg.__version__ = __version__
367
+ except Exception: # pragma: no cover
368
+ pass
369
+
449
370
  # =============================================================================
450
371
  # CONVENIENCE FUNCTIONS - Quick access to common operations
451
372
  # =============================================================================
@@ -932,68 +853,6 @@ __all__ = [
932
853
  "Pipe",
933
854
  "AsyncPipe",
934
855
 
935
- # Lazy Mode - Performance optimization
936
- "LazyLoader",
937
- "LazyModuleRegistry",
938
- "LazyModeFacade",
939
- "LazyPerformanceMonitor",
940
- "register_lazy_module",
941
- "get_lazy_module",
942
- "get_loading_stats",
943
- "preload_frequently_used",
944
- "enable_lazy_mode",
945
- "disable_lazy_mode",
946
- "is_lazy_mode_enabled",
947
- "get_lazy_mode_stats",
948
- "configure_lazy_mode",
949
- "preload_modules",
950
- "optimize_lazy_mode",
951
-
952
- # Lazy Install - Auto-install missing packages (per-package isolation)
953
- "LazyInstaller",
954
- "LazyInstallerRegistry",
955
- "LazyInstallMode",
956
- "LazyInstallPolicy",
957
- "DependencyMapper",
958
- "enable_lazy_install",
959
- "disable_lazy_install",
960
- "is_lazy_install_enabled",
961
- "set_lazy_install_mode",
962
- "get_lazy_install_mode",
963
- "install_missing_package",
964
- "install_and_import",
965
- "get_lazy_install_stats",
966
- "get_all_lazy_install_stats",
967
- "lazy_import_with_install",
968
- "xwimport",
969
- # Security & Policy APIs
970
- "set_package_allow_list",
971
- "set_package_deny_list",
972
- "add_to_package_allow_list",
973
- "add_to_package_deny_list",
974
- "set_package_index_url",
975
- "set_package_extra_index_urls",
976
- "add_package_trusted_host",
977
- "set_package_lockfile",
978
- "generate_package_sbom",
979
- "check_externally_managed_environment",
980
-
981
- # Lazy Discovery - Package-agnostic dependency discovery with auto-detection
982
- "LazyDiscovery",
983
- "LazyInstallConfig",
984
- "DependencyInfo",
985
- "discover_dependencies",
986
- "get_lazy_discovery",
987
- "export_dependency_mappings",
988
- "config_package_lazy_install_enabled",
989
-
990
- # Lazy Import Hook - Performance optimized automatic import interception
991
- "DeferredImportError",
992
- "LazyMetaPathFinder",
993
- "install_import_hook",
994
- "uninstall_import_hook",
995
- "is_import_hook_installed",
996
-
997
856
  # Convenience Functions - Quick access patterns
998
857
  "quick_serialize",
999
858
  "quick_deserialize",
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.406
5
+ Version: 0.0.1.408
6
6
  Generation Date: 01-Nov-2025
7
7
 
8
8
  XSystem Caching Package
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Caching module base classes - abstract classes for caching functionality.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Bloom filter-enhanced cache for faster negative lookups.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.406
5
+ Version: 0.0.1.408
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Cache Manager implementation - Placeholder.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Conditional eviction policies for caching.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Caching protocol interfaces for XWSystem.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Advanced cache decorators with hooks and customization.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 07-Sep-2025
9
9
 
10
10
  Caching types and enums for XWSystem.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: October 26, 2025
8
8
 
9
9
  Disk cache implementation with pickle-based persistence.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.406
5
+ Version: 0.0.1.408
6
6
  Generation Date: 01-Nov-2025
7
7
 
8
8
  Distributed cache implementations - Coming in v1.0.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.406
5
+ Version: 0.0.1.408
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Caching module errors - exception classes for caching functionality.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Event system for caching module.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Pluggable eviction strategies for caching module.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Fluent API wrappers for caching module.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Cache integrity verification - Security Priority #1.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.406
5
+ Version: 0.0.1.408
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  LFU (Least Frequently Used) Cache implementation with thread-safety and async support.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Optimized O(1) LFU Cache implementation.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.406
5
+ Version: 0.0.1.408
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  LRU (Least Recently Used) Cache implementation with thread-safety and async support.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Memory-bounded cache implementations.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Metrics exporters for cache monitoring.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Observable cache implementations with event emission.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Pluggable cache with runtime-switchable eviction strategies.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Rate limiting for caching module - Security Priority #1.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.406
6
+ Version: 0.0.1.408
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Read-through and Write-through cache implementations.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.406
7
+ Version: 0.0.1.408
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Secure cache implementations with validation, integrity checks, and rate limiting.