exonware-xwnode 0.0.1.20__py3-none-any.whl → 0.0.1.22__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. exonware/__init__.py +8 -1
  2. exonware/xwnode/__init__.py +1 -1
  3. exonware/xwnode/base.py +7 -5
  4. exonware/xwnode/common/__init__.py +1 -1
  5. exonware/xwnode/common/management/__init__.py +1 -1
  6. exonware/xwnode/common/management/manager.py +8 -8
  7. exonware/xwnode/common/management/migration.py +3 -3
  8. exonware/xwnode/common/monitoring/__init__.py +1 -1
  9. exonware/xwnode/common/monitoring/metrics.py +2 -2
  10. exonware/xwnode/common/monitoring/pattern_detector.py +2 -2
  11. exonware/xwnode/common/monitoring/performance_monitor.py +2 -2
  12. exonware/xwnode/common/patterns/__init__.py +1 -1
  13. exonware/xwnode/common/patterns/advisor.py +1 -1
  14. exonware/xwnode/common/patterns/flyweight.py +2 -2
  15. exonware/xwnode/common/patterns/registry.py +2 -2
  16. exonware/xwnode/common/utils/__init__.py +1 -1
  17. exonware/xwnode/edges/strategies/__init__.py +1 -1
  18. exonware/xwnode/edges/strategies/base.py +1 -1
  19. exonware/xwnode/facade.py +1 -1
  20. exonware/xwnode/nodes/strategies/__init__.py +1 -1
  21. exonware/xwnode/nodes/strategies/adjacency_list.py +1 -1
  22. exonware/xwnode/nodes/strategies/base.py +1 -1
  23. exonware/xwnode/nodes/strategies/contracts.py +1 -1
  24. exonware/xwnode/nodes/strategies/deque.py +1 -1
  25. exonware/xwnode/nodes/strategies/priority_queue.py +1 -1
  26. exonware/xwnode/nodes/strategies/queue.py +1 -1
  27. exonware/xwnode/nodes/strategies/sparse_matrix.py +1 -1
  28. exonware/xwnode/nodes/strategies/stack.py +1 -1
  29. exonware/xwnode/queries/executors/__init__.py +1 -1
  30. exonware/xwnode/queries/executors/advanced/aggregate_executor.py +1 -1
  31. exonware/xwnode/queries/executors/advanced/ask_executor.py +1 -1
  32. exonware/xwnode/queries/executors/advanced/construct_executor.py +1 -1
  33. exonware/xwnode/queries/executors/advanced/describe_executor.py +1 -1
  34. exonware/xwnode/queries/executors/advanced/for_loop_executor.py +1 -1
  35. exonware/xwnode/queries/executors/advanced/foreach_executor.py +1 -1
  36. exonware/xwnode/queries/executors/advanced/join_executor.py +1 -1
  37. exonware/xwnode/queries/executors/advanced/let_executor.py +1 -1
  38. exonware/xwnode/queries/executors/advanced/mutation_executor.py +1 -1
  39. exonware/xwnode/queries/executors/advanced/options_executor.py +1 -1
  40. exonware/xwnode/queries/executors/advanced/pipe_executor.py +1 -1
  41. exonware/xwnode/queries/executors/advanced/subscribe_executor.py +1 -1
  42. exonware/xwnode/queries/executors/advanced/subscription_executor.py +1 -1
  43. exonware/xwnode/queries/executors/advanced/union_executor.py +1 -1
  44. exonware/xwnode/queries/executors/advanced/window_executor.py +1 -1
  45. exonware/xwnode/queries/executors/advanced/with_cte_executor.py +1 -1
  46. exonware/xwnode/queries/executors/aggregation/avg_executor.py +1 -1
  47. exonware/xwnode/queries/executors/aggregation/count_executor.py +1 -1
  48. exonware/xwnode/queries/executors/aggregation/distinct_executor.py +1 -1
  49. exonware/xwnode/queries/executors/aggregation/group_executor.py +1 -1
  50. exonware/xwnode/queries/executors/aggregation/having_executor.py +1 -1
  51. exonware/xwnode/queries/executors/aggregation/max_executor.py +1 -1
  52. exonware/xwnode/queries/executors/aggregation/min_executor.py +1 -1
  53. exonware/xwnode/queries/executors/aggregation/sum_executor.py +1 -1
  54. exonware/xwnode/queries/executors/aggregation/summarize_executor.py +1 -1
  55. exonware/xwnode/queries/executors/array/indexing_executor.py +1 -1
  56. exonware/xwnode/queries/executors/array/slicing_executor.py +1 -1
  57. exonware/xwnode/queries/executors/base.py +1 -1
  58. exonware/xwnode/queries/executors/capability_checker.py +1 -1
  59. exonware/xwnode/queries/executors/contracts.py +1 -1
  60. exonware/xwnode/queries/executors/core/create_executor.py +1 -1
  61. exonware/xwnode/queries/executors/core/delete_executor.py +1 -1
  62. exonware/xwnode/queries/executors/core/drop_executor.py +1 -1
  63. exonware/xwnode/queries/executors/core/insert_executor.py +1 -1
  64. exonware/xwnode/queries/executors/core/select_executor.py +1 -1
  65. exonware/xwnode/queries/executors/core/update_executor.py +1 -1
  66. exonware/xwnode/queries/executors/data/alter_executor.py +1 -1
  67. exonware/xwnode/queries/executors/data/load_executor.py +1 -1
  68. exonware/xwnode/queries/executors/data/merge_executor.py +1 -1
  69. exonware/xwnode/queries/executors/data/store_executor.py +1 -1
  70. exonware/xwnode/queries/executors/defs.py +1 -1
  71. exonware/xwnode/queries/executors/engine.py +1 -1
  72. exonware/xwnode/queries/executors/errors.py +1 -1
  73. exonware/xwnode/queries/executors/filtering/between_executor.py +1 -1
  74. exonware/xwnode/queries/executors/filtering/filter_executor.py +1 -1
  75. exonware/xwnode/queries/executors/filtering/has_executor.py +1 -1
  76. exonware/xwnode/queries/executors/filtering/in_executor.py +1 -1
  77. exonware/xwnode/queries/executors/filtering/like_executor.py +1 -1
  78. exonware/xwnode/queries/executors/filtering/optional_executor.py +1 -1
  79. exonware/xwnode/queries/executors/filtering/range_executor.py +1 -1
  80. exonware/xwnode/queries/executors/filtering/term_executor.py +1 -1
  81. exonware/xwnode/queries/executors/filtering/values_executor.py +1 -1
  82. exonware/xwnode/queries/executors/filtering/where_executor.py +1 -1
  83. exonware/xwnode/queries/executors/graph/in_traverse_executor.py +1 -1
  84. exonware/xwnode/queries/executors/graph/match_executor.py +1 -1
  85. exonware/xwnode/queries/executors/graph/out_executor.py +1 -1
  86. exonware/xwnode/queries/executors/graph/path_executor.py +1 -1
  87. exonware/xwnode/queries/executors/graph/return_executor.py +1 -1
  88. exonware/xwnode/queries/executors/ordering/by_executor.py +1 -1
  89. exonware/xwnode/queries/executors/ordering/order_executor.py +1 -1
  90. exonware/xwnode/queries/executors/projection/extend_executor.py +1 -1
  91. exonware/xwnode/queries/executors/projection/project_executor.py +1 -1
  92. exonware/xwnode/queries/executors/registry.py +1 -1
  93. exonware/xwnode/queries/parsers/__init__.py +1 -1
  94. exonware/xwnode/queries/parsers/base.py +1 -1
  95. exonware/xwnode/queries/parsers/contracts.py +1 -1
  96. exonware/xwnode/queries/parsers/errors.py +1 -1
  97. exonware/xwnode/queries/parsers/sql_param_extractor.py +1 -1
  98. exonware/xwnode/queries/strategies/__init__.py +1 -1
  99. exonware/xwnode/queries/strategies/base.py +1 -1
  100. exonware/xwnode/queries/strategies/cql.py +1 -1
  101. exonware/xwnode/queries/strategies/cypher.py +1 -1
  102. exonware/xwnode/queries/strategies/datalog.py +1 -1
  103. exonware/xwnode/queries/strategies/elastic_dsl.py +1 -1
  104. exonware/xwnode/queries/strategies/eql.py +1 -1
  105. exonware/xwnode/queries/strategies/flux.py +1 -1
  106. exonware/xwnode/queries/strategies/gql.py +1 -1
  107. exonware/xwnode/queries/strategies/graphql.py +1 -1
  108. exonware/xwnode/queries/strategies/gremlin.py +1 -1
  109. exonware/xwnode/queries/strategies/hiveql.py +1 -1
  110. exonware/xwnode/queries/strategies/hql.py +1 -1
  111. exonware/xwnode/queries/strategies/jmespath.py +1 -1
  112. exonware/xwnode/queries/strategies/jq.py +1 -1
  113. exonware/xwnode/queries/strategies/json_query.py +1 -1
  114. exonware/xwnode/queries/strategies/jsoniq.py +1 -1
  115. exonware/xwnode/queries/strategies/kql.py +1 -1
  116. exonware/xwnode/queries/strategies/linq.py +1 -1
  117. exonware/xwnode/queries/strategies/logql.py +1 -1
  118. exonware/xwnode/queries/strategies/mql.py +1 -1
  119. exonware/xwnode/queries/strategies/n1ql.py +1 -1
  120. exonware/xwnode/queries/strategies/partiql.py +1 -1
  121. exonware/xwnode/queries/strategies/pig.py +1 -1
  122. exonware/xwnode/queries/strategies/promql.py +1 -1
  123. exonware/xwnode/queries/strategies/sparql.py +1 -1
  124. exonware/xwnode/queries/strategies/sql.py +1 -1
  125. exonware/xwnode/queries/strategies/xml_query.py +1 -1
  126. exonware/xwnode/queries/strategies/xpath.py +1 -1
  127. exonware/xwnode/queries/strategies/xquery.py +1 -1
  128. exonware/xwnode/queries/strategies/xwnode_executor.py +1 -1
  129. exonware/xwnode/queries/strategies/xwquery.py +1 -1
  130. exonware/xwnode/strategies/__init__.py +1 -1
  131. exonware/xwnode/version.py +2 -2
  132. {exonware_xwnode-0.0.1.20.dist-info → exonware_xwnode-0.0.1.22.dist-info}/METADATA +5 -5
  133. {exonware_xwnode-0.0.1.20.dist-info → exonware_xwnode-0.0.1.22.dist-info}/RECORD +135 -135
  134. {exonware_xwnode-0.0.1.20.dist-info → exonware_xwnode-0.0.1.22.dist-info}/WHEEL +0 -0
  135. {exonware_xwnode-0.0.1.20.dist-info → exonware_xwnode-0.0.1.22.dist-info}/licenses/LICENSE +0 -0
