exonware-xwsystem 0.0.1.407__tar.gz → 0.0.1.408__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/PKG-INFO +3 -3
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/README.md +2 -2
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/pyproject.toml +1 -1
- exonware_xwsystem-0.0.1.408/src/exonware/__init__.py +40 -0
- exonware_xwsystem-0.0.1.408/src/exonware/conf.py +119 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/__init__.py +18 -159
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/bloom_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/cache_manager.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/conditional.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/decorators.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/disk_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/distributed.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/events.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/eviction_strategies.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/fluent.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/integrity.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/lfu_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/lfu_optimized.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/lru_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/memory_bounded.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/metrics_exporter.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/observable_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/pluggable_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/rate_limiter.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/read_through.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/secure_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/serializable.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/stats.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/tagging.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/ttl_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/two_tier_cache.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/utils.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/validation.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/warming.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/write_behind.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/args.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/colors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/console.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/progress.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/prompts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/cli/tables.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/conf.py +1 -21
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/defaults.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/logging.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/logging_setup.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/performance.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/advanced_client.py +5 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/client.py +5 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/http/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/archive.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/archive_files.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/archivers.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/codec_integration.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/compression.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/brotli_format.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/lz4_format.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/rar.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/sevenzip.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/squashfs_format.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/tar.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/wim_format.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/zip.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/zpaq_format.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/archive/formats/zstandard.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/codec/registry.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/lock.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/watcher.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/facade.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/conversion.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/file.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paged_source.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/byte_paging.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/line_paging.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/record_paging.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/paging/registry.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/file/source.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/filesystem/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/filesystem/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/filesystem/local.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/folder/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/folder/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/folder/folder.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/auto_serializer.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/base.py +2 -2
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/flyweight.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/format_detector.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/bson.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/cbor.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/marshal.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/msgpack.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/pickle.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/plistlib.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/dbm.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/shelve.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/sqlite3.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/configparser.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/csv.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/formdata.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/json.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/json5.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/jsonlines.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/multipart.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/toml.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/xml.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/yaml.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/registry.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/serializer.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/utils/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/utils/path_ops.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/async_operations.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/stream/codec_io.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/async_fabric.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/errors.py +1 -1
- exonware_xwsystem-0.0.1.408/src/exonware/xwsystem/lazy_bootstrap.py +79 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/performance_manager_generic.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/system_monitor.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/tracing.py +17 -15
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/tracker.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/diff.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/merge.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/patch.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/registry.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/plugins/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/env.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/runtime/reflection.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/auth.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/crypto.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/hazmat.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/shared/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/async_primitives.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/formatting.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/humanize.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/parsing.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/dt/timezone_utils.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/test_runner.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/utils_contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/__init__.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/base.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/contracts.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/declarative.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/defs.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/errors.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/fluent_validator.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/version.py +2 -2
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/xwsystem.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_auto_install.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_core_lazy_loading.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_core_xsystem_utils.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/test_core_xwsystem_utils.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_direct_mapping.py +2 -2
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_dynamic_mapping.py +2 -2
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/test_lazy_hook_early_installation.py +25 -66
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/test_lazy_mode_example.py +1 -1
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_lazy_hook_integration.py +5 -11
- exonware_xwsystem-0.0.1.407/src/exonware/__init__.py +0 -31
- exonware_xwsystem-0.0.1.407/src/exonware/conf.py +0 -179
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/_lazy_bootstrap.py +0 -77
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/ARCHITECTURE.md +0 -820
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/__init__.py +0 -268
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/config.py +0 -163
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/lazy_base.py +0 -465
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/lazy_contracts.py +0 -290
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/lazy_core.py +0 -2248
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/lazy_errors.py +0 -253
- exonware_xwsystem-0.0.1.407/src/exonware/xwsystem/utils/lazy_package/lazy_state.py +0 -86
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/.github/workflows/publish.yml +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/.gitignore +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/LICENSE +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/caching/USAGE_GUIDE.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/performance_modes.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/config/version_manager.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/atomic.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/common/path_manager.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/binary/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/database/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/io/serialization/formats/text/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/message_queue.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/pipes.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/process_manager.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/process_pool.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/ipc/shared_memory.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/error_recovery.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/memory_monitor.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/metrics.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/performance_monitor.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/monitoring/performance_validator.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/contracts.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/operations/errors.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/context_manager.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/dynamic_facade.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/handler_factory.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/import_registry.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/patterns/object_pool.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/path_validator.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/security/resource_limits.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/circular_detector.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/structures/tree_walker.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/locks.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/threading/safe_factory.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/utils/paths.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/data_validator.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/validation/type_safety.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/xwsystem_wrapper.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/README.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/runner_out.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_caching_standalone.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_core_caching.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_core_caching_installation.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/caching/test_core_xsystem_caching.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/cli/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/cli/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/cli/test_core_xsystem_cli.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/config/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/config/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/config/test_core_xsystem_config.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/core/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/core/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/core/test_core_xsystem_core.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/enterprise/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/enterprise/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/enterprise/test_core_xsystem_enterprise.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/http/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/http/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/http/test_core_xsystem_http.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/test_core_io_modular_imports.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/io/test_core_xsystem_io.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/test_core_xsystem_ipc.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/ipc/test_core_xwsystem_ipc.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/monitoring/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/monitoring/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/monitoring/test_core_xsystem_monitoring.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/patterns/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/patterns/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/patterns/test_core_xsystem_patterns.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/performance/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/performance/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/performance/test_core_xsystem_performance.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/plugins/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/plugins/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/plugins/test_core_xsystem_plugins.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/runtime/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/runtime/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/runtime/test_core_xsystem_runtime.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/security/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/security/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/security/test_core_xsystem_security.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/config.json +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/config.yaml +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/test_data.json +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/data/user_data.pkl +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/test_core_serialization_fixed_features.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/serialization/test_core_xsystem_serialization.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/structures/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/structures/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/structures/test_core_xsystem_structures.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/threading_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/threading_tests/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/threading_tests/test_core_xsystem_threading.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/utils/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/validation/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/validation/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/0.core/validation/test_core_xsystem_validation.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/lru_cache_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/lru_cache_tests/test_lru_cache.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/security_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching/security_tests/test_secure_cache.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/test_lfu_optimized.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/test_security.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/caching_tests/test_validation.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/runner_out.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/test_universal_codec_registry.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/codec_tests/test_xwio_codec_integration.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/config_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/config_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/config_tests/test_logging_config.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/ALL_ISSUES_RESOLVED.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/COMPLETENESS_REPORT.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/CRITICAL_FIXES_APPLIED.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FINAL_STATUS.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FINAL_VICTORY.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FIXES_COMPLETED.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/FIX_PLAN.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/README.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/RENAMING_COMPLETE.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/VICTORY_REPORT.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_archive_files.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_archive_format_metadata.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_archivers.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/archive_tests/test_base.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_base.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_contracts.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_registry.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/codec_tests/test_simple_examples.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/common_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/common_tests/test_atomic.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/file_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/filesystem_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/folder_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/runner_out.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json5.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_jsonlines.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_yaml.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/test_base.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/test_contracts.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/serialization_tests/test_registry.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/stream_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_base.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_contracts.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_defs.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_errors.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/io_tests/test_facade.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/runner_out.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/test_diff.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/test_merge.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/operations_tests/test_patch.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/patterns_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/patterns_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/patterns_tests/test_handler_factory.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/performance_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/performance_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/performance_tests/test_threading_performance.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_crypto_comprehensive.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_input_validation.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_path_validator.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/security_tests/test_security_edge_cases.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/multilingual_emoji_test.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_all_serializers.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_bson_debug.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_complete_optimization.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_final_optimization.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_new_serializers.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_optimization_progress.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_optimization_simple.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_optimizations.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_serialization_basic_features.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_serialization_security_performance.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_serialization_worst_case_scenarios.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_universal_options.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/serialization_tests/test_xserialization.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/structures_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/structures_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/structures_tests/test_circular_detector.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_advanced_http.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_async_io.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_caching.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_core_components.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_ipc.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/test_standalone_mapping.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/debug_imports.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/threading_tests/test_threading_utilities.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/dt/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/dt/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/dt/test_core_xwsystem_utls_dt.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/1.unit/utils/runner_out.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/caching/test_end_to_end.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_end_to_end.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_format_conversion_workflow.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/io_tests/test_io_codec_integration.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/test_caching_integration.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/test_module_interactions.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/2.integration/test_security_integration.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/test_performance.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/caching/test_security.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/runner.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/test_caching_extensibility.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/test_caching_performance.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/3.advance/test_caching_security.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/README.md +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/__init__.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/conftest.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/performance/benchmark_suite.py +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/pytest.ini +0 -0
- {exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/tests/runner.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: exonware-xwsystem
|
|
3
|
-
Version: 0.0.1.
|
|
3
|
+
Version: 0.0.1.408
|
|
4
4
|
Summary: Enterprise-grade Python framework with AI-powered performance optimization, 24 serialization formats, military-grade security, automatic memory leak prevention, circuit breakers, and production monitoring - replaces 50+ dependencies
|
|
5
5
|
Project-URL: Homepage, https://exonware.com
|
|
6
6
|
Project-URL: Repository, https://github.com/exonware/xwsystem
|
|
@@ -78,8 +78,8 @@ Description-Content-Type: text/markdown
|
|
|
78
78
|
**Company:** eXonware.com
|
|
79
79
|
**Author:** Eng. Muhammad AlShehri
|
|
80
80
|
**Email:** connect@exonware.com
|
|
81
|
-
**Version:** 0.0.1.
|
|
82
|
-
**Updated:**
|
|
81
|
+
**Version:** 0.0.1.408
|
|
82
|
+
**Updated:** 20-Nov-2025
|
|
83
83
|
|
|
84
84
|
## 🎯 **The Python Revolution Starts Here**
|
|
85
85
|
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
exonware package - Enterprise-grade Python framework ecosystem
|
|
3
|
+
|
|
4
|
+
Company: eXonware.com
|
|
5
|
+
Author: Eng. Muhammad AlShehri
|
|
6
|
+
Email: connect@exonware.com
|
|
7
|
+
Version: 0.0.1.408
|
|
8
|
+
Generation Date: September 04, 2025
|
|
9
|
+
|
|
10
|
+
This is a namespace package allowing multiple exonware subpackages
|
|
11
|
+
to coexist (xwsystem, xwnode, xwdata, etc.)
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
# Make this a namespace package
|
|
15
|
+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
|
16
|
+
|
|
17
|
+
import importlib.metadata
|
|
18
|
+
from pathlib import Path
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def _load_version() -> str:
|
|
22
|
+
try:
|
|
23
|
+
return importlib.metadata.version("exonware-xwsystem")
|
|
24
|
+
except importlib.metadata.PackageNotFoundError:
|
|
25
|
+
version_path = Path(__file__).parent / "xwsystem" / "version.py"
|
|
26
|
+
ns: dict = {}
|
|
27
|
+
try:
|
|
28
|
+
exec(version_path.read_text(encoding="utf-8"), ns) # noqa: S102
|
|
29
|
+
except FileNotFoundError as exc: # pragma: no cover
|
|
30
|
+
raise ImportError(
|
|
31
|
+
f"Version metadata unavailable at {version_path}."
|
|
32
|
+
) from exc
|
|
33
|
+
return ns["__version__"]
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
__version__ = _load_version()
|
|
37
|
+
|
|
38
|
+
__author__ = 'Eng. Muhammad AlShehri'
|
|
39
|
+
__email__ = 'connect@exonware.com'
|
|
40
|
+
__company__ = 'eXonware.com'
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
#exonware/conf.py
|
|
2
|
+
"""
|
|
3
|
+
Public-facing configuration for all exonware packages.
|
|
4
|
+
|
|
5
|
+
This module is self-contained and can be imported without triggering
|
|
6
|
+
any library initialization. It provides lazy mode configuration that
|
|
7
|
+
works across all exonware packages (xwsystem, xwnode, xwdata, etc.).
|
|
8
|
+
|
|
9
|
+
Company: eXonware.com
|
|
10
|
+
Author: Eng. Muhammad AlShehri
|
|
11
|
+
Email: connect@exonware.com
|
|
12
|
+
Version: 0.0.1.408
|
|
13
|
+
Generation Date: 11-Nov-2025
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
|
|
18
|
+
import sys
|
|
19
|
+
import types
|
|
20
|
+
|
|
21
|
+
# CRITICAL: Set up warning filter BEFORE any other imports to catch early warnings
|
|
22
|
+
# This suppresses the decimal module mpd_setminalloc warning that appears on stderr
|
|
23
|
+
_original_stderr = sys.stderr
|
|
24
|
+
|
|
25
|
+
class _FilteredStderr:
|
|
26
|
+
"""Stderr wrapper that filters out decimal module warnings."""
|
|
27
|
+
def __init__(self, original_stderr):
|
|
28
|
+
self._original = original_stderr
|
|
29
|
+
# Match various forms of the decimal warning
|
|
30
|
+
self._filter_patterns = [
|
|
31
|
+
"mpd_setminalloc",
|
|
32
|
+
"MPD_MINALLOC",
|
|
33
|
+
"ignoring request to set",
|
|
34
|
+
"libmpdec",
|
|
35
|
+
"context.c:57"
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
def write(self, text: str) -> int:
|
|
39
|
+
"""Write to stderr, filtering out unwanted warnings."""
|
|
40
|
+
# Check if this line contains any of our filter patterns
|
|
41
|
+
if any(pattern.lower() in text.lower() for pattern in self._filter_patterns):
|
|
42
|
+
return len(text) # Pretend we wrote it, but don't actually write
|
|
43
|
+
return self._original.write(text)
|
|
44
|
+
|
|
45
|
+
def flush(self) -> None:
|
|
46
|
+
"""Flush the original stderr."""
|
|
47
|
+
self._original.flush()
|
|
48
|
+
|
|
49
|
+
def reconfigure(self, *args, **kwargs):
|
|
50
|
+
"""Handle reconfigure calls - update original reference and reapply filter."""
|
|
51
|
+
# Update the original reference after reconfigure
|
|
52
|
+
result = self._original.reconfigure(*args, **kwargs)
|
|
53
|
+
# Ensure filter stays active
|
|
54
|
+
if sys.stderr is not self:
|
|
55
|
+
sys.stderr = self # type: ignore[assignment]
|
|
56
|
+
return result
|
|
57
|
+
|
|
58
|
+
def __getattr__(self, name: str):
|
|
59
|
+
"""Delegate all other attributes to original stderr."""
|
|
60
|
+
return getattr(self._original, name)
|
|
61
|
+
|
|
62
|
+
# Set up filter immediately (default: suppress warnings)
|
|
63
|
+
_filtered_stderr = _FilteredStderr(_original_stderr)
|
|
64
|
+
sys.stderr = _filtered_stderr # type: ignore[assignment]
|
|
65
|
+
|
|
66
|
+
# CRITICAL: Configure UTF-8 encoding on Windows for emoji support
|
|
67
|
+
# This ensures emojis work automatically when exonware.conf is imported
|
|
68
|
+
# Root cause: Windows console defaults to cp1252 encoding, which can't encode emojis
|
|
69
|
+
# Trigger: This code runs at import time, before any prints, ensuring UTF-8 is active
|
|
70
|
+
if sys.platform == "win32":
|
|
71
|
+
try:
|
|
72
|
+
# Try to reconfigure stdout/stderr to UTF-8 (Python 3.7+)
|
|
73
|
+
if hasattr(sys.stdout, "reconfigure"):
|
|
74
|
+
try:
|
|
75
|
+
sys.stdout.reconfigure(encoding="utf-8")
|
|
76
|
+
except (ValueError, OSError):
|
|
77
|
+
pass # May fail if already reconfigured or not supported
|
|
78
|
+
if hasattr(sys.stderr, "reconfigure"):
|
|
79
|
+
try:
|
|
80
|
+
sys.stderr.reconfigure(encoding="utf-8")
|
|
81
|
+
except (ValueError, OSError):
|
|
82
|
+
pass # May fail if already reconfigured or not supported
|
|
83
|
+
except Exception:
|
|
84
|
+
# Fallback: wrap stdout/stderr with UTF-8 TextIOWrapper
|
|
85
|
+
import io
|
|
86
|
+
try:
|
|
87
|
+
if hasattr(sys.stdout, "buffer"):
|
|
88
|
+
sys.stdout = io.TextIOWrapper(
|
|
89
|
+
sys.stdout.buffer, encoding="utf-8", errors="replace", line_buffering=True
|
|
90
|
+
)
|
|
91
|
+
if hasattr(_filtered_stderr._original, "buffer"):
|
|
92
|
+
_filtered_stderr._original = io.TextIOWrapper(
|
|
93
|
+
_filtered_stderr._original.buffer, encoding="utf-8", errors="replace", line_buffering=True
|
|
94
|
+
)
|
|
95
|
+
except Exception:
|
|
96
|
+
pass # Silently fail if wrapping is not possible
|
|
97
|
+
|
|
98
|
+
try:
|
|
99
|
+
# Try new path first (exonware.xwlazy.host.conf)
|
|
100
|
+
from exonware.xwlazy.host.conf import get_conf_module
|
|
101
|
+
except ImportError:
|
|
102
|
+
try:
|
|
103
|
+
# Fall back to old path (xwlazy.lazy.host_conf) for installed packages
|
|
104
|
+
from xwlazy.lazy.host_conf import get_conf_module
|
|
105
|
+
except ImportError: # xwlazy not installed yet
|
|
106
|
+
class _UnavailableConf(types.ModuleType):
|
|
107
|
+
def __getattr__(self, name: str):
|
|
108
|
+
raise RuntimeError(
|
|
109
|
+
"Lazy configuration requires 'exonware-xwlazy'. "
|
|
110
|
+
"Install it via 'pip install exonware-xwlazy' to enable lazy mode."
|
|
111
|
+
)
|
|
112
|
+
_module_instance = _UnavailableConf(__name__, __doc__)
|
|
113
|
+
else:
|
|
114
|
+
_module_instance = get_conf_module(__name__, __doc__)
|
|
115
|
+
else:
|
|
116
|
+
_module_instance = get_conf_module(__name__, __doc__)
|
|
117
|
+
|
|
118
|
+
sys.modules[__name__] = _module_instance
|
|
119
|
+
|
{exonware_xwsystem-0.0.1.407 → exonware_xwsystem-0.0.1.408}/src/exonware/xwsystem/__init__.py
RENAMED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Company: eXonware.com
|
|
4
4
|
Author: Eng. Muhammad AlShehri
|
|
5
5
|
Email: connect@exonware.com
|
|
6
|
-
Version: 0.0.1.
|
|
6
|
+
Version: 0.0.1.408
|
|
7
7
|
Generation Date: October 10, 2025
|
|
8
8
|
|
|
9
9
|
XWSystem - Enterprise-grade Python framework with AI-powered performance optimization.
|
|
@@ -50,6 +50,7 @@ This module provides common utilities that can be used across different
|
|
|
50
50
|
components including threading, security, I/O, data structures, and design patterns.
|
|
51
51
|
"""
|
|
52
52
|
|
|
53
|
+
import importlib
|
|
53
54
|
import logging
|
|
54
55
|
from typing import TYPE_CHECKING
|
|
55
56
|
|
|
@@ -58,103 +59,15 @@ if TYPE_CHECKING:
|
|
|
58
59
|
from typing import Any
|
|
59
60
|
|
|
60
61
|
# =============================================================================
|
|
61
|
-
#
|
|
62
|
+
# LAZY MODE INTEGRATION
|
|
62
63
|
# =============================================================================
|
|
63
|
-
#
|
|
64
|
-
#
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
#
|
|
68
|
-
|
|
69
|
-
#
|
|
70
|
-
# All lazy loading functionality consolidated into lazy_package following DEV_GUIDELINES.md
|
|
71
|
-
# Implements per-package lazy loading with automatic installation of missing dependencies.
|
|
72
|
-
|
|
73
|
-
from .utils.lazy_package import (
|
|
74
|
-
# Core classes
|
|
75
|
-
LazyLoader,
|
|
76
|
-
LazyModuleRegistry,
|
|
77
|
-
LazyModeFacade,
|
|
78
|
-
LazyPerformanceMonitor,
|
|
79
|
-
LazyInstaller,
|
|
80
|
-
LazyInstallerRegistry,
|
|
81
|
-
LazyInstallMode,
|
|
82
|
-
LazyInstallPolicy,
|
|
83
|
-
DependencyMapper,
|
|
84
|
-
LazyDiscovery,
|
|
85
|
-
LazyInstallConfig,
|
|
86
|
-
DeferredImportError,
|
|
87
|
-
LazyMetaPathFinder,
|
|
88
|
-
|
|
89
|
-
# Dataclasses
|
|
90
|
-
DependencyInfo,
|
|
91
|
-
|
|
92
|
-
# Lazy mode functions
|
|
93
|
-
register_lazy_module,
|
|
94
|
-
get_lazy_module,
|
|
95
|
-
get_loading_stats,
|
|
96
|
-
preload_frequently_used,
|
|
97
|
-
enable_lazy_mode,
|
|
98
|
-
disable_lazy_mode,
|
|
99
|
-
is_lazy_mode_enabled,
|
|
100
|
-
get_lazy_mode_stats,
|
|
101
|
-
configure_lazy_mode,
|
|
102
|
-
preload_modules,
|
|
103
|
-
optimize_lazy_mode,
|
|
104
|
-
|
|
105
|
-
# Install functions
|
|
106
|
-
enable_lazy_install,
|
|
107
|
-
disable_lazy_install,
|
|
108
|
-
is_lazy_install_enabled,
|
|
109
|
-
set_lazy_install_mode,
|
|
110
|
-
get_lazy_install_mode,
|
|
111
|
-
install_missing_package,
|
|
112
|
-
install_and_import,
|
|
113
|
-
get_lazy_install_stats,
|
|
114
|
-
get_all_lazy_install_stats,
|
|
115
|
-
lazy_import_with_install,
|
|
116
|
-
xwimport,
|
|
117
|
-
|
|
118
|
-
# Discovery functions
|
|
119
|
-
discover_dependencies,
|
|
120
|
-
get_lazy_discovery,
|
|
121
|
-
export_dependency_mappings,
|
|
122
|
-
config_package_lazy_install_enabled,
|
|
123
|
-
|
|
124
|
-
# Hook functions
|
|
125
|
-
install_import_hook,
|
|
126
|
-
uninstall_import_hook,
|
|
127
|
-
is_import_hook_installed,
|
|
128
|
-
|
|
129
|
-
# Security & Policy APIs
|
|
130
|
-
set_package_allow_list,
|
|
131
|
-
set_package_deny_list,
|
|
132
|
-
add_to_package_allow_list,
|
|
133
|
-
add_to_package_deny_list,
|
|
134
|
-
set_package_index_url,
|
|
135
|
-
set_package_extra_index_urls,
|
|
136
|
-
add_package_trusted_host,
|
|
137
|
-
set_package_lockfile,
|
|
138
|
-
generate_package_sbom,
|
|
139
|
-
check_externally_managed_environment,
|
|
140
|
-
)
|
|
141
|
-
|
|
142
|
-
# Auto-detect [lazy] installation mode and install import hook only when enabled
|
|
143
|
-
config_package_lazy_install_enabled("xwsystem")
|
|
144
|
-
|
|
145
|
-
# =============================================================================
|
|
146
|
-
# LAZY INSTALLATION - Simple One-Line Configuration
|
|
147
|
-
# =============================================================================
|
|
148
|
-
# DISABLED BY DEFAULT - Users can enable manually if needed
|
|
149
|
-
# Auto-detects if user installed with [lazy] extra: pip install xwsystem[lazy]
|
|
150
|
-
# config_package_lazy_install_enabled("xwsystem", install_hook=False) # Configure lazy mode
|
|
151
|
-
|
|
152
|
-
# =============================================================================
|
|
153
|
-
# TWO-STAGE LAZY LOADING - Install import hook BEFORE importing serialization
|
|
154
|
-
# =============================================================================
|
|
155
|
-
# DISABLED BY DEFAULT - Prevents import hook interference
|
|
156
|
-
# Install the hook NOW, before serialization imports, so it can intercept them
|
|
157
|
-
# install_import_hook("xwsystem") # Install hook to intercept serialization module imports
|
|
64
|
+
# Minimal-intrusion lazy mode bootstrap (one line)
|
|
65
|
+
# Enables optimized lazy mode for xwsystem if xwlazy is installed
|
|
66
|
+
# Uses fastest mode from benchmarks: cached + full (1.482 ms)
|
|
67
|
+
try:
|
|
68
|
+
from .lazy_bootstrap import _bootstrap_lazy_mode # noqa: F401
|
|
69
|
+
except ImportError:
|
|
70
|
+
pass # xwlazy not installed - silently continue
|
|
158
71
|
|
|
159
72
|
# Logging utilities
|
|
160
73
|
from .config.logging_setup import get_logger, setup_logging
|
|
@@ -446,6 +359,14 @@ from .shared.contracts import IStringable
|
|
|
446
359
|
# Import version from centralized location
|
|
447
360
|
from .version import __version__
|
|
448
361
|
|
|
362
|
+
try:
|
|
363
|
+
import sys as _sys
|
|
364
|
+
_parent_pkg = _sys.modules.get("exonware")
|
|
365
|
+
if _parent_pkg is not None:
|
|
366
|
+
_parent_pkg.__version__ = __version__
|
|
367
|
+
except Exception: # pragma: no cover
|
|
368
|
+
pass
|
|
369
|
+
|
|
449
370
|
# =============================================================================
|
|
450
371
|
# CONVENIENCE FUNCTIONS - Quick access to common operations
|
|
451
372
|
# =============================================================================
|
|
@@ -932,68 +853,6 @@ __all__ = [
|
|
|
932
853
|
"Pipe",
|
|
933
854
|
"AsyncPipe",
|
|
934
855
|
|
|
935
|
-
# Lazy Mode - Performance optimization
|
|
936
|
-
"LazyLoader",
|
|
937
|
-
"LazyModuleRegistry",
|
|
938
|
-
"LazyModeFacade",
|
|
939
|
-
"LazyPerformanceMonitor",
|
|
940
|
-
"register_lazy_module",
|
|
941
|
-
"get_lazy_module",
|
|
942
|
-
"get_loading_stats",
|
|
943
|
-
"preload_frequently_used",
|
|
944
|
-
"enable_lazy_mode",
|
|
945
|
-
"disable_lazy_mode",
|
|
946
|
-
"is_lazy_mode_enabled",
|
|
947
|
-
"get_lazy_mode_stats",
|
|
948
|
-
"configure_lazy_mode",
|
|
949
|
-
"preload_modules",
|
|
950
|
-
"optimize_lazy_mode",
|
|
951
|
-
|
|
952
|
-
# Lazy Install - Auto-install missing packages (per-package isolation)
|
|
953
|
-
"LazyInstaller",
|
|
954
|
-
"LazyInstallerRegistry",
|
|
955
|
-
"LazyInstallMode",
|
|
956
|
-
"LazyInstallPolicy",
|
|
957
|
-
"DependencyMapper",
|
|
958
|
-
"enable_lazy_install",
|
|
959
|
-
"disable_lazy_install",
|
|
960
|
-
"is_lazy_install_enabled",
|
|
961
|
-
"set_lazy_install_mode",
|
|
962
|
-
"get_lazy_install_mode",
|
|
963
|
-
"install_missing_package",
|
|
964
|
-
"install_and_import",
|
|
965
|
-
"get_lazy_install_stats",
|
|
966
|
-
"get_all_lazy_install_stats",
|
|
967
|
-
"lazy_import_with_install",
|
|
968
|
-
"xwimport",
|
|
969
|
-
# Security & Policy APIs
|
|
970
|
-
"set_package_allow_list",
|
|
971
|
-
"set_package_deny_list",
|
|
972
|
-
"add_to_package_allow_list",
|
|
973
|
-
"add_to_package_deny_list",
|
|
974
|
-
"set_package_index_url",
|
|
975
|
-
"set_package_extra_index_urls",
|
|
976
|
-
"add_package_trusted_host",
|
|
977
|
-
"set_package_lockfile",
|
|
978
|
-
"generate_package_sbom",
|
|
979
|
-
"check_externally_managed_environment",
|
|
980
|
-
|
|
981
|
-
# Lazy Discovery - Package-agnostic dependency discovery with auto-detection
|
|
982
|
-
"LazyDiscovery",
|
|
983
|
-
"LazyInstallConfig",
|
|
984
|
-
"DependencyInfo",
|
|
985
|
-
"discover_dependencies",
|
|
986
|
-
"get_lazy_discovery",
|
|
987
|
-
"export_dependency_mappings",
|
|
988
|
-
"config_package_lazy_install_enabled",
|
|
989
|
-
|
|
990
|
-
# Lazy Import Hook - Performance optimized automatic import interception
|
|
991
|
-
"DeferredImportError",
|
|
992
|
-
"LazyMetaPathFinder",
|
|
993
|
-
"install_import_hook",
|
|
994
|
-
"uninstall_import_hook",
|
|
995
|
-
"is_import_hook_installed",
|
|
996
|
-
|
|
997
856
|
# Convenience Functions - Quick access patterns
|
|
998
857
|
"quick_serialize",
|
|
999
858
|
"quick_deserialize",
|