exonware-xwsystem 0.0.1.411__tar.gz → 0.1.0.3__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 (1189) hide show
  1. exonware_xwsystem-0.1.0.3/.github/workflows/compliance.yml +43 -0
  2. exonware_xwsystem-0.1.0.3/.github/workflows/traceability.yml +36 -0
  3. exonware_xwsystem-0.1.0.3/.gitignore +288 -0
  4. exonware_xwsystem-0.1.0.3/PKG-INFO +910 -0
  5. exonware_xwsystem-0.1.0.3/README.md +836 -0
  6. exonware_xwsystem-0.1.0.3/pyproject.toml +132 -0
  7. exonware_xwsystem-0.1.0.3/src/exonware/__init__.py +41 -0
  8. exonware_xwsystem-0.1.0.3/src/exonware/conf.py +109 -0
  9. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/__init__.py +941 -0
  10. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/base.py +30 -0
  11. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/__init__.py +276 -0
  12. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/base.py +309 -0
  13. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/bloom_cache.py +215 -0
  14. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/cache_manager.py +27 -0
  15. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/conditional.py +149 -0
  16. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/contracts.py +778 -0
  17. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/decorators.py +255 -0
  18. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/defs.py +58 -0
  19. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/disk_cache.py +335 -0
  20. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/distributed.py +53 -0
  21. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/errors.py +100 -0
  22. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/events.py +282 -0
  23. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/eviction_strategies.py +270 -0
  24. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/external_caching_python.py +701 -0
  25. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/facade.py +253 -0
  26. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/factory.py +300 -0
  27. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/fluent.py +128 -0
  28. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/integrity.py +144 -0
  29. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/lfu_cache.py +289 -0
  30. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/lfu_optimized.py +565 -0
  31. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/lru_cache.py +605 -0
  32. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/memory_bounded.py +289 -0
  33. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/metrics_exporter.py +197 -0
  34. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/observable_cache.py +151 -0
  35. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/pluggable_cache.py +233 -0
  36. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/rate_limiter.py +252 -0
  37. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/read_through.py +251 -0
  38. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/secure_cache.py +353 -0
  39. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/serializable.py +169 -0
  40. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/stats.py +187 -0
  41. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/tagging.py +202 -0
  42. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/ttl_cache.py +567 -0
  43. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/two_tier_cache.py +260 -0
  44. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/utils.py +233 -0
  45. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/validation.py +233 -0
  46. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/warming.py +245 -0
  47. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/caching/write_behind.py +228 -0
  48. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/__init__.py +92 -0
  49. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/base.py +287 -0
  50. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/contracts.py +817 -0
  51. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/defaults.py +183 -0
  52. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/defs.py +82 -0
  53. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/errors.py +77 -0
  54. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/logging.py +95 -0
  55. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/logging_setup.py +117 -0
  56. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/performance.py +88 -0
  57. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/performance_modes.py +1008 -0
  58. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config/version_manager.py +163 -0
  59. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/config.py +27 -0
  60. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/__init__.py +53 -0
  61. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/base.py +133 -0
  62. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/__init__.py +61 -0
  63. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/args.py +392 -0
  64. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/base.py +246 -0
  65. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/colors.py +283 -0
  66. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/console.py +98 -0
  67. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/contracts.py +175 -0
  68. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/defs.py +87 -0
  69. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/encoding.py +69 -0
  70. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/errors.py +79 -0
  71. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/event_logger.py +166 -0
  72. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/progress.py +466 -0
  73. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/prompts.py +99 -0
  74. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/cli/tables.py +259 -0
  75. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/contracts.py +113 -0
  76. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/defs.py +154 -0
  77. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/errors.py +34 -0
  78. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/event_logger.py +385 -0
  79. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/console/writer.py +132 -0
  80. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/contracts.py +28 -0
  81. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/data_structures/__init__.py +23 -0
  82. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/data_structures/trie.py +34 -0
  83. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/data_structures/union_find.py +144 -0
  84. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/defs.py +17 -0
  85. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/errors.py +23 -0
  86. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/facade.py +62 -0
  87. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/__init__.py +42 -0
  88. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/advanced_client.py +553 -0
  89. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/base.py +277 -0
  90. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/client.py +564 -0
  91. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/contracts.py +141 -0
  92. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/defs.py +66 -0
  93. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/errors.py +92 -0
  94. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/http_client/facade.py +156 -0
  95. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/__init__.py +240 -0
  96. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/__init__.py +127 -0
  97. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/archive.py +103 -0
  98. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/archive_files.py +217 -0
  99. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/archivers.py +402 -0
  100. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/base.py +376 -0
  101. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/codec_integration.py +57 -0
  102. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/compression.py +186 -0
  103. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/facade.py +263 -0
  104. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/__init__.py +134 -0
  105. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/brotli_format.py +164 -0
  106. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/lz4_format.py +163 -0
  107. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/rar.py +132 -0
  108. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/sevenzip.py +142 -0
  109. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/squashfs_format.py +154 -0
  110. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/tar.py +151 -0
  111. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/wim_format.py +141 -0
  112. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/zip.py +88 -0
  113. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/zpaq_format.py +152 -0
  114. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/archive/formats/zstandard.py +156 -0
  115. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/base.py +1394 -0
  116. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/codec/__init__.py +198 -0
  117. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/codec/base.py +888 -0
  118. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/codec/contracts.py +270 -0
  119. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/codec/registry.py +825 -0
  120. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/common/__init__.py +111 -0
  121. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/common/atomic.py +484 -0
  122. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/common/base.py +166 -0
  123. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/common/lock.py +129 -0
  124. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/common/path_manager.py +320 -0
  125. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/common/watcher.py +157 -0
  126. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/contracts.py +1577 -0
  127. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/contracts_1.py +1180 -0
  128. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/data_operations.py +745 -0
  129. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/defs.py +261 -0
  130. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/errors.py +413 -0
  131. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/facade.py +938 -0
  132. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/__init__.py +111 -0
  133. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/base.py +148 -0
  134. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/conversion.py +243 -0
  135. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/file.py +362 -0
  136. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/paged_source.py +163 -0
  137. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/paging/__init__.py +44 -0
  138. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/paging/byte_paging.py +73 -0
  139. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/paging/line_paging.py +86 -0
  140. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/paging/record_paging.py +100 -0
  141. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/paging/registry.py +179 -0
  142. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/file/source.py +210 -0
  143. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/filesystem/__init__.py +42 -0
  144. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/filesystem/base.py +26 -0
  145. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/filesystem/local.py +154 -0
  146. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/folder/__init__.py +27 -0
  147. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/folder/base.py +37 -0
  148. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/folder/folder.py +223 -0
  149. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/indexing/__init__.py +14 -0
  150. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/indexing/facade.py +443 -0
  151. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/path_parser.py +98 -0
  152. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/__init__.py +190 -0
  153. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/auto_serializer.py +566 -0
  154. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/base.py +1196 -0
  155. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/contracts.py +501 -0
  156. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/defs.py +79 -0
  157. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/errors.py +174 -0
  158. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/flyweight.py +553 -0
  159. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/format_detector.py +393 -0
  160. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/__init__.py +16 -0
  161. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/binary/bson.py +179 -0
  162. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/binary/cbor.py +173 -0
  163. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/binary/marshal.py +162 -0
  164. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/binary/msgpack.py +187 -0
  165. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/binary/pickle.py +180 -0
  166. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/binary/plistlib.py +174 -0
  167. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/database/dbm.py +124 -0
  168. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/database/shelve.py +119 -0
  169. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/database/sqlite3.py +156 -0
  170. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/tabular/__init__.py +27 -0
  171. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/tabular/base.py +89 -0
  172. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/tabular/csv.py +319 -0
  173. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/tabular/df.py +249 -0
  174. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/tabular/excel.py +291 -0
  175. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/tabular/googlesheets.py +374 -0
  176. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/__init__.py +27 -0
  177. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/append_only_log.py +199 -0
  178. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/configparser.py +194 -0
  179. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/csv.py +215 -0
  180. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/formdata.py +175 -0
  181. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/json.py +441 -0
  182. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/json5.py +198 -0
  183. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/jsonlines.py +414 -0
  184. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/multipart.py +212 -0
  185. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/toml.py +257 -0
  186. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/xml.py +597 -0
  187. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/formats/text/yaml.py +233 -0
  188. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/__init__.py +16 -0
  189. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/base.py +60 -0
  190. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/hybrid_parser.py +62 -0
  191. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/msgspec_parser.py +48 -0
  192. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/orjson_direct_parser.py +54 -0
  193. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/orjson_parser.py +62 -0
  194. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/pysimdjson_parser.py +55 -0
  195. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/rapidjson_parser.py +53 -0
  196. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/registry.py +91 -0
  197. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/standard.py +44 -0
  198. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/parsers/ujson_parser.py +53 -0
  199. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/registry.py +187 -0
  200. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/serializer.py +1261 -0
  201. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/universal_options.py +367 -0
  202. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/utils/__init__.py +31 -0
  203. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/serialization/utils/path_ops.py +303 -0
  204. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/source_reader.py +223 -0
  205. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/stream/__init__.py +50 -0
  206. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/stream/async_operations.py +538 -0
  207. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/stream/base.py +41 -0
  208. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/io/stream/codec_io.py +433 -0
  209. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/__init__.py +40 -0
  210. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/async_fabric.py +358 -0
  211. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/base.py +380 -0
  212. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/contracts.py +162 -0
  213. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/defs.py +70 -0
  214. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/errors.py +116 -0
  215. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/message_queue.py +431 -0
  216. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/pipes.py +584 -0
  217. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/process_manager.py +344 -0
  218. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/process_pool.py +494 -0
  219. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/ipc/shared_memory.py +501 -0
  220. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/__init__.py +157 -0
  221. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/base.py +346 -0
  222. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/contracts.py +796 -0
  223. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/defs.py +71 -0
  224. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/error_recovery.py +640 -0
  225. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/errors.py +121 -0
  226. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/facade.py +183 -0
  227. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/memory_monitor.py +407 -0
  228. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/metrics.py +350 -0
  229. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/performance_manager_generic.py +469 -0
  230. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/performance_monitor.py +394 -0
  231. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/performance_validator.py +535 -0
  232. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/system_monitor.py +701 -0
  233. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/tracing.py +429 -0
  234. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/monitoring/tracker.py +279 -0
  235. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/__init__.py +54 -0
  236. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/base.py +44 -0
  237. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/contracts.py +73 -0
  238. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/defs.py +69 -0
  239. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/diff.py +246 -0
  240. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/errors.py +40 -0
  241. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/merge.py +166 -0
  242. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/operations/patch.py +240 -0
  243. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/__init__.py +48 -0
  244. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/base.py +161 -0
  245. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/context_manager.py +366 -0
  246. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/contracts.py +665 -0
  247. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/defs.py +253 -0
  248. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/dynamic_facade.py +152 -0
  249. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/errors.py +641 -0
  250. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/handler_factory.py +346 -0
  251. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/import_registry.py +604 -0
  252. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/object_pool.py +255 -0
  253. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/patterns/registry.py +407 -0
  254. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/plugins/__init__.py +29 -0
  255. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/plugins/base.py +631 -0
  256. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/plugins/contracts.py +921 -0
  257. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/plugins/defs.py +75 -0
  258. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/plugins/errors.py +401 -0
  259. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/py.typed +3 -0
  260. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/query/__init__.py +36 -0
  261. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/query/contracts.py +56 -0
  262. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/query/errors.py +22 -0
  263. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/query/registry.py +128 -0
  264. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/runtime/__init__.py +106 -0
  265. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/runtime/base.py +485 -0
  266. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/runtime/contracts.py +150 -0
  267. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/runtime/defs.py +54 -0
  268. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/runtime/env.py +397 -0
  269. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/runtime/errors.py +106 -0
  270. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/runtime/reflection.py +409 -0
  271. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/__init__.py +118 -0
  272. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/audit.py +167 -0
  273. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/base.py +514 -0
  274. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/contracts.py +863 -0
  275. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/crypto.py +841 -0
  276. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/defs.py +92 -0
  277. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/errors.py +136 -0
  278. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/facade.py +321 -0
  279. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/file_security.py +330 -0
  280. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/hazmat.py +719 -0
  281. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/monitor.py +372 -0
  282. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/path_validator.py +435 -0
  283. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/policy.py +357 -0
  284. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/resource_limits.py +128 -0
  285. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/security/validator.py +455 -0
  286. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/shared/__init__.py +120 -0
  287. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/shared/base.py +592 -0
  288. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/shared/contracts.py +999 -0
  289. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/shared/defs.py +169 -0
  290. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/shared/errors.py +77 -0
  291. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/shared/xwobject.py +316 -0
  292. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/structures/__init__.py +25 -0
  293. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/structures/base.py +476 -0
  294. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/structures/circular_detector.py +344 -0
  295. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/structures/contracts.py +175 -0
  296. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/structures/defs.py +69 -0
  297. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/structures/errors.py +106 -0
  298. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/structures/tree_walker.py +345 -0
  299. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/__init__.py +43 -0
  300. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/async_primitives.py +548 -0
  301. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/base.py +393 -0
  302. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/contracts.py +779 -0
  303. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/defs.py +54 -0
  304. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/errors.py +106 -0
  305. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/facade.py +175 -0
  306. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/locks.py +142 -0
  307. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/threading/safe_factory.py +226 -0
  308. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/__init__.py +40 -0
  309. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/base.py +455 -0
  310. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/contracts.py +161 -0
  311. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/__init__.py +79 -0
  312. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/base.py +245 -0
  313. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/contracts.py +87 -0
  314. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/defs.py +70 -0
  315. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/errors.py +72 -0
  316. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/formatting.py +223 -0
  317. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/humanize.py +450 -0
  318. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/parsing.py +272 -0
  319. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/dt/timezone_utils.py +102 -0
  320. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/errors.py +127 -0
  321. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/paths.py +147 -0
  322. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/string.py +49 -0
  323. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/test_runner.py +185 -0
  324. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/utils_contracts.py +64 -0
  325. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/utils/web.py +110 -0
  326. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/__init__.py +45 -0
  327. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/base.py +346 -0
  328. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/contracts.py +237 -0
  329. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/data_validator.py +272 -0
  330. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/declarative.py +621 -0
  331. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/defs.py +37 -0
  332. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/errors.py +116 -0
  333. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/facade.py +198 -0
  334. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/fluent_validator.py +398 -0
  335. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/schema_discovery.py +210 -0
  336. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/validation/type_safety.py +109 -0
  337. exonware_xwsystem-0.1.0.3/src/exonware/xwsystem/version.py +77 -0
  338. exonware_xwsystem-0.1.0.3/src/xwsystem.py +38 -0
  339. exonware_xwsystem-0.1.0.3/src/xwsystem_wrapper.py +19 -0
  340. exonware_xwsystem-0.1.0.3/tests/0.core/caching/__init__.py +2 -0
  341. exonware_xwsystem-0.1.0.3/tests/0.core/caching/conftest.py +22 -0
  342. exonware_xwsystem-0.1.0.3/tests/0.core/caching/runner.py +53 -0
  343. exonware_xwsystem-0.1.0.3/tests/0.core/caching/test_caching_standalone.py +37 -0
  344. exonware_xwsystem-0.1.0.3/tests/0.core/caching/test_core_caching.py +196 -0
  345. exonware_xwsystem-0.1.0.3/tests/0.core/caching/test_core_caching_installation.py +34 -0
  346. exonware_xwsystem-0.1.0.3/tests/0.core/caching/test_core_xsystem_caching.py +343 -0
  347. exonware_xwsystem-0.1.0.3/tests/0.core/cli/__init__.py +8 -0
  348. exonware_xwsystem-0.1.0.3/tests/0.core/cli/runner.py +67 -0
  349. exonware_xwsystem-0.1.0.3/tests/0.core/cli/test_core_xsystem_cli.py +328 -0
  350. exonware_xwsystem-0.1.0.3/tests/0.core/config/__init__.py +8 -0
  351. exonware_xwsystem-0.1.0.3/tests/0.core/config/runner.py +66 -0
  352. exonware_xwsystem-0.1.0.3/tests/0.core/config/test_core_xsystem_config.py +331 -0
  353. exonware_xwsystem-0.1.0.3/tests/0.core/core/__init__.py +7 -0
  354. exonware_xwsystem-0.1.0.3/tests/0.core/core/runner.py +67 -0
  355. exonware_xwsystem-0.1.0.3/tests/0.core/core/test_core_xsystem_core.py +156 -0
  356. exonware_xwsystem-0.1.0.3/tests/0.core/enterprise/__init__.py +16 -0
  357. exonware_xwsystem-0.1.0.3/tests/0.core/enterprise/runner.py +87 -0
  358. exonware_xwsystem-0.1.0.3/tests/0.core/enterprise/test_core_xsystem_enterprise.py +284 -0
  359. exonware_xwsystem-0.1.0.3/tests/0.core/http_client/__init__.py +7 -0
  360. exonware_xwsystem-0.1.0.3/tests/0.core/http_client/runner.py +245 -0
  361. exonware_xwsystem-0.1.0.3/tests/0.core/http_client/test_core_xsystem_http.py +380 -0
  362. exonware_xwsystem-0.1.0.3/tests/0.core/io/data/user_data.pkl +0 -0
  363. exonware_xwsystem-0.1.0.3/tests/0.core/io/runner.py +357 -0
  364. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_core_io_modular_imports.py +33 -0
  365. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_core_serialization_fixed_features.py +247 -0
  366. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_core_xsystem_io.py +522 -0
  367. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_core_xsystem_io_archive.py +376 -0
  368. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_core_xsystem_io_serialization_comprehensive.py +510 -0
  369. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_core_xsystem_serialization.py +389 -0
  370. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_serialization_record_ops_core.py +181 -0
  371. exonware_xwsystem-0.1.0.3/tests/0.core/io/test_yaml_import_behavior.py +120 -0
  372. exonware_xwsystem-0.1.0.3/tests/0.core/ipc/__init__.py +8 -0
  373. exonware_xwsystem-0.1.0.3/tests/0.core/ipc/runner.py +67 -0
  374. exonware_xwsystem-0.1.0.3/tests/0.core/ipc/test_core_xsystem_ipc.py +367 -0
  375. exonware_xwsystem-0.1.0.3/tests/0.core/ipc/test_core_xwsystem_ipc.py +367 -0
  376. exonware_xwsystem-0.1.0.3/tests/0.core/monitoring/__init__.py +7 -0
  377. exonware_xwsystem-0.1.0.3/tests/0.core/monitoring/runner.py +270 -0
  378. exonware_xwsystem-0.1.0.3/tests/0.core/monitoring/test_core_xsystem_monitoring.py +482 -0
  379. exonware_xwsystem-0.1.0.3/tests/0.core/operations/__init__.py +2 -0
  380. exonware_xwsystem-0.1.0.3/tests/0.core/operations/runner.py +34 -0
  381. exonware_xwsystem-0.1.0.3/tests/0.core/operations/test_core_xsystem_operations.py +233 -0
  382. exonware_xwsystem-0.1.0.3/tests/0.core/patterns/__init__.py +8 -0
  383. exonware_xwsystem-0.1.0.3/tests/0.core/patterns/runner.py +67 -0
  384. exonware_xwsystem-0.1.0.3/tests/0.core/patterns/test_core_xsystem_patterns.py +358 -0
  385. exonware_xwsystem-0.1.0.3/tests/0.core/performance/__init__.py +8 -0
  386. exonware_xwsystem-0.1.0.3/tests/0.core/performance/runner.py +67 -0
  387. exonware_xwsystem-0.1.0.3/tests/0.core/performance/test_core_xsystem_performance.py +335 -0
  388. exonware_xwsystem-0.1.0.3/tests/0.core/plugins/__init__.py +8 -0
  389. exonware_xwsystem-0.1.0.3/tests/0.core/plugins/runner.py +67 -0
  390. exonware_xwsystem-0.1.0.3/tests/0.core/plugins/test_core_xsystem_plugins.py +293 -0
  391. exonware_xwsystem-0.1.0.3/tests/0.core/runner.py +42 -0
  392. exonware_xwsystem-0.1.0.3/tests/0.core/runtime/__init__.py +8 -0
  393. exonware_xwsystem-0.1.0.3/tests/0.core/runtime/runner.py +67 -0
  394. exonware_xwsystem-0.1.0.3/tests/0.core/runtime/test_core_xsystem_runtime.py +361 -0
  395. exonware_xwsystem-0.1.0.3/tests/0.core/security/__init__.py +7 -0
  396. exonware_xwsystem-0.1.0.3/tests/0.core/security/runner.py +273 -0
  397. exonware_xwsystem-0.1.0.3/tests/0.core/security/test_core_xsystem_security.py +336 -0
  398. exonware_xwsystem-0.1.0.3/tests/0.core/serialization/data/config.json +16 -0
  399. exonware_xwsystem-0.1.0.3/tests/0.core/serialization/data/config.yaml +12 -0
  400. exonware_xwsystem-0.1.0.3/tests/0.core/serialization/data/test_data.json +16 -0
  401. exonware_xwsystem-0.1.0.3/tests/0.core/shared/__init__.py +2 -0
  402. exonware_xwsystem-0.1.0.3/tests/0.core/shared/runner.py +34 -0
  403. exonware_xwsystem-0.1.0.3/tests/0.core/shared/test_core_xsystem_shared.py +140 -0
  404. exonware_xwsystem-0.1.0.3/tests/0.core/structures/__init__.py +8 -0
  405. exonware_xwsystem-0.1.0.3/tests/0.core/structures/runner.py +67 -0
  406. exonware_xwsystem-0.1.0.3/tests/0.core/structures/test_core_xsystem_structures.py +375 -0
  407. exonware_xwsystem-0.1.0.3/tests/0.core/threading_tests/__init__.py +7 -0
  408. exonware_xwsystem-0.1.0.3/tests/0.core/threading_tests/runner.py +328 -0
  409. exonware_xwsystem-0.1.0.3/tests/0.core/threading_tests/test_core_xsystem_threading.py +612 -0
  410. exonware_xwsystem-0.1.0.3/tests/0.core/utils/__init__.py +8 -0
  411. exonware_xwsystem-0.1.0.3/tests/0.core/utils/runner.py +67 -0
  412. exonware_xwsystem-0.1.0.3/tests/0.core/utils/test_auto_install.py +107 -0
  413. exonware_xwsystem-0.1.0.3/tests/0.core/utils/test_core_lazy_loading.py +81 -0
  414. exonware_xwsystem-0.1.0.3/tests/0.core/utils/test_core_xsystem_utils.py +358 -0
  415. exonware_xwsystem-0.1.0.3/tests/0.core/utils/test_core_xwsystem_utils.py +323 -0
  416. exonware_xwsystem-0.1.0.3/tests/0.core/validation/__init__.py +7 -0
  417. exonware_xwsystem-0.1.0.3/tests/0.core/validation/runner.py +303 -0
  418. exonware_xwsystem-0.1.0.3/tests/0.core/validation/test_core_xsystem_validation.py +577 -0
  419. exonware_xwsystem-0.1.0.3/tests/0.core/validation/test_schema_validator_discovery.py +235 -0
  420. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/__init__.py +4 -0
  421. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/conftest.py +50 -0
  422. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/runner.py +41 -0
  423. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/test_lfu_cache_comprehensive.py +388 -0
  424. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/test_lfu_optimized.py +187 -0
  425. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/test_lru_cache_comprehensive.py +843 -0
  426. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/test_security.py +248 -0
  427. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/test_ttl_cache_comprehensive.py +427 -0
  428. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_tests/test_validation.py +176 -0
  429. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_unit/__init__.py +2 -0
  430. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_unit/conftest.py +31 -0
  431. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_unit/lru_cache_tests/__init__.py +2 -0
  432. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_unit/lru_cache_tests/test_lru_cache.py +140 -0
  433. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_unit/runner.py +53 -0
  434. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_unit/security_tests/__init__.py +2 -0
  435. exonware_xwsystem-0.1.0.3/tests/1.unit/caching_unit/security_tests/test_secure_cache.py +84 -0
  436. exonware_xwsystem-0.1.0.3/tests/1.unit/codec_registry_simple_test.py +123 -0
  437. exonware_xwsystem-0.1.0.3/tests/1.unit/codec_tests/__init__.py +11 -0
  438. exonware_xwsystem-0.1.0.3/tests/1.unit/codec_tests/conftest.py +66 -0
  439. exonware_xwsystem-0.1.0.3/tests/1.unit/codec_tests/runner.py +44 -0
  440. exonware_xwsystem-0.1.0.3/tests/1.unit/codec_tests/test_universal_codec_registry.py +300 -0
  441. exonware_xwsystem-0.1.0.3/tests/1.unit/codec_tests/test_xwio_codec_integration.py +142 -0
  442. exonware_xwsystem-0.1.0.3/tests/1.unit/config_tests/__init__.py +6 -0
  443. exonware_xwsystem-0.1.0.3/tests/1.unit/config_tests/conftest.py +55 -0
  444. exonware_xwsystem-0.1.0.3/tests/1.unit/config_tests/test_logging_config.py +306 -0
  445. exonware_xwsystem-0.1.0.3/tests/1.unit/conftest.py +21 -0
  446. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/__init__.py +6 -0
  447. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/archive_tests/__init__.py +2 -0
  448. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/archive_tests/test_archive_files.py +45 -0
  449. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/archive_tests/test_archive_format_metadata.py +113 -0
  450. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/archive_tests/test_archivers.py +57 -0
  451. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/archive_tests/test_base.py +46 -0
  452. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/codec_tests/__init__.py +2 -0
  453. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/codec_tests/test_base.py +51 -0
  454. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/codec_tests/test_contracts.py +36 -0
  455. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/codec_tests/test_registry.py +76 -0
  456. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/codec_tests/test_simple_examples.py +470 -0
  457. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/common_tests/__init__.py +2 -0
  458. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/common_tests/test_atomic.py +29 -0
  459. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/common_tests/test_lock.py +71 -0
  460. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/common_tests/test_path_manager.py +49 -0
  461. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/common_tests/test_watcher.py +90 -0
  462. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/conftest.py +42 -0
  463. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/__init__.py +2 -0
  464. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_conversion.py +67 -0
  465. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_file.py +86 -0
  466. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_paged_source.py +86 -0
  467. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_paging_byte.py +64 -0
  468. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_paging_line.py +68 -0
  469. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_paging_record.py +61 -0
  470. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_paging_registry.py +76 -0
  471. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/file_tests/test_source.py +100 -0
  472. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/filesystem_tests/__init__.py +2 -0
  473. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/filesystem_tests/test_base.py +25 -0
  474. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/filesystem_tests/test_local.py +131 -0
  475. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/folder_tests/__init__.py +2 -0
  476. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/folder_tests/test_base.py +29 -0
  477. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/folder_tests/test_folder.py +134 -0
  478. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/runner.py +41 -0
  479. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/__init__.py +2 -0
  480. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/__init__.py +2 -0
  481. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/__init__.py +2 -0
  482. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_bson.py +35 -0
  483. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_cbor.py +35 -0
  484. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_marshal.py +35 -0
  485. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_msgpack.py +35 -0
  486. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_pickle.py +35 -0
  487. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_plistlib.py +35 -0
  488. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/__init__.py +2 -0
  489. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_dbm.py +35 -0
  490. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_shelve.py +35 -0
  491. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_sqlite3.py +35 -0
  492. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/__init__.py +2 -0
  493. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_configparser.py +35 -0
  494. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_csv.py +36 -0
  495. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_formdata.py +33 -0
  496. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json.py +37 -0
  497. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json5.py +114 -0
  498. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_jsonlines.py +123 -0
  499. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_multipart.py +33 -0
  500. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_toml.py +50 -0
  501. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_xml.py +35 -0
  502. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_yaml.py +35 -0
  503. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/test_base.py +197 -0
  504. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/test_contracts.py +47 -0
  505. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/serialization_tests/test_registry.py +58 -0
  506. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/stream_tests/__init__.py +2 -0
  507. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/stream_tests/test_async_operations.py +49 -0
  508. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/stream_tests/test_base.py +30 -0
  509. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/stream_tests/test_codec_io.py +88 -0
  510. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/test_base.py +133 -0
  511. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/test_contracts.py +161 -0
  512. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/test_defs.py +121 -0
  513. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/test_errors.py +87 -0
  514. exonware_xwsystem-0.1.0.3/tests/1.unit/io_tests/test_facade.py +76 -0
  515. exonware_xwsystem-0.1.0.3/tests/1.unit/monitoring_tests/test_error_recovery_comprehensive.py +326 -0
  516. exonware_xwsystem-0.1.0.3/tests/1.unit/operations_tests/__init__.py +5 -0
  517. exonware_xwsystem-0.1.0.3/tests/1.unit/operations_tests/runner.py +44 -0
  518. exonware_xwsystem-0.1.0.3/tests/1.unit/operations_tests/test_diff.py +253 -0
  519. exonware_xwsystem-0.1.0.3/tests/1.unit/operations_tests/test_merge.py +285 -0
  520. exonware_xwsystem-0.1.0.3/tests/1.unit/operations_tests/test_operations_comprehensive.py +305 -0
  521. exonware_xwsystem-0.1.0.3/tests/1.unit/operations_tests/test_patch.py +305 -0
  522. exonware_xwsystem-0.1.0.3/tests/1.unit/patterns_tests/__init__.py +6 -0
  523. exonware_xwsystem-0.1.0.3/tests/1.unit/patterns_tests/conftest.py +47 -0
  524. exonware_xwsystem-0.1.0.3/tests/1.unit/patterns_tests/test_handler_factory.py +89 -0
  525. exonware_xwsystem-0.1.0.3/tests/1.unit/performance_tests/__init__.py +6 -0
  526. exonware_xwsystem-0.1.0.3/tests/1.unit/performance_tests/conftest.py +57 -0
  527. exonware_xwsystem-0.1.0.3/tests/1.unit/performance_tests/test_threading_performance.py +332 -0
  528. exonware_xwsystem-0.1.0.3/tests/1.unit/runner.py +40 -0
  529. exonware_xwsystem-0.1.0.3/tests/1.unit/security_tests/conftest.py +48 -0
  530. exonware_xwsystem-0.1.0.3/tests/1.unit/security_tests/test_crypto_comprehensive.py +451 -0
  531. exonware_xwsystem-0.1.0.3/tests/1.unit/security_tests/test_input_validation.py +457 -0
  532. exonware_xwsystem-0.1.0.3/tests/1.unit/security_tests/test_path_validator.py +398 -0
  533. exonware_xwsystem-0.1.0.3/tests/1.unit/security_tests/test_security_comprehensive.py +248 -0
  534. exonware_xwsystem-0.1.0.3/tests/1.unit/security_tests/test_security_edge_cases.py +131 -0
  535. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/__init__.py +6 -0
  536. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/conftest.py +61 -0
  537. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/multilingual_emoji_test.py +166 -0
  538. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/runner.py +74 -0
  539. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_all_serializers.py +750 -0
  540. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_bson_debug.py +92 -0
  541. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_complete_optimization.py +420 -0
  542. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_final_optimization.py +173 -0
  543. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_new_serializers.py +326 -0
  544. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_optimization_progress.py +175 -0
  545. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_optimization_simple.py +132 -0
  546. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_optimizations.py +323 -0
  547. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_serialization_basic_features.py +178 -0
  548. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_serialization_security_performance.py +672 -0
  549. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_universal_options.py +278 -0
  550. exonware_xwsystem-0.1.0.3/tests/1.unit/serialization_tests/test_xserialization.py +305 -0
  551. exonware_xwsystem-0.1.0.3/tests/1.unit/shared_tests/__init__.py +2 -0
  552. exonware_xwsystem-0.1.0.3/tests/1.unit/shared_tests/conftest.py +4 -0
  553. exonware_xwsystem-0.1.0.3/tests/1.unit/shared_tests/runner.py +31 -0
  554. exonware_xwsystem-0.1.0.3/tests/1.unit/shared_tests/test_base.py +61 -0
  555. exonware_xwsystem-0.1.0.3/tests/1.unit/shared_tests/test_contracts.py +75 -0
  556. exonware_xwsystem-0.1.0.3/tests/1.unit/shared_tests/test_defs.py +87 -0
  557. exonware_xwsystem-0.1.0.3/tests/1.unit/shared_tests/test_errors.py +114 -0
  558. exonware_xwsystem-0.1.0.3/tests/1.unit/structures_tests/__init__.py +6 -0
  559. exonware_xwsystem-0.1.0.3/tests/1.unit/structures_tests/conftest.py +64 -0
  560. exonware_xwsystem-0.1.0.3/tests/1.unit/structures_tests/test_circular_detector.py +89 -0
  561. exonware_xwsystem-0.1.0.3/tests/1.unit/structures_tests/test_circular_detector_comprehensive.py +296 -0
  562. exonware_xwsystem-0.1.0.3/tests/1.unit/test_advanced_http.py +492 -0
  563. exonware_xwsystem-0.1.0.3/tests/1.unit/test_async_io.py +295 -0
  564. exonware_xwsystem-0.1.0.3/tests/1.unit/test_caching.py +486 -0
  565. exonware_xwsystem-0.1.0.3/tests/1.unit/test_core_components.py +172 -0
  566. exonware_xwsystem-0.1.0.3/tests/1.unit/test_direct_mapping.py +79 -0
  567. exonware_xwsystem-0.1.0.3/tests/1.unit/test_dynamic_mapping.py +65 -0
  568. exonware_xwsystem-0.1.0.3/tests/1.unit/test_helpers.py +65 -0
  569. exonware_xwsystem-0.1.0.3/tests/1.unit/test_ipc.py +490 -0
  570. exonware_xwsystem-0.1.0.3/tests/1.unit/test_query_registry.py +51 -0
  571. exonware_xwsystem-0.1.0.3/tests/1.unit/test_runner.py +526 -0
  572. exonware_xwsystem-0.1.0.3/tests/1.unit/test_standalone_mapping.py +99 -0
  573. exonware_xwsystem-0.1.0.3/tests/1.unit/threading_tests/conftest.py +64 -0
  574. exonware_xwsystem-0.1.0.3/tests/1.unit/threading_tests/debug_imports.py +73 -0
  575. exonware_xwsystem-0.1.0.3/tests/1.unit/threading_tests/test_threading_utilities.py +262 -0
  576. exonware_xwsystem-0.1.0.3/tests/1.unit/utils/dt/test_core_xwsystem_utls_dt.py +229 -0
  577. exonware_xwsystem-0.1.0.3/tests/1.unit/utils/runner.py +35 -0
  578. exonware_xwsystem-0.1.0.3/tests/1.unit/utils/test_lazy_hook_early_installation.py +268 -0
  579. exonware_xwsystem-0.1.0.3/tests/1.unit/utils/test_lazy_mode_example.py +112 -0
  580. exonware_xwsystem-0.1.0.3/tests/2.integration/caching_integration/__init__.py +2 -0
  581. exonware_xwsystem-0.1.0.3/tests/2.integration/caching_integration/conftest.py +20 -0
  582. exonware_xwsystem-0.1.0.3/tests/2.integration/caching_integration/runner.py +54 -0
  583. exonware_xwsystem-0.1.0.3/tests/2.integration/caching_integration/test_end_to_end.py +178 -0
  584. exonware_xwsystem-0.1.0.3/tests/2.integration/io_tests/test_end_to_end.py +105 -0
  585. exonware_xwsystem-0.1.0.3/tests/2.integration/io_tests/test_format_conversion_workflow.py +58 -0
  586. exonware_xwsystem-0.1.0.3/tests/2.integration/io_tests/test_io_codec_integration.py +705 -0
  587. exonware_xwsystem-0.1.0.3/tests/2.integration/io_tests/test_lazy_hook_integration.py +147 -0
  588. exonware_xwsystem-0.1.0.3/tests/2.integration/io_tests/test_yaml_lazy_integration.py +129 -0
  589. exonware_xwsystem-0.1.0.3/tests/2.integration/runner.py +40 -0
  590. exonware_xwsystem-0.1.0.3/tests/2.integration/test_caching_integration.py +270 -0
  591. exonware_xwsystem-0.1.0.3/tests/2.integration/test_module_interactions.py +152 -0
  592. exonware_xwsystem-0.1.0.3/tests/2.integration/test_security_integration.py +428 -0
  593. exonware_xwsystem-0.1.0.3/tests/3.advance/__init__.py +5 -0
  594. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/bench_serialization.py +41 -0
  595. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/OPTIMIZATION_OPPORTUNITIES.md +452 -0
  596. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/RUST_VS_PY_JOURNEY.md +1436 -0
  597. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/benchmark_full_output.txt +0 -0
  598. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/benchmark_output.txt +0 -0
  599. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/benchmark_results.txt +0 -0
  600. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/benchmark_rust.py +685 -0
  601. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/external_python_caches.py +628 -0
  602. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/python_vs_rust/README.md +109 -0
  603. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/python_vs_rust/benchmark_comparison.py +297 -0
  604. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/rust_benchmark_results.txt +0 -0
  605. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching/test_external_rust.py +129 -0
  606. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/caching_benchmarks.py +414 -0
  607. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/codec_registry_benchmark.py +275 -0
  608. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/codec_registry_standalone_benchmark.py +130 -0
  609. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/comparison_report.py +267 -0
  610. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/enhanced_caching_benchmarks.py +238 -0
  611. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/run_benchmarks.py +105 -0
  612. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/legacy/benchmarks/run_enhanced_benchmarks.py +157 -0
  613. exonware_xwsystem-0.1.0.3/tests/3.advance/benchmarks/runner.py +128 -0
  614. exonware_xwsystem-0.1.0.3/tests/3.advance/caching/__init__.py +2 -0
  615. exonware_xwsystem-0.1.0.3/tests/3.advance/caching/runner.py +74 -0
  616. exonware_xwsystem-0.1.0.3/tests/3.advance/caching/test_performance.py +94 -0
  617. exonware_xwsystem-0.1.0.3/tests/3.advance/caching/test_security.py +93 -0
  618. exonware_xwsystem-0.1.0.3/tests/3.advance/conftest.py +20 -0
  619. exonware_xwsystem-0.1.0.3/tests/3.advance/runner.py +72 -0
  620. exonware_xwsystem-0.1.0.3/tests/3.advance/test_caching_extensibility.py +171 -0
  621. exonware_xwsystem-0.1.0.3/tests/3.advance/test_caching_performance.py +155 -0
  622. exonware_xwsystem-0.1.0.3/tests/3.advance/test_caching_security.py +121 -0
  623. exonware_xwsystem-0.1.0.3/tests/3.advance/test_performance.py +238 -0
  624. exonware_xwsystem-0.1.0.3/tests/3.advance/test_security.py +577 -0
  625. exonware_xwsystem-0.1.0.3/tests/4.DX/__init__.py +12 -0
  626. exonware_xwsystem-0.1.0.3/tests/4.DX/test_unified_facades.py +408 -0
  627. exonware_xwsystem-0.1.0.3/tests/TEST_COVERAGE_SUMMARY.md +251 -0
  628. exonware_xwsystem-0.1.0.3/tests/__init__.py +10 -0
  629. exonware_xwsystem-0.1.0.3/tests/_tools/compliance_check.py +196 -0
  630. exonware_xwsystem-0.1.0.3/tests/_tools/normalize_file_headers.py +137 -0
  631. exonware_xwsystem-0.1.0.3/tests/compliance/test_traceability_matrix.py +36 -0
  632. exonware_xwsystem-0.1.0.3/tests/conftest.py +577 -0
  633. exonware_xwsystem-0.1.0.3/tests/performance/benchmark_suite.py +609 -0
  634. exonware_xwsystem-0.1.0.3/tests/pytest_plugin.py +60 -0
  635. exonware_xwsystem-0.1.0.3/tests/runner.py +274 -0
  636. exonware_xwsystem-0.0.1.411/.gitignore +0 -280
  637. exonware_xwsystem-0.0.1.411/PKG-INFO +0 -843
  638. exonware_xwsystem-0.0.1.411/README.md +0 -774
  639. exonware_xwsystem-0.0.1.411/pyproject.toml +0 -130
  640. exonware_xwsystem-0.0.1.411/src/exonware/__init__.py +0 -40
  641. exonware_xwsystem-0.0.1.411/src/exonware/conf.py +0 -109
  642. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/__init__.py +0 -869
  643. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/USAGE_GUIDE.md +0 -779
  644. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/__init__.py +0 -250
  645. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/base.py +0 -291
  646. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/bloom_cache.py +0 -215
  647. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/cache_manager.py +0 -26
  648. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/conditional.py +0 -149
  649. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/contracts.py +0 -832
  650. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/decorators.py +0 -268
  651. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/defs.py +0 -57
  652. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/disk_cache.py +0 -334
  653. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/distributed.py +0 -52
  654. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/errors.py +0 -99
  655. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/events.py +0 -199
  656. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/eviction_strategies.py +0 -270
  657. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/fluent.py +0 -126
  658. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/integrity.py +0 -129
  659. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/lfu_cache.py +0 -288
  660. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/lfu_optimized.py +0 -553
  661. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/lru_cache.py +0 -602
  662. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/memory_bounded.py +0 -289
  663. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/metrics_exporter.py +0 -197
  664. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/observable_cache.py +0 -151
  665. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/pluggable_cache.py +0 -233
  666. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/rate_limiter.py +0 -252
  667. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/read_through.py +0 -251
  668. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/secure_cache.py +0 -300
  669. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/serializable.py +0 -167
  670. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/stats.py +0 -187
  671. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/tagging.py +0 -202
  672. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/ttl_cache.py +0 -566
  673. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/two_tier_cache.py +0 -257
  674. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/utils.py +0 -215
  675. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/validation.py +0 -233
  676. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/warming.py +0 -242
  677. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/write_behind.py +0 -219
  678. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/__init__.py +0 -43
  679. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/args.py +0 -389
  680. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/base.py +0 -315
  681. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/colors.py +0 -281
  682. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/console.py +0 -113
  683. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/contracts.py +0 -193
  684. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/defs.py +0 -134
  685. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/errors.py +0 -74
  686. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/progress.py +0 -462
  687. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/prompts.py +0 -98
  688. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/tables.py +0 -256
  689. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/conf.py +0 -44
  690. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/__init__.py +0 -98
  691. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/base.py +0 -287
  692. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/contracts.py +0 -877
  693. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/defaults.py +0 -182
  694. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/defs.py +0 -81
  695. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/errors.py +0 -80
  696. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/logging.py +0 -91
  697. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/logging_setup.py +0 -116
  698. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/performance.py +0 -406
  699. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/performance_modes.py +0 -1007
  700. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/version_manager.py +0 -162
  701. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/__init__.py +0 -21
  702. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/advanced_client.py +0 -550
  703. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/base.py +0 -276
  704. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/client.py +0 -561
  705. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/contracts.py +0 -155
  706. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/defs.py +0 -65
  707. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/errors.py +0 -91
  708. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/__init__.py +0 -221
  709. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/__init__.py +0 -121
  710. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/archive.py +0 -103
  711. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/archive_files.py +0 -220
  712. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/archivers.py +0 -292
  713. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/base.py +0 -377
  714. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/codec_integration.py +0 -58
  715. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/compression.py +0 -187
  716. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/__init__.py +0 -135
  717. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/brotli_format.py +0 -151
  718. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/lz4_format.py +0 -150
  719. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/rar.py +0 -126
  720. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/sevenzip.py +0 -136
  721. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/squashfs_format.py +0 -155
  722. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/tar.py +0 -106
  723. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/wim_format.py +0 -135
  724. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/zip.py +0 -89
  725. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/zpaq_format.py +0 -153
  726. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/zstandard.py +0 -143
  727. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/base.py +0 -1390
  728. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/__init__.py +0 -196
  729. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/base.py +0 -882
  730. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/contracts.py +0 -213
  731. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/registry.py +0 -779
  732. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/__init__.py +0 -111
  733. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/atomic.py +0 -471
  734. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/base.py +0 -165
  735. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/lock.py +0 -128
  736. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/path_manager.py +0 -319
  737. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/watcher.py +0 -158
  738. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/contracts.py +0 -1709
  739. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/data_operations.py +0 -480
  740. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/defs.py +0 -260
  741. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/errors.py +0 -412
  742. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/facade.py +0 -912
  743. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/__init__.py +0 -111
  744. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/base.py +0 -149
  745. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/conversion.py +0 -244
  746. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/file.py +0 -319
  747. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paged_source.py +0 -163
  748. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/__init__.py +0 -45
  749. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/byte_paging.py +0 -74
  750. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/line_paging.py +0 -87
  751. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/record_paging.py +0 -101
  752. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/registry.py +0 -180
  753. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/source.py +0 -214
  754. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/filesystem/__init__.py +0 -42
  755. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/filesystem/base.py +0 -27
  756. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/filesystem/local.py +0 -155
  757. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/folder/__init__.py +0 -27
  758. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/folder/base.py +0 -38
  759. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/folder/folder.py +0 -214
  760. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/__init__.py +0 -172
  761. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/auto_serializer.py +0 -440
  762. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/base.py +0 -1146
  763. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/contracts.py +0 -524
  764. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/defs.py +0 -78
  765. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/errors.py +0 -173
  766. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/flyweight.py +0 -406
  767. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/format_detector.py +0 -392
  768. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/__init__.py +0 -13
  769. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/bson.py +0 -170
  770. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/cbor.py +0 -173
  771. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/marshal.py +0 -162
  772. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/msgpack.py +0 -187
  773. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/pickle.py +0 -180
  774. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/plistlib.py +0 -174
  775. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/database/dbm.py +0 -124
  776. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/database/shelve.py +0 -119
  777. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/database/sqlite3.py +0 -156
  778. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/__init__.py +0 -27
  779. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/configparser.py +0 -194
  780. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/csv.py +0 -213
  781. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/formdata.py +0 -175
  782. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/json.py +0 -409
  783. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/json5.py +0 -194
  784. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/jsonlines.py +0 -326
  785. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/multipart.py +0 -212
  786. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/toml.py +0 -255
  787. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/xml.py +0 -592
  788. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/yaml.py +0 -231
  789. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/registry.py +0 -187
  790. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/serializer.py +0 -1172
  791. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/utils/__init__.py +0 -32
  792. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/utils/path_ops.py +0 -304
  793. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/__init__.py +0 -50
  794. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/async_operations.py +0 -491
  795. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/base.py +0 -42
  796. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/codec_io.py +0 -434
  797. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/__init__.py +0 -39
  798. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/async_fabric.py +0 -358
  799. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/base.py +0 -379
  800. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/contracts.py +0 -187
  801. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/defs.py +0 -69
  802. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/errors.py +0 -115
  803. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/message_queue.py +0 -428
  804. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/pipes.py +0 -548
  805. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/process_manager.py +0 -342
  806. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/process_pool.py +0 -493
  807. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/shared_memory.py +0 -448
  808. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/__init__.py +0 -150
  809. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/base.py +0 -343
  810. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/contracts.py +0 -854
  811. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/defs.py +0 -70
  812. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/error_recovery.py +0 -627
  813. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/errors.py +0 -120
  814. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/memory_monitor.py +0 -406
  815. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/metrics.py +0 -349
  816. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/performance_manager_generic.py +0 -469
  817. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/performance_monitor.py +0 -393
  818. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/performance_validator.py +0 -534
  819. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/system_monitor.py +0 -700
  820. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/tracing.py +0 -427
  821. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/tracker.py +0 -278
  822. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/__init__.py +0 -99
  823. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/base.py +0 -85
  824. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/contracts.py +0 -63
  825. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/defs.py +0 -69
  826. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/diff.py +0 -245
  827. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/errors.py +0 -40
  828. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/merge.py +0 -164
  829. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/patch.py +0 -239
  830. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/__init__.py +0 -47
  831. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/base.py +0 -160
  832. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/context_manager.py +0 -365
  833. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/contracts.py +0 -706
  834. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/defs.py +0 -252
  835. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/dynamic_facade.py +0 -151
  836. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/errors.py +0 -643
  837. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/handler_factory.py +0 -347
  838. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/import_registry.py +0 -603
  839. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/object_pool.py +0 -254
  840. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/registry.py +0 -446
  841. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/__init__.py +0 -28
  842. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/base.py +0 -630
  843. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/contracts.py +0 -985
  844. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/defs.py +0 -74
  845. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/errors.py +0 -400
  846. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/__init__.py +0 -105
  847. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/base.py +0 -484
  848. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/contracts.py +0 -171
  849. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/defs.py +0 -53
  850. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/env.py +0 -395
  851. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/errors.py +0 -105
  852. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/reflection.py +0 -408
  853. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/__init__.py +0 -61
  854. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/auth.py +0 -484
  855. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/base.py +0 -417
  856. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/contracts.py +0 -918
  857. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/crypto.py +0 -840
  858. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/defs.py +0 -91
  859. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/errors.py +0 -135
  860. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/hazmat.py +0 -716
  861. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/path_validator.py +0 -313
  862. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/resource_limits.py +0 -127
  863. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/__init__.py +0 -107
  864. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/base.py +0 -309
  865. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/contracts.py +0 -710
  866. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/defs.py +0 -168
  867. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/errors.py +0 -77
  868. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/__init__.py +0 -24
  869. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/base.py +0 -475
  870. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/circular_detector.py +0 -343
  871. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/contracts.py +0 -198
  872. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/defs.py +0 -68
  873. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/errors.py +0 -105
  874. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/tree_walker.py +0 -344
  875. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/__init__.py +0 -26
  876. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/async_primitives.py +0 -547
  877. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/base.py +0 -392
  878. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/contracts.py +0 -835
  879. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/defs.py +0 -53
  880. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/errors.py +0 -105
  881. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/locks.py +0 -141
  882. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/safe_factory.py +0 -225
  883. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/base.py +0 -454
  884. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/contracts.py +0 -184
  885. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/__init__.py +0 -63
  886. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/base.py +0 -244
  887. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/contracts.py +0 -94
  888. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/defs.py +0 -69
  889. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/errors.py +0 -75
  890. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/formatting.py +0 -137
  891. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/humanize.py +0 -449
  892. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/parsing.py +0 -221
  893. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/timezone_utils.py +0 -124
  894. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/errors.py +0 -129
  895. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/paths.py +0 -146
  896. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/test_runner.py +0 -526
  897. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/utils_contracts.py +0 -63
  898. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/__init__.py +0 -21
  899. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/base.py +0 -345
  900. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/contracts.py +0 -249
  901. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/data_validator.py +0 -271
  902. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/declarative.py +0 -618
  903. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/defs.py +0 -36
  904. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/errors.py +0 -115
  905. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/fluent_validator.py +0 -395
  906. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/type_safety.py +0 -108
  907. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/version.py +0 -77
  908. exonware_xwsystem-0.0.1.411/src/xwsystem.py +0 -39
  909. exonware_xwsystem-0.0.1.411/src/xwsystem_wrapper.py +0 -19
  910. exonware_xwsystem-0.0.1.411/tests/0.core/caching/__init__.py +0 -1
  911. exonware_xwsystem-0.0.1.411/tests/0.core/caching/conftest.py +0 -23
  912. exonware_xwsystem-0.0.1.411/tests/0.core/caching/runner.py +0 -93
  913. exonware_xwsystem-0.0.1.411/tests/0.core/caching/runner_out.md +0 -31
  914. exonware_xwsystem-0.0.1.411/tests/0.core/caching/test_caching_standalone.py +0 -38
  915. exonware_xwsystem-0.0.1.411/tests/0.core/caching/test_core_caching.py +0 -197
  916. exonware_xwsystem-0.0.1.411/tests/0.core/caching/test_core_caching_installation.py +0 -34
  917. exonware_xwsystem-0.0.1.411/tests/0.core/caching/test_core_xsystem_caching.py +0 -348
  918. exonware_xwsystem-0.0.1.411/tests/0.core/cli/__init__.py +0 -7
  919. exonware_xwsystem-0.0.1.411/tests/0.core/cli/runner.py +0 -66
  920. exonware_xwsystem-0.0.1.411/tests/0.core/cli/test_core_xsystem_cli.py +0 -327
  921. exonware_xwsystem-0.0.1.411/tests/0.core/config/__init__.py +0 -7
  922. exonware_xwsystem-0.0.1.411/tests/0.core/config/runner.py +0 -66
  923. exonware_xwsystem-0.0.1.411/tests/0.core/config/test_core_xsystem_config.py +0 -332
  924. exonware_xwsystem-0.0.1.411/tests/0.core/core/__init__.py +0 -6
  925. exonware_xwsystem-0.0.1.411/tests/0.core/core/runner.py +0 -66
  926. exonware_xwsystem-0.0.1.411/tests/0.core/core/test_core_xsystem_core.py +0 -155
  927. exonware_xwsystem-0.0.1.411/tests/0.core/enterprise/__init__.py +0 -15
  928. exonware_xwsystem-0.0.1.411/tests/0.core/enterprise/runner.py +0 -86
  929. exonware_xwsystem-0.0.1.411/tests/0.core/enterprise/test_core_xsystem_enterprise.py +0 -283
  930. exonware_xwsystem-0.0.1.411/tests/0.core/http_client/__init__.py +0 -6
  931. exonware_xwsystem-0.0.1.411/tests/0.core/http_client/runner.py +0 -245
  932. exonware_xwsystem-0.0.1.411/tests/0.core/http_client/test_core_xsystem_http.py +0 -379
  933. exonware_xwsystem-0.0.1.411/tests/0.core/io/runner.py +0 -356
  934. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_io_modular_imports.py +0 -33
  935. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_serialization_fixed_features.py +0 -126
  936. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_io.py +0 -521
  937. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_io_archive.py +0 -373
  938. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_io_serialization_comprehensive.py +0 -494
  939. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_serialization.py +0 -389
  940. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_serialization_record_ops_core.py +0 -181
  941. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_yaml_import_behavior.py +0 -120
  942. exonware_xwsystem-0.0.1.411/tests/0.core/ipc/__init__.py +0 -7
  943. exonware_xwsystem-0.0.1.411/tests/0.core/ipc/runner.py +0 -66
  944. exonware_xwsystem-0.0.1.411/tests/0.core/ipc/test_core_xsystem_ipc.py +0 -366
  945. exonware_xwsystem-0.0.1.411/tests/0.core/ipc/test_core_xwsystem_ipc.py +0 -366
  946. exonware_xwsystem-0.0.1.411/tests/0.core/monitoring/__init__.py +0 -6
  947. exonware_xwsystem-0.0.1.411/tests/0.core/monitoring/runner.py +0 -269
  948. exonware_xwsystem-0.0.1.411/tests/0.core/monitoring/test_core_xsystem_monitoring.py +0 -481
  949. exonware_xwsystem-0.0.1.411/tests/0.core/operations/__init__.py +0 -2
  950. exonware_xwsystem-0.0.1.411/tests/0.core/operations/runner.py +0 -34
  951. exonware_xwsystem-0.0.1.411/tests/0.core/operations/test_core_xsystem_operations.py +0 -233
  952. exonware_xwsystem-0.0.1.411/tests/0.core/patterns/__init__.py +0 -7
  953. exonware_xwsystem-0.0.1.411/tests/0.core/patterns/runner.py +0 -66
  954. exonware_xwsystem-0.0.1.411/tests/0.core/patterns/test_core_xsystem_patterns.py +0 -357
  955. exonware_xwsystem-0.0.1.411/tests/0.core/performance/__init__.py +0 -7
  956. exonware_xwsystem-0.0.1.411/tests/0.core/performance/runner.py +0 -66
  957. exonware_xwsystem-0.0.1.411/tests/0.core/performance/test_core_xsystem_performance.py +0 -334
  958. exonware_xwsystem-0.0.1.411/tests/0.core/plugins/__init__.py +0 -7
  959. exonware_xwsystem-0.0.1.411/tests/0.core/plugins/runner.py +0 -66
  960. exonware_xwsystem-0.0.1.411/tests/0.core/plugins/test_core_xsystem_plugins.py +0 -292
  961. exonware_xwsystem-0.0.1.411/tests/0.core/runner.py +0 -591
  962. exonware_xwsystem-0.0.1.411/tests/0.core/runtime/__init__.py +0 -7
  963. exonware_xwsystem-0.0.1.411/tests/0.core/runtime/runner.py +0 -66
  964. exonware_xwsystem-0.0.1.411/tests/0.core/runtime/test_core_xsystem_runtime.py +0 -360
  965. exonware_xwsystem-0.0.1.411/tests/0.core/security/__init__.py +0 -6
  966. exonware_xwsystem-0.0.1.411/tests/0.core/security/runner.py +0 -273
  967. exonware_xwsystem-0.0.1.411/tests/0.core/security/test_core_xsystem_security.py +0 -335
  968. exonware_xwsystem-0.0.1.411/tests/0.core/shared/__init__.py +0 -2
  969. exonware_xwsystem-0.0.1.411/tests/0.core/shared/runner.py +0 -34
  970. exonware_xwsystem-0.0.1.411/tests/0.core/shared/test_core_xsystem_shared.py +0 -140
  971. exonware_xwsystem-0.0.1.411/tests/0.core/structures/__init__.py +0 -7
  972. exonware_xwsystem-0.0.1.411/tests/0.core/structures/runner.py +0 -66
  973. exonware_xwsystem-0.0.1.411/tests/0.core/structures/test_core_xsystem_structures.py +0 -374
  974. exonware_xwsystem-0.0.1.411/tests/0.core/threading_tests/__init__.py +0 -6
  975. exonware_xwsystem-0.0.1.411/tests/0.core/threading_tests/runner.py +0 -327
  976. exonware_xwsystem-0.0.1.411/tests/0.core/threading_tests/test_core_xsystem_threading.py +0 -611
  977. exonware_xwsystem-0.0.1.411/tests/0.core/utils/__init__.py +0 -7
  978. exonware_xwsystem-0.0.1.411/tests/0.core/utils/runner.py +0 -66
  979. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_auto_install.py +0 -108
  980. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_core_lazy_loading.py +0 -81
  981. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_core_xsystem_utils.py +0 -402
  982. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_core_xwsystem_utils.py +0 -402
  983. exonware_xwsystem-0.0.1.411/tests/0.core/validation/__init__.py +0 -6
  984. exonware_xwsystem-0.0.1.411/tests/0.core/validation/runner.py +0 -302
  985. exonware_xwsystem-0.0.1.411/tests/0.core/validation/test_core_xsystem_validation.py +0 -618
  986. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/__init__.py +0 -4
  987. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/conftest.py +0 -50
  988. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/runner.py +0 -84
  989. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/test_lfu_optimized.py +0 -182
  990. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/test_security.py +0 -248
  991. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/test_validation.py +0 -176
  992. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/__init__.py +0 -2
  993. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/conftest.py +0 -32
  994. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/lru_cache_tests/__init__.py +0 -2
  995. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/lru_cache_tests/test_lru_cache.py +0 -141
  996. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/runner.py +0 -94
  997. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/security_tests/__init__.py +0 -2
  998. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/security_tests/test_secure_cache.py +0 -85
  999. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/__init__.py +0 -12
  1000. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/conftest.py +0 -67
  1001. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/runner.py +0 -92
  1002. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/test_universal_codec_registry.py +0 -301
  1003. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/test_xwio_codec_integration.py +0 -143
  1004. exonware_xwsystem-0.0.1.411/tests/1.unit/config_tests/__init__.py +0 -5
  1005. exonware_xwsystem-0.0.1.411/tests/1.unit/config_tests/conftest.py +0 -51
  1006. exonware_xwsystem-0.0.1.411/tests/1.unit/config_tests/test_logging_config.py +0 -305
  1007. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/ALL_ISSUES_RESOLVED.md +0 -233
  1008. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/COMPLETENESS_REPORT.md +0 -323
  1009. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/CRITICAL_FIXES_APPLIED.md +0 -162
  1010. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/FINAL_STATUS.md +0 -280
  1011. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/FINAL_VICTORY.md +0 -295
  1012. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/FIXES_COMPLETED.md +0 -275
  1013. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/FIX_PLAN.md +0 -230
  1014. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/RENAMING_COMPLETE.md +0 -98
  1015. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/VICTORY_REPORT.md +0 -281
  1016. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/__init__.py +0 -5
  1017. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/__init__.py +0 -2
  1018. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/test_archive_files.py +0 -45
  1019. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/test_archive_format_metadata.py +0 -113
  1020. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/test_archivers.py +0 -70
  1021. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/test_base.py +0 -46
  1022. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/__init__.py +0 -2
  1023. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_base.py +0 -51
  1024. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_contracts.py +0 -36
  1025. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_registry.py +0 -76
  1026. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_simple_examples.py +0 -470
  1027. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/__init__.py +0 -2
  1028. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_atomic.py +0 -29
  1029. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_lock.py +0 -71
  1030. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_path_manager.py +0 -49
  1031. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_watcher.py +0 -90
  1032. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/conftest.py +0 -41
  1033. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/__init__.py +0 -1
  1034. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_conversion.py +0 -67
  1035. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_file.py +0 -86
  1036. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paged_source.py +0 -86
  1037. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_byte.py +0 -64
  1038. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_line.py +0 -68
  1039. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_record.py +0 -61
  1040. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_registry.py +0 -76
  1041. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_source.py +0 -100
  1042. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/filesystem_tests/__init__.py +0 -1
  1043. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/filesystem_tests/test_base.py +0 -25
  1044. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/filesystem_tests/test_local.py +0 -131
  1045. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/folder_tests/__init__.py +0 -1
  1046. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/folder_tests/test_base.py +0 -29
  1047. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/folder_tests/test_folder.py +0 -134
  1048. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/runner.py +0 -123
  1049. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/__init__.py +0 -2
  1050. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/__init__.py +0 -2
  1051. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/__init__.py +0 -2
  1052. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_bson.py +0 -35
  1053. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_cbor.py +0 -35
  1054. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_marshal.py +0 -35
  1055. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_msgpack.py +0 -35
  1056. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_pickle.py +0 -35
  1057. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_plistlib.py +0 -35
  1058. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/__init__.py +0 -2
  1059. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_dbm.py +0 -35
  1060. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_shelve.py +0 -35
  1061. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_sqlite3.py +0 -35
  1062. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/__init__.py +0 -2
  1063. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_configparser.py +0 -35
  1064. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_csv.py +0 -36
  1065. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_formdata.py +0 -33
  1066. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json.py +0 -37
  1067. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json5.py +0 -115
  1068. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_jsonlines.py +0 -124
  1069. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_multipart.py +0 -33
  1070. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_toml.py +0 -50
  1071. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_xml.py +0 -35
  1072. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_yaml.py +0 -35
  1073. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/test_base.py +0 -51
  1074. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/test_contracts.py +0 -41
  1075. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/test_registry.py +0 -58
  1076. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/__init__.py +0 -1
  1077. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/test_async_operations.py +0 -47
  1078. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/test_base.py +0 -30
  1079. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/test_codec_io.py +0 -88
  1080. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_base.py +0 -133
  1081. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_contracts.py +0 -131
  1082. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_defs.py +0 -121
  1083. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_errors.py +0 -87
  1084. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_facade.py +0 -76
  1085. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/__init__.py +0 -6
  1086. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/runner.py +0 -123
  1087. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/test_diff.py +0 -254
  1088. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/test_merge.py +0 -286
  1089. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/test_patch.py +0 -306
  1090. exonware_xwsystem-0.0.1.411/tests/1.unit/patterns_tests/__init__.py +0 -5
  1091. exonware_xwsystem-0.0.1.411/tests/1.unit/patterns_tests/conftest.py +0 -46
  1092. exonware_xwsystem-0.0.1.411/tests/1.unit/patterns_tests/test_handler_factory.py +0 -88
  1093. exonware_xwsystem-0.0.1.411/tests/1.unit/performance_tests/__init__.py +0 -5
  1094. exonware_xwsystem-0.0.1.411/tests/1.unit/performance_tests/conftest.py +0 -56
  1095. exonware_xwsystem-0.0.1.411/tests/1.unit/performance_tests/test_threading_performance.py +0 -328
  1096. exonware_xwsystem-0.0.1.411/tests/1.unit/security_tests/conftest.py +0 -47
  1097. exonware_xwsystem-0.0.1.411/tests/1.unit/security_tests/test_crypto_comprehensive.py +0 -428
  1098. exonware_xwsystem-0.0.1.411/tests/1.unit/security_tests/test_input_validation.py +0 -397
  1099. exonware_xwsystem-0.0.1.411/tests/1.unit/security_tests/test_path_validator.py +0 -397
  1100. exonware_xwsystem-0.0.1.411/tests/1.unit/security_tests/test_security_edge_cases.py +0 -110
  1101. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/__init__.py +0 -5
  1102. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/conftest.py +0 -60
  1103. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/multilingual_emoji_test.py +0 -165
  1104. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/runner.py +0 -74
  1105. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_all_serializers.py +0 -716
  1106. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_bson_debug.py +0 -95
  1107. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_complete_optimization.py +0 -374
  1108. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_final_optimization.py +0 -172
  1109. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_new_serializers.py +0 -325
  1110. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_optimization_progress.py +0 -174
  1111. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_optimization_simple.py +0 -130
  1112. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_optimizations.py +0 -304
  1113. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_serialization_basic_features.py +0 -245
  1114. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_serialization_security_performance.py +0 -692
  1115. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_universal_options.py +0 -271
  1116. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_xserialization.py +0 -304
  1117. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/__init__.py +0 -2
  1118. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/conftest.py +0 -4
  1119. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/runner.py +0 -36
  1120. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_base.py +0 -61
  1121. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_contracts.py +0 -75
  1122. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_defs.py +0 -87
  1123. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_errors.py +0 -114
  1124. exonware_xwsystem-0.0.1.411/tests/1.unit/structures_tests/__init__.py +0 -5
  1125. exonware_xwsystem-0.0.1.411/tests/1.unit/structures_tests/conftest.py +0 -63
  1126. exonware_xwsystem-0.0.1.411/tests/1.unit/structures_tests/test_circular_detector.py +0 -88
  1127. exonware_xwsystem-0.0.1.411/tests/1.unit/test_advanced_http.py +0 -491
  1128. exonware_xwsystem-0.0.1.411/tests/1.unit/test_async_io.py +0 -294
  1129. exonware_xwsystem-0.0.1.411/tests/1.unit/test_caching.py +0 -485
  1130. exonware_xwsystem-0.0.1.411/tests/1.unit/test_core_components.py +0 -160
  1131. exonware_xwsystem-0.0.1.411/tests/1.unit/test_direct_mapping.py +0 -78
  1132. exonware_xwsystem-0.0.1.411/tests/1.unit/test_dynamic_mapping.py +0 -64
  1133. exonware_xwsystem-0.0.1.411/tests/1.unit/test_ipc.py +0 -489
  1134. exonware_xwsystem-0.0.1.411/tests/1.unit/test_standalone_mapping.py +0 -98
  1135. exonware_xwsystem-0.0.1.411/tests/1.unit/threading_tests/__init__.py +0 -5
  1136. exonware_xwsystem-0.0.1.411/tests/1.unit/threading_tests/conftest.py +0 -50
  1137. exonware_xwsystem-0.0.1.411/tests/1.unit/threading_tests/debug_imports.py +0 -72
  1138. exonware_xwsystem-0.0.1.411/tests/1.unit/threading_tests/test_threading_utilities.py +0 -261
  1139. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/__init__.py +0 -13
  1140. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/dt/__init__.py +0 -7
  1141. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/dt/test_core_xwsystem_utls_dt.py +0 -230
  1142. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/runner.py +0 -37
  1143. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/test_lazy_hook_early_installation.py +0 -269
  1144. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/test_lazy_mode_example.py +0 -114
  1145. exonware_xwsystem-0.0.1.411/tests/2.integration/caching/__init__.py +0 -2
  1146. exonware_xwsystem-0.0.1.411/tests/2.integration/caching/conftest.py +0 -20
  1147. exonware_xwsystem-0.0.1.411/tests/2.integration/caching/runner.py +0 -94
  1148. exonware_xwsystem-0.0.1.411/tests/2.integration/caching/test_end_to_end.py +0 -177
  1149. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/__init__.py +0 -2
  1150. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_end_to_end.py +0 -105
  1151. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_format_conversion_workflow.py +0 -58
  1152. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_io_codec_integration.py +0 -705
  1153. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_lazy_hook_integration.py +0 -148
  1154. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_yaml_lazy_integration.py +0 -128
  1155. exonware_xwsystem-0.0.1.411/tests/2.integration/test_caching_integration.py +0 -270
  1156. exonware_xwsystem-0.0.1.411/tests/2.integration/test_module_interactions.py +0 -150
  1157. exonware_xwsystem-0.0.1.411/tests/2.integration/test_security_integration.py +0 -400
  1158. exonware_xwsystem-0.0.1.411/tests/3.advance/__init__.py +0 -5
  1159. exonware_xwsystem-0.0.1.411/tests/3.advance/caching/__init__.py +0 -2
  1160. exonware_xwsystem-0.0.1.411/tests/3.advance/caching/runner.py +0 -129
  1161. exonware_xwsystem-0.0.1.411/tests/3.advance/caching/test_performance.py +0 -95
  1162. exonware_xwsystem-0.0.1.411/tests/3.advance/caching/test_security.py +0 -94
  1163. exonware_xwsystem-0.0.1.411/tests/3.advance/conftest.py +0 -20
  1164. exonware_xwsystem-0.0.1.411/tests/3.advance/runner.py +0 -161
  1165. exonware_xwsystem-0.0.1.411/tests/3.advance/test_caching_extensibility.py +0 -171
  1166. exonware_xwsystem-0.0.1.411/tests/3.advance/test_caching_performance.py +0 -150
  1167. exonware_xwsystem-0.0.1.411/tests/3.advance/test_caching_security.py +0 -121
  1168. exonware_xwsystem-0.0.1.411/tests/__init__.py +0 -9
  1169. exonware_xwsystem-0.0.1.411/tests/conftest.py +0 -508
  1170. exonware_xwsystem-0.0.1.411/tests/performance/benchmark_suite.py +0 -608
  1171. exonware_xwsystem-0.0.1.411/tests/pytest.ini +0 -45
  1172. exonware_xwsystem-0.0.1.411/tests/runner.py +0 -294
  1173. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/.github/workflows/publish.yml +0 -0
  1174. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/LICENSE +0 -0
  1175. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/src/exonware/xwsystem/io/serialization/formats/binary/__init__.py +0 -0
  1176. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/src/exonware/xwsystem/io/serialization/formats/database/__init__.py +0 -0
  1177. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/0.core/README.md +0 -0
  1178. {exonware_xwsystem-0.0.1.411/tests/0.core/serialization → exonware_xwsystem-0.1.0.3/tests/0.core/io}/data/config.json +0 -0
  1179. {exonware_xwsystem-0.0.1.411/tests/0.core/serialization → exonware_xwsystem-0.1.0.3/tests/0.core/io}/data/config.yaml +0 -0
  1180. {exonware_xwsystem-0.0.1.411/tests/0.core/serialization → exonware_xwsystem-0.1.0.3/tests/0.core/io}/data/test_data.json +0 -0
  1181. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/0.core/serialization/data/user_data.pkl +0 -0
  1182. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/1.unit/codec_tests/runner_out.md +0 -0
  1183. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/1.unit/io_tests/README.md +0 -0
  1184. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/1.unit/io_tests/runner_out.md +0 -0
  1185. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/1.unit/operations_tests/runner_out.md +0 -0
  1186. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/1.unit/serialization_tests/test_serialization_worst_case_scenarios.py +0 -0
  1187. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/1.unit/utils/dt/runner.py +0 -0
  1188. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/1.unit/utils/runner_out.md +0 -0
  1189. {exonware_xwsystem-0.0.1.411 → exonware_xwsystem-0.1.0.3}/tests/README.md +0 -0