exonware/__init__.py CHANGED
@@ -4,10 +4,17 @@ exonware package - Enterprise-grade Python framework ecosystem
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.20
7
+ Version: 0.0.1.22
8
8
  Generation Date: 2025-01-03
9
+
10
+ This is a namespace package allowing multiple exonware subpackages
11
+ to coexist (xwsystem, xwnode, xwdata, etc.)
9
12
  """
10
13
 
14
+ # Make this a namespace package - DO NOT set __path__
15
+ # This allows both exonware.xwsystem and exonware.xwnode to coexist
16
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)
17
+
11
18
  __version__ = '0.0.1'
12
19
  __author__ = 'Eng. Muhammad AlShehri'
13
20
  __email__ = 'connect@exonware.com'
@@ -10,7 +10,7 @@ data handling libraries like xdata.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.20
13
+ Version: 0.0.1.22
14
14
  Generation Date: 07-Sep-2025
15
15
 
16
16
  Main Classes:
exonware/xwnode/base.py CHANGED
@@ -24,9 +24,8 @@ from .contracts import iNodeFacade, iNodeStrategy, iEdge, iEdgeStrategy, iQuery,
24
24
  # System-level imports - standard imports (no defensive code!)
25
25
  from exonware.xwsystem.security import get_resource_limits
26
26
  from exonware.xwsystem.validation import validate_untrusted_data
27
- from exonware.xwsystem.monitoring import create_component_metrics
27
+ from exonware.xwsystem.monitoring import create_component_metrics, CircuitBreaker, CircuitBreakerConfig
28
28
  from exonware.xwsystem.threading import ThreadSafeFactory, create_thread_safe_cache
29
- from exonware.xwsystem.patterns import CircuitBreaker
30
29
  from exonware.xwsystem import get_logger
31
30
 
32
31
  logger = get_logger('xwnode.base')
@@ -42,9 +41,12 @@ _path_cache = create_thread_safe_cache(max_size=1024)
42
41
 
43
42
  # Circuit breaker for strategy operations
44
43
  _strategy_circuit_breaker = CircuitBreaker(
45
- failure_threshold=5,
46
- recovery_timeout=30,
47
- expected_exception=Exception
44
+ name='xwnode_strategy',
45
+ config=CircuitBreakerConfig(
46
+ failure_threshold=5,
47
+ recovery_timeout=30,
48
+ expected_exception=Exception
49
+ )
48
50
  )
49
51
 
50
52
 
@@ -6,7 +6,7 @@ Common utilities and patterns shared across xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  """
11
11
 
12
12
  # Export common patterns
@@ -6,7 +6,7 @@ Management module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -12,7 +12,7 @@ This module provides the enhanced StrategyManager class that integrates:
12
12
  Company: eXonware.com
13
13
  Author: Eng. Muhammad AlShehri
14
14
  Email: connect@exonware.com
15
- Version: 0.0.1.20
15
+ Version: 0.0.1.22
16
16
  Generation Date: 07-Sep-2025
17
17
  """
18
18
 
@@ -22,14 +22,14 @@ from typing import Dict, Optional, Any, Union, List
22
22
  from exonware.xwsystem import get_logger
23
23
 
24
24
  logger = get_logger(__name__)
25
- from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
26
- from .registry import get_registry
27
- from .advisor import get_advisor
25
+ from ...defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
26
+ from ..patterns.registry import get_registry
27
+ from ..patterns.advisor import get_advisor
28
28
  from .migration import get_migrator
29
- from .flyweight import get_flyweight
30
- from .pattern_detector import get_detector, DataProfile
31
- from .performance_monitor import get_monitor, OperationType
32
- from ..errors import (
29
+ from ..patterns.flyweight import get_flyweight
30
+ from ..monitoring.pattern_detector import get_detector, DataProfile
31
+ from ..monitoring.performance_monitor import get_monitor, OperationType
32
+ from ...errors import (
33
33
  XWNodeStrategyError, XWNodeError,
34
34
  XWNodeStrategyError, XWNodeUnsupportedCapabilityError
35
35
  )
@@ -9,9 +9,9 @@ from typing import Any, Dict, List, Optional, Set, Tuple, Type
9
9
  from enum import Enum
10
10
  import threading
11
11
  import time
12
- from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
13
- from .registry import get_registry
14
- from ..errors import XWNodeStrategyError, XWNodeError
12
+ from ...defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
13
+ from ..patterns.registry import get_registry
14
+ from ...errors import XWNodeStrategyError, XWNodeError
15
15
  import logging
16
16
 
17
17
  logger = logging.getLogger(__name__)
@@ -6,7 +6,7 @@ Monitoring module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -9,7 +9,7 @@ memory usage, and optimization recommendations.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.20
12
+ Version: 0.0.1.22
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -23,7 +23,7 @@ from exonware.xwsystem import get_logger
23
23
 
24
24
  logger = get_logger(__name__)
25
25
 
26
- from ..defs import NodeMode, EdgeMode
26
+ from ...defs import NodeMode, EdgeMode
27
27
  from .flyweight import get_flyweight_stats
28
28
  from .pattern_detector import get_detector
29
29
  from .performance_monitor import get_monitor, get_performance_summary
@@ -10,7 +10,7 @@ selection with sophisticated heuristics.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.20
13
+ Version: 0.0.1.22
14
14
  Generation Date: 07-Sep-2025
15
15
  """
16
16
 
@@ -24,7 +24,7 @@ from exonware.xwsystem import get_logger
24
24
 
25
25
  logger = get_logger(__name__)
26
26
 
27
- from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
27
+ from ...defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
28
28
 
29
29
 
30
30
 
@@ -9,7 +9,7 @@ This enables data-driven strategy selection and performance tuning.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.20
12
+ Version: 0.0.1.22
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -23,7 +23,7 @@ from exonware.xwsystem import get_logger
23
23
 
24
24
  logger = get_logger(__name__)
25
25
 
26
- from ..defs import NodeMode, EdgeMode
26
+ from ...defs import NodeMode, EdgeMode
27
27
 
28
28
 
29
29
 
@@ -6,7 +6,7 @@ Patterns module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -16,7 +16,7 @@ from exonware.xwsystem import get_logger
16
16
 
17
17
  logger = get_logger(__name__)
18
18
 
19
- from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait, NODE_STRATEGY_METADATA, EDGE_STRATEGY_METADATA
19
+ from ...defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait, NODE_STRATEGY_METADATA, EDGE_STRATEGY_METADATA
20
20
 
21
21
 
22
22
  @dataclass
@@ -10,7 +10,7 @@ configuration, which is especially important for high-throughput applications.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.20
13
+ Version: 0.0.1.22
14
14
  Generation Date: 07-Sep-2025