@@ -0,0 +1,43 @@
1
+ name: xwsystem Compliance
2
+
3
+ on:
4
+ pull_request:
5
+ paths:
6
+ - "xwsystem/**"
7
+ - "tools/ci/python_scripts/**"
8
+ push:
9
+ branches: ["main"]
10
+ paths:
11
+ - "xwsystem/**"
12
+ - "tools/ci/python_scripts/**"
13
+
14
+ jobs:
15
+ compliance:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+
20
+ - name: Set up Python
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: "3.12"
24
+
25
+ - name: Install dev dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ pip install -r xwsystem/requirements.txt
29
+
30
+ - name: Compliance checks (structure/docs/traceability/headers)
31
+ run: |
32
+ python xwsystem/tests/_tools/compliance_check.py
33
+
34
+ - name: Format & type checks
35
+ run: |
36
+ black --check xwsystem/src xwsystem/tests
37
+ isort --check-only xwsystem/src xwsystem/tests
38
+ mypy xwsystem/src
39
+
40
+ - name: Test suite
41
+ run: |
42
+ python -m pytest xwsystem/tests
43
+
@@ -0,0 +1,36 @@
1
+ name: Traceability Matrix
2
+
3
+ on:
4
+ pull_request:
5
+ paths:
6
+ - "xwsystem/docs/logs/plans/**"
7
+ - "xwsystem/docs/compliance/traceability/**"
8
+ - "tools/ci/python_scripts/generate_trace_matrix.py"
9
+ - "xwsystem/.github/workflows/traceability.yml"
10
+ push:
11
+ branches: ["main"]
12
+ paths:
13
+ - "xwsystem/docs/logs/plans/**"
14
+ - "xwsystem/docs/compliance/traceability/**"
15
+ - "tools/ci/python_scripts/generate_trace_matrix.py"
16
+ - "xwsystem/.github/workflows/traceability.yml"
17
+
18
+ jobs:
19
+ traceability:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: "3.12"
28
+
29
+ - name: Generate traceability matrix (xwsystem)
30
+ run: |
31
+ python tools/ci/python_scripts/generate_trace_matrix.py --package xwsystem
32
+
33
+ - name: Fail if traceability matrix is stale
34
+ run: |
35
+ git diff --exit-code xwsystem/docs/compliance/traceability
36
+
@@ -0,0 +1,288 @@
1
+ # ========================================
2
+ # eXonware xSystem .gitignore
3
+ # ========================================
4
+
5
+ # CI/CD Tools (keep private)
6
+ .ci/
7
+
8
+ # Migration/legacy directories (may contain paths too long for Windows)
9
+ MIGRAT/
10
+ MIGRATE/
11
+
12
+ # ========================================
13
+ # Python
14
+ # ========================================
15
+ __pycache__/
16
+ *.py[cod]
17
+ *$py.class
18
+ *.so
19
+ .Python
20
+ build/
21
+ develop-eggs/
22
+ dist/
23
+ downloads/
24
+ eggs/
25
+ .eggs/
26
+ lib/
27
+ lib64/
28
+ parts/
29
+ sdist/
30
+ var/
31
+ wheels/
32
+ pip-wheel-metadata/
33
+ share/python-wheels/
34
+ *.egg-info/
35
+ .installed.cfg
36
+ *.egg
37
+ MANIFEST
38
+
39
+ # PyInstaller
40
+ *.manifest
41
+ *.spec
42
+
43
+ # Installer logs
44
+ pip-log.txt
45
+ pip-delete-this-directory.txt
46
+
47
+ # Unit test / coverage reports
48
+ htmlcov/
49
+ .tox/
50
+ .nox/
51
+ .coverage
52
+ .coverage.*
53
+ .cache
54
+ nosetests.xml
55
+ coverage.xml
56
+ *.cover
57
+ *.py,cover
58
+ .hypothesis/
59
+ .pytest_cache/
60
+ cover/
61
+
62
+ # Translations
63
+ *.mo
64
+ *.pot
65
+
66
+ # Django stuff
67
+ *.log
68
+ local_settings.py
69
+ db.sqlite3
70
+ db.sqlite3-journal
71
+
72
+ # Flask stuff
73
+ instance/
74
+ .webassets-cache
75
+
76
+ # Scrapy stuff
77
+ .scrapy
78
+
79
+ # Sphinx documentation
80
+ docs/_build/
81
+
82
+ # PyBuilder
83
+ .pybuilder/
84
+ target/
85
+
86
+ # Jupyter Notebook
87
+ .ipynb_checkpoints
88
+
89
+ # IPython
90
+ profile_default/
91
+ ipython_config.py
92
+
93
+ # pyenv
94
+ # For a library or package, you might want to ignore these files since the code is
95
+ # intended to run in multiple environments; otherwise, check them in:
96
+ # .python-version
97
+
98
+ # pipenv
99
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
100
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
101
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
102
+ # install all needed dependencies.
103
+ #Pipfile.lock
104
+
105
+ # poetry
106
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
107
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108
+ # commonly ignored for libraries.
109
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
110
+ #poetry.lock
111
+
112
+ # pdm
113
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
114
+ #pdm.lock
115
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
116
+ # in version control.
117
+ # https://pdm.fming.dev/#use-with-ide
118
+ .pdm.toml
119
+
120
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
121
+ __pypackages__/
122
+
123
+ # Celery stuff
124
+ celerybeat-schedule
125
+ celerybeat.pid
126
+
127
+ # SageMath parsed files
128
+ *.sage.py
129
+
130
+ # Environments
131
+ .env
132
+ .venv
133
+ env/
134
+ venv/
135
+ ENV/
136
+ env.bak/
137
+ venv.bak/
138
+
139
+ # Spyder project settings
140
+ .spyderproject
141
+ .spyproject
142
+
143
+ # Rope project settings
144
+ .ropeproject
145
+
146
+ # mkdocs documentation
147
+ /site
148
+
149
+ # mypy
150
+ .mypy_cache/
151
+ .dmypy.json
152
+ dmypy.json
153
+
154
+ # Pyre type checker
155
+ .pyre/
156
+
157
+ # pytype static type analyzer
158
+ .pytype/
159
+
160
+ # Cython debug symbols
161
+ cython_debug/
162
+
163
+ # ========================================
164
+ # IDEs and Editors
165
+ # ========================================
166
+
167
+ # Visual Studio Code
168
+ .vscode/
169
+ !.vscode/settings.json
170
+ !.vscode/tasks.json
171
+ !.vscode/launch.json
172
+ !.vscode/extensions.json
173
+ !.vscode/*.code-snippets
174
+
175
+ # Local History for Visual Studio Code
176
+ .history/
177
+
178
+ # Built Visual Studio Code Extensions
179
+ *.vsix
180
+
181
+ # PyCharm
182
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
183
+ # be added to the global gitignore or merged into this file. For a more nuclear
184
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
185
+ .idea/
186
+
187
+ # Sublime Text
188
+ *.tmlanguage.cache
189
+ *.tmPreferences.cache
190
+ *.stTheme.cache
191
+ *.sublime-workspace
192
+ *.sublime-project
193
+
194
+ # Vim
195
+ *~
196
+ *.swp
197
+ *.swo
198
+ *tmp
199
+
200
+ # Emacs
201
+ *~
202
+ \#*\#
203
+ /.emacs.desktop
204
+ /.emacs.desktop.lock
205
+ *.elc
206
+ auto-save-list
207
+ tramp
208
+ .\#*
209
+
210
+ # ========================================
211
+ # Operating Systems
212
+ # ========================================
213
+
214
+ # Windows
215
+ Thumbs.db
216
+ Thumbs.db:encryptable
217
+ ehthumbs.db
218
+ ehthumbs_vista.db
219
+ *.stackdump
220
+ [Dd]esktop.ini
221
+ $RECYCLE.BIN/
222
+ *.cab
223
+ *.msi
224
+ *.msix
225
+ *.msm
226
+ *.msp
227
+ *.lnk
228
+
229
+ # macOS
230
+ .DS_Store
231
+ .AppleDouble
232
+ .LSOverride
233
+ Icon
234
+ ._*
235
+ .DocumentRevisions-V100
236
+ .fseventsd
237
+ .Spotlight-V100
238
+ .TemporaryItems
239
+ .Trashes
240
+ .VolumeIcon.icns
241
+ .com.apple.timemachine.donotpresent
242
+ .AppleDB
243
+ .AppleDesktop
244
+ Network Trash Folder
245
+ Temporary Items
246
+ .apdisk
247
+
248
+ # Linux
249
+ *~
250
+ .fuse_hidden*
251
+ .directory
252
+ .Trash-*
253
+ .nfs*
254
+
255
+ # ========================================
256
+ # Development Tools
257
+ # ========================================
258
+
259
+ # Backup files
260
+ *.bak
261
+ *.backup
262
+ *.tmp
263
+ *.temp
264
+
265
+ # Log files
266
+ *.log
267
+ logs/
268
+
269
+ # Database files
270
+ *.sqlite
271
+ *.sqlite3
272
+ *.db
273
+
274
+ # Configuration files with secrets
275
+ config.ini
276
+ secrets.json
277
+ .secrets
278
+ credentials.json
279
+
280
+ # Local environment files
281
+ .env.local
282
+ .env.development.local
283
+ .env.test.local
284
+ .env.production.local
285
+
286
+ # xwlazy generated files (should be in ~/.xwlazy/ but ignore in case of old behavior)
287
+ xwlazy.lock.toml
288
+ xwlazy_sbom.toml