15
15
  """
16
16
 
@@ -23,7 +23,7 @@ from exonware.xwsystem import get_logger
23
23
 
24
24
  logger = get_logger(__name__)
25
25
 
26
- from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
26
+ from ...defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
27
27
  from ...nodes.strategies.base import ANodeStrategy
28
28
  from ...edges.strategies.base import AEdgeStrategy
29
29
 
@@ -13,8 +13,8 @@ from exonware.xwsystem import get_logger
13
13
 
14
14
  logger = get_logger(__name__)
15
15
 
16
- from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait, NODE_STRATEGY_METADATA, EDGE_STRATEGY_METADATA, QueryMode, QueryTrait
17
- from ..errors import XWNodeStrategyError, XWNodeError
16
+ from ...defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait, NODE_STRATEGY_METADATA, EDGE_STRATEGY_METADATA, QueryMode, QueryTrait
17
+ from ...errors import XWNodeStrategyError, XWNodeError
18
18
 
19
19
 
20
20
  class StrategyRegistry:
@@ -6,7 +6,7 @@ Utils module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -9,7 +9,7 @@ This package contains all edge strategy implementations organized by type:
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.20
12
+ Version: 0.0.1.22
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -11,7 +11,7 @@ This module defines the abstract base classes for all edge strategy implementati
11
11
  Company: eXonware.com
12
12
  Author: Eng. Muhammad AlShehri
13
13
  Email: connect@exonware.com
14
- Version: 0.0.1.20
14
+ Version: 0.0.1.22
15
15
  Generation Date: January 2, 2025
16
16
  """
17
17
 
exonware/xwnode/facade.py CHANGED
@@ -9,7 +9,7 @@ a clean, intuitive interface.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.20
12
+ Version: 0.0.1.22
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ This package contains all node strategy implementations organized by type:
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.20
12
+ Version: 0.0.1.22
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -6,7 +6,7 @@ Implements graph operations using adjacency list representation.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -12,7 +12,7 @@ This module defines the abstract base classes for all node strategy implementati
12
12
  Company: eXonware.com
13
13
  Author: Eng. Muhammad AlShehri
14
14
  Email: connect@exonware.com
15
- Version: 0.0.1.20
15
+ Version: 0.0.1.22
16
16
  Generation Date: 08-Oct-2025
17
17
  """
18
18
 
@@ -10,7 +10,7 @@ including the NodeType classification system for operation routing.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.20
13
+ Version: 0.0.1.22
14
14
  Generation Date: 08-Oct-2025
15
15
  """
16
16
 
@@ -6,7 +6,7 @@ Implements a double-ended queue using Python's deque for efficient operations at
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a priority queue using Python's heapq for efficient priority-based op
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a FIFO (First In, First Out) data structure using Python's deque.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a sparse matrix using coordinate format (COO) for memory efficiency.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a LIFO (Last In, First Out) data structure using Python's list.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.20
9
+ Version: 0.0.1.22
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -8,7 +8,7 @@ This package implements the execution layer for 50 XWQuery Script operations.
8
8
  Company: eXonware.com
9
9
  Author: Eng. Muhammad AlShehri
10
10
  Email: connect@exonware.com
11
- Version: 0.0.1.20
11
+ Version: 0.0.1.22
12
12
  Generation Date: 08-Oct-2025
13
13
  """
14
14
 
@@ -7,7 +7,7 @@ AGGREGATE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ ASK Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ CONSTRUCT Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ DESCRIBE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ FOR Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ FOREACH Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ JOIN Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ LET Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ MUTATION Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ OPTIONS Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ PIPE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ SUBSCRIBE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ SUBSCRIPTION Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ UNION Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ WINDOW Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ WITH Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ AVG Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ COUNT Operation Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 08-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ DISTINCT Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ GROUP Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ HAVING Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ MAX Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ MIN Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ SUM Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ SUMMARIZE Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ INDEXING Executor
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.20
10
+ Version: 0.0.1.22
11
11
  Generation Date: 09-Oct-2025
12
12
  """
13
13