exonware-xwnode 0.0.1.12__py3-none-any.whl → 0.0.1.14__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 (208) hide show
  1. exonware/__init__.py +1 -1
  2. exonware/xwnode/__init__.py +1 -1
  3. exonware/xwnode/base.py +1 -1
  4. exonware/xwnode/common/__init__.py +20 -0
  5. exonware/xwnode/common/management/__init__.py +26 -0
  6. exonware/xwnode/{strategies → common/management}/manager.py +2 -2
  7. exonware/xwnode/common/monitoring/__init__.py +26 -0
  8. exonware/xwnode/{strategies → common/monitoring}/metrics.py +2 -2
  9. exonware/xwnode/{strategies → common/monitoring}/pattern_detector.py +2 -2
  10. exonware/xwnode/{strategies → common/monitoring}/performance_monitor.py +2 -2
  11. exonware/xwnode/common/patterns/__init__.py +26 -0
  12. exonware/xwnode/{strategies → common/patterns}/advisor.py +1 -1
  13. exonware/xwnode/{strategies → common/patterns}/flyweight.py +4 -4
  14. exonware/xwnode/{strategies → common/patterns}/registry.py +109 -112
  15. exonware/xwnode/common/utils/__init__.py +26 -0
  16. exonware/xwnode/{strategies/edges → edges/strategies}/__init__.py +1 -1
  17. exonware/xwnode/{strategies/edges → edges/strategies}/base.py +3 -3
  18. exonware/xwnode/facade.py +4 -3
  19. exonware/xwnode/{strategies/nodes → nodes/strategies}/__init__.py +1 -1
  20. exonware/xwnode/{strategies/nodes → nodes/strategies}/adjacency_list.py +7 -2
  21. exonware/xwnode/{strategies/nodes → nodes/strategies}/aho_corasick.py +6 -1
  22. exonware/xwnode/{strategies/nodes → nodes/strategies}/array_list.py +6 -1
  23. exonware/xwnode/{strategies/nodes → nodes/strategies}/base.py +24 -4
  24. exonware/xwnode/nodes/strategies/contracts.py +116 -0
  25. exonware/xwnode/{strategies/nodes → nodes/strategies}/deque.py +7 -2
  26. exonware/xwnode/{strategies/nodes → nodes/strategies}/hash_map.py +4 -0
  27. exonware/xwnode/{strategies/nodes → nodes/strategies}/heap.py +6 -1
  28. exonware/xwnode/{strategies/nodes → nodes/strategies}/linked_list.py +6 -1
  29. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_aho_corasick.py +6 -1
  30. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_array_list.py +4 -0
  31. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_avl_tree.py +6 -1
  32. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_b_plus_tree.py +6 -1
  33. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_bitmap.py +6 -1
  34. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_bitset_dynamic.py +6 -1
  35. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_bloom_filter.py +4 -0
  36. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_btree.py +6 -1
  37. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_count_min_sketch.py +4 -0
  38. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_cow_tree.py +6 -1
  39. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_fenwick_tree.py +6 -1
  40. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_hash_map.py +4 -0
  41. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_heap.py +6 -1
  42. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_hyperloglog.py +4 -0
  43. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_linked_list.py +4 -0
  44. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_lsm_tree.py +6 -1
  45. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_ordered_map.py +6 -1
  46. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_ordered_map_balanced.py +6 -1
  47. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_patricia.py +6 -1
  48. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_persistent_tree.py +6 -1
  49. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_radix_trie.py +6 -1
  50. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_red_black_tree.py +6 -1
  51. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_roaring_bitmap.py +6 -1
  52. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_segment_tree.py +6 -1
  53. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_set_hash.py +4 -0
  54. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_set_tree.py +6 -1
  55. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_skip_list.py +6 -1
  56. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_splay_tree.py +6 -1
  57. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_suffix_array.py +6 -1
  58. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_treap.py +6 -1
  59. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_tree_graph_hybrid.py +4 -0
  60. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_trie.py +6 -1
  61. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_union_find.py +6 -1
  62. exonware/xwnode/{strategies/nodes → nodes/strategies}/node_xdata_optimized.py +4 -0
  63. exonware/xwnode/{strategies/nodes → nodes/strategies}/priority_queue.py +7 -2
  64. exonware/xwnode/{strategies/nodes → nodes/strategies}/queue.py +7 -2
  65. exonware/xwnode/{strategies/nodes → nodes/strategies}/sparse_matrix.py +7 -2
  66. exonware/xwnode/{strategies/nodes → nodes/strategies}/stack.py +7 -2
  67. exonware/xwnode/{strategies/nodes → nodes/strategies}/trie.py +6 -1
  68. exonware/xwnode/{strategies/nodes → nodes/strategies}/union_find.py +6 -1
  69. exonware/xwnode/queries/executors/__init__.py +47 -0
  70. exonware/xwnode/queries/executors/advanced/__init__.py +37 -0
  71. exonware/xwnode/queries/executors/advanced/aggregate_executor.py +50 -0
  72. exonware/xwnode/queries/executors/advanced/ask_executor.py +50 -0
  73. exonware/xwnode/queries/executors/advanced/construct_executor.py +50 -0
  74. exonware/xwnode/queries/executors/advanced/describe_executor.py +50 -0
  75. exonware/xwnode/queries/executors/advanced/for_loop_executor.py +50 -0
  76. exonware/xwnode/queries/executors/advanced/foreach_executor.py +50 -0
  77. exonware/xwnode/queries/executors/advanced/join_executor.py +50 -0
  78. exonware/xwnode/queries/executors/advanced/let_executor.py +50 -0
  79. exonware/xwnode/queries/executors/advanced/mutation_executor.py +50 -0
  80. exonware/xwnode/queries/executors/advanced/options_executor.py +50 -0
  81. exonware/xwnode/queries/executors/advanced/pipe_executor.py +50 -0
  82. exonware/xwnode/queries/executors/advanced/subscribe_executor.py +50 -0
  83. exonware/xwnode/queries/executors/advanced/subscription_executor.py +50 -0
  84. exonware/xwnode/queries/executors/advanced/union_executor.py +50 -0
  85. exonware/xwnode/queries/executors/advanced/window_executor.py +51 -0
  86. exonware/xwnode/queries/executors/advanced/with_cte_executor.py +50 -0
  87. exonware/xwnode/queries/executors/aggregation/__init__.py +21 -0
  88. exonware/xwnode/queries/executors/aggregation/avg_executor.py +50 -0
  89. exonware/xwnode/queries/executors/aggregation/count_executor.py +38 -0
  90. exonware/xwnode/queries/executors/aggregation/distinct_executor.py +50 -0
  91. exonware/xwnode/queries/executors/aggregation/group_executor.py +50 -0
  92. exonware/xwnode/queries/executors/aggregation/having_executor.py +50 -0
  93. exonware/xwnode/queries/executors/aggregation/max_executor.py +50 -0
  94. exonware/xwnode/queries/executors/aggregation/min_executor.py +50 -0
  95. exonware/xwnode/queries/executors/aggregation/sum_executor.py +50 -0
  96. exonware/xwnode/queries/executors/aggregation/summarize_executor.py +50 -0
  97. exonware/xwnode/queries/executors/array/__init__.py +9 -0
  98. exonware/xwnode/queries/executors/array/indexing_executor.py +51 -0
  99. exonware/xwnode/queries/executors/array/slicing_executor.py +51 -0
  100. exonware/xwnode/queries/executors/base.py +257 -0
  101. exonware/xwnode/queries/executors/capability_checker.py +204 -0
  102. exonware/xwnode/queries/executors/contracts.py +166 -0
  103. exonware/xwnode/queries/executors/core/__init__.py +17 -0
  104. exonware/xwnode/queries/executors/core/create_executor.py +96 -0
  105. exonware/xwnode/queries/executors/core/delete_executor.py +99 -0
  106. exonware/xwnode/queries/executors/core/drop_executor.py +100 -0
  107. exonware/xwnode/queries/executors/core/insert_executor.py +39 -0
  108. exonware/xwnode/queries/executors/core/select_executor.py +152 -0
  109. exonware/xwnode/queries/executors/core/update_executor.py +102 -0
  110. exonware/xwnode/queries/executors/data/__init__.py +13 -0
  111. exonware/xwnode/queries/executors/data/alter_executor.py +50 -0
  112. exonware/xwnode/queries/executors/data/load_executor.py +50 -0
  113. exonware/xwnode/queries/executors/data/merge_executor.py +50 -0
  114. exonware/xwnode/queries/executors/data/store_executor.py +50 -0
  115. exonware/xwnode/queries/executors/engine.py +221 -0
  116. exonware/xwnode/queries/executors/errors.py +68 -0
  117. exonware/xwnode/queries/executors/filtering/__init__.py +25 -0
  118. exonware/xwnode/queries/executors/filtering/between_executor.py +80 -0
  119. exonware/xwnode/queries/executors/filtering/filter_executor.py +79 -0
  120. exonware/xwnode/queries/executors/filtering/has_executor.py +70 -0
  121. exonware/xwnode/queries/executors/filtering/in_executor.py +70 -0
  122. exonware/xwnode/queries/executors/filtering/like_executor.py +76 -0
  123. exonware/xwnode/queries/executors/filtering/optional_executor.py +76 -0
  124. exonware/xwnode/queries/executors/filtering/range_executor.py +80 -0
  125. exonware/xwnode/queries/executors/filtering/term_executor.py +77 -0
  126. exonware/xwnode/queries/executors/filtering/values_executor.py +71 -0
  127. exonware/xwnode/queries/executors/filtering/where_executor.py +44 -0
  128. exonware/xwnode/queries/executors/graph/__init__.py +15 -0
  129. exonware/xwnode/queries/executors/graph/in_traverse_executor.py +51 -0
  130. exonware/xwnode/queries/executors/graph/match_executor.py +51 -0
  131. exonware/xwnode/queries/executors/graph/out_executor.py +51 -0
  132. exonware/xwnode/queries/executors/graph/path_executor.py +51 -0
  133. exonware/xwnode/queries/executors/graph/return_executor.py +51 -0
  134. exonware/xwnode/queries/executors/ordering/__init__.py +9 -0
  135. exonware/xwnode/queries/executors/ordering/by_executor.py +50 -0
  136. exonware/xwnode/queries/executors/ordering/order_executor.py +51 -0
  137. exonware/xwnode/queries/executors/projection/__init__.py +9 -0
  138. exonware/xwnode/queries/executors/projection/extend_executor.py +50 -0
  139. exonware/xwnode/queries/executors/projection/project_executor.py +50 -0
  140. exonware/xwnode/queries/executors/registry.py +173 -0
  141. exonware/xwnode/queries/executors/types.py +93 -0
  142. exonware/xwnode/{strategies/queries → queries/strategies}/__init__.py +1 -1
  143. exonware/xwnode/{strategies/queries → queries/strategies}/base.py +1 -1
  144. exonware/xwnode/{strategies/queries → queries/strategies}/cql.py +1 -1
  145. exonware/xwnode/{strategies/queries → queries/strategies}/cypher.py +1 -1
  146. exonware/xwnode/{strategies/queries → queries/strategies}/datalog.py +1 -1
  147. exonware/xwnode/{strategies/queries → queries/strategies}/elastic_dsl.py +1 -1
  148. exonware/xwnode/{strategies/queries → queries/strategies}/eql.py +1 -1
  149. exonware/xwnode/{strategies/queries → queries/strategies}/flux.py +1 -1
  150. exonware/xwnode/{strategies/queries → queries/strategies}/gql.py +1 -1
  151. exonware/xwnode/{strategies/queries → queries/strategies}/graphql.py +1 -1
  152. exonware/xwnode/{strategies/queries → queries/strategies}/gremlin.py +1 -1
  153. exonware/xwnode/{strategies/queries → queries/strategies}/hiveql.py +1 -1
  154. exonware/xwnode/{strategies/queries → queries/strategies}/hql.py +1 -1
  155. exonware/xwnode/{strategies/queries → queries/strategies}/jmespath.py +1 -1
  156. exonware/xwnode/{strategies/queries → queries/strategies}/jq.py +1 -1
  157. exonware/xwnode/{strategies/queries → queries/strategies}/json_query.py +1 -1
  158. exonware/xwnode/{strategies/queries → queries/strategies}/jsoniq.py +1 -1
  159. exonware/xwnode/{strategies/queries → queries/strategies}/kql.py +1 -1
  160. exonware/xwnode/{strategies/queries → queries/strategies}/linq.py +1 -1
  161. exonware/xwnode/{strategies/queries → queries/strategies}/logql.py +1 -1
  162. exonware/xwnode/{strategies/queries → queries/strategies}/mql.py +1 -1
  163. exonware/xwnode/{strategies/queries → queries/strategies}/n1ql.py +1 -1
  164. exonware/xwnode/{strategies/queries → queries/strategies}/partiql.py +1 -1
  165. exonware/xwnode/{strategies/queries → queries/strategies}/pig.py +1 -1
  166. exonware/xwnode/{strategies/queries → queries/strategies}/promql.py +1 -1
  167. exonware/xwnode/{strategies/queries → queries/strategies}/sparql.py +1 -1
  168. exonware/xwnode/{strategies/queries → queries/strategies}/sql.py +1 -1
  169. exonware/xwnode/{strategies/queries → queries/strategies}/xml_query.py +1 -1
  170. exonware/xwnode/{strategies/queries → queries/strategies}/xpath.py +1 -1
  171. exonware/xwnode/{strategies/queries → queries/strategies}/xquery.py +1 -1
  172. exonware/xwnode/{strategies/queries → queries/strategies}/xwnode_executor.py +1 -1
  173. exonware/xwnode/{strategies/queries/xwquery_strategy.py → queries/strategies/xwquery.py} +1 -1
  174. exonware/xwnode/strategies/__init__.py +8 -8
  175. exonware/xwnode/version.py +3 -3
  176. {exonware_xwnode-0.0.1.12.dist-info → exonware_xwnode-0.0.1.14.dist-info}/METADATA +2 -2
  177. exonware_xwnode-0.0.1.14.dist-info/RECORD +209 -0
  178. exonware/xwnode/strategies/impls/__init__.py +0 -13
  179. exonware/xwnode/strategies/nodes/_base_node.py +0 -307
  180. exonware_xwnode-0.0.1.12.dist-info/RECORD +0 -132
  181. /exonware/xwnode/{strategies → common/management}/migration.py +0 -0
  182. /exonware/xwnode/{strategies → common/utils}/simple.py +0 -0
  183. /exonware/xwnode/{strategies → common/utils}/utils.py +0 -0
  184. /exonware/xwnode/{strategies/impls → edges/strategies}/_base_edge.py +0 -0
  185. /exonware/xwnode/{strategies/edges → edges/strategies}/adj_list.py +0 -0
  186. /exonware/xwnode/{strategies/edges → edges/strategies}/adj_matrix.py +0 -0
  187. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_adj_list.py +0 -0
  188. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_adj_matrix.py +0 -0
  189. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_bidir_wrapper.py +0 -0
  190. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_block_adj_matrix.py +0 -0
  191. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_coo.py +0 -0
  192. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_csc.py +0 -0
  193. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_csr.py +0 -0
  194. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_dynamic_adj_list.py +0 -0
  195. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_flow_network.py +0 -0
  196. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_hyperedge_set.py +0 -0
  197. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_neural_graph.py +0 -0
  198. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_octree.py +0 -0
  199. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_property_store.py +0 -0
  200. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_quadtree.py +0 -0
  201. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_rtree.py +0 -0
  202. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_temporal_edgeset.py +0 -0
  203. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_tree_graph_basic.py +0 -0
  204. /exonware/xwnode/{strategies/impls → edges/strategies}/edge_weighted_graph.py +0 -0
  205. /exonware/xwnode/{strategies/impls → nodes/strategies}/_base_node.py +0 -0
  206. /exonware/xwnode/{strategies/nodes → nodes/strategies}/node_cuckoo_hash.py +0 -0
  207. {exonware_xwnode-0.0.1.12.dist-info → exonware_xwnode-0.0.1.14.dist-info}/WHEEL +0 -0
  208. {exonware_xwnode-0.0.1.12.dist-info → exonware_xwnode-0.0.1.14.dist-info}/licenses/LICENSE +0 -0
@@ -7,7 +7,7 @@ This module implements the GraphQL query strategy for graph-based data queries.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the Gremlin query strategy for Apache TinkerPop graph que
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the HiveQL query strategy for Apache Hive SQL operations.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the HQL query strategy for Hibernate Query Language opera
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the JMESPath query strategy for JSON data queries.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the jq query strategy for jq JSON processor operations.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the JSON Query strategy for generic JSON operations.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the JSONiq query strategy for JSON data queries.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the KQL query strategy for Kusto Query Language operation
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the LINQ query strategy for Language Integrated Query ope
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the LogQL query strategy for Grafana Loki Log Query Langu
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the MQL query strategy for MongoDB Query Language operati
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the N1QL query strategy for Couchbase Query Language oper
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the PartiQL query strategy for AWS PartiQL operations.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the Pig query strategy for Apache Pig Latin operations.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the PromQL query strategy for Prometheus Query Language o
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the SPARQL query strategy for RDF data queries.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the SQL query strategy for structured data queries.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the XML Query strategy for generic XML operations.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the XPath query strategy for XML data queries.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the XQuery query strategy for XML data queries.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.12
10
+ Version: 0.0.1.14
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -9,7 +9,7 @@ using the existing XWNode strategy system.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.12
12
+ Version: 0.0.1.14
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -8,7 +8,7 @@ and provides conversion between different query formats using actions in tree fo
8
8
  Company: eXonware.com
9
9
  Author: Eng. Muhammad AlShehri
10
10
  Email: connect@exonware.com
11
- Version: 0.0.1.12
11
+ Version: 0.0.1.14
12
12
  Generation Date: January 2, 2025
13
13
  """
14
14
 
@@ -15,7 +15,7 @@ This package implements the enhanced strategy system with xwsystem-inspired opti
15
15
  Company: eXonware.com
16
16
  Author: Eng. Muhammad AlShehri
17
17
  Email: connect@exonware.com
18
- Version: 0.0.1.12
18
+ Version: 0.0.1.14
19
19
  Generation Date: 07-Sep-2025
20
20
  """
21
21
 
@@ -90,15 +90,15 @@ from .queries.logql import LogQLStrategy
90
90
  from .queries.xml_query import XMLQueryStrategy
91
91
  from .queries.json_query import JSONQueryStrategy
92
92
 
93
- from .registry import StrategyRegistry, get_registry, register_node_strategy, register_edge_strategy
94
- from .advisor import StrategyAdvisor, get_advisor
95
- from .manager import StrategyManager
93
+ from ..common.patterns.registry import StrategyRegistry, get_registry, register_node_strategy, register_edge_strategy
94
+ from ..common.patterns.advisor import StrategyAdvisor, get_advisor
95
+ from ..common.management.manager import StrategyManager
96
96
 
97
97
  # Enhanced components
98
- from .flyweight import StrategyFlyweight, get_flyweight, get_flyweight_stats, clear_flyweight_cache
99
- from .pattern_detector import DataPatternDetector, get_detector, analyze_data_patterns, recommend_strategy
100
- from .performance_monitor import StrategyPerformanceMonitor, get_monitor, record_operation, get_performance_summary
101
- from .metrics import StrategyMetricsCollector, get_metrics_collector, collect_comprehensive_metrics, get_metrics_summary
98
+ from ..common.patterns.flyweight import StrategyFlyweight, get_flyweight, get_flyweight_stats, clear_flyweight_cache
99
+ from ..common.monitoring.pattern_detector import DataPatternDetector, get_detector, analyze_data_patterns, recommend_strategy
100
+ from ..common.monitoring.performance_monitor import StrategyPerformanceMonitor, get_monitor, record_operation, get_performance_summary
101
+ from ..common.monitoring.metrics import StrategyMetricsCollector, get_metrics_collector, collect_comprehensive_metrics, get_metrics_summary
102
102
 
103
103
  __all__ = [
104
104
  # Types and enums
@@ -4,7 +4,7 @@ Centralized version management for xwnode.
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Generation Date: October 07, 2025
7
+ Generation Date: October 09, 2025
8
8
 
9
9
  This module provides centralized version management for the entire xwnode project.
10
10
  All version references should import from this module to ensure consistency.
@@ -15,13 +15,13 @@ All version references should import from this module to ensure consistency.
15
15
  # =============================================================================
16
16
 
17
17
  # Main version - update this to change version across entire project
18
- __version__ = "0.0.1.12"
18
+ __version__ = "0.0.1.14"
19
19
 
20
20
  # Version components for programmatic access
21
21
  VERSION_MAJOR = 0
22
22
  VERSION_MINOR = 0
23
23
  VERSION_PATCH = 1
24
- VERSION_BUILD = 12# Set to None for releases, or build number for dev builds
24
+ VERSION_BUILD = 14# Set to None for releases, or build number for dev builds
25
25
 
26
26
  # Version metadata
27
27
  VERSION_SUFFIX = "" # e.g., "dev", "alpha", "beta", "rc1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exonware-xwnode
3
- Version: 0.0.1.12
3
+ Version: 0.0.1.14
4
4
  Summary: Node-based data processing and graph computation library
5
5
  Project-URL: Homepage, https://exonware.com
6
6
  Project-URL: Repository, https://github.com/exonware/xwnode
@@ -41,7 +41,7 @@ Description-Content-Type: text/markdown
41
41
  **Company:** eXonware.com
42
42
  **Author:** Eng. Muhammad AlShehri
43
43
  **Email:** connect@exonware.com
44
- **Version:** 0.0.1.12
44
+ **Version:** 0.0.1.14
45
45
 
46
46
  ## 🎯 **What is xwnode?**
47
47
 
@@ -0,0 +1,209 @@
1
+ exonware/__init__.py,sha256=VX7Ko77oA1sJYzEfnUgjk2LgRM3Exv5RVfiymBBfoEg,324
2
+ exonware/xwnode/__init__.py,sha256=ZFvtm7wVcF6pdWMScxi14hnvtTi4lYl8cutlz05KZAM,3814
3
+ exonware/xwnode/base.py,sha256=6Wv45p0IK-KGgxZUYZ5-Jc6GROWd8_nMHB4a43ImhFc,23832
4
+ exonware/xwnode/config.py,sha256=Kt8oFMhLmb-3rZdxWle-_Z3PGJj04XhZUp7K9FUnxN0,5707
5
+ exonware/xwnode/contracts.py,sha256=UHVk-7RWt-hVPJlRKVU8MnC9yE6QDAxzXji3f3UN4RE,20693
6
+ exonware/xwnode/errors.py,sha256=JZCrGdK31LlrE5cY1_s5Jb6x7zsBF0WUiE2PCWfIdNk,18396
7
+ exonware/xwnode/facade.py,sha256=MODgecVTdvs1h_XTxyNgXl8oLqtv6WwCd6WNJik8ZP0,16083
8
+ exonware/xwnode/types.py,sha256=uioV6DW9nnQ0p3ZIdhYNQ5XtbQB2_INIljUkeCZox9o,34471
9
+ exonware/xwnode/version.py,sha256=7g9iGNqd0uxeldoIEE02Pz5atUM3Q1XKPaHlWv2A4gw,2379
10
+ exonware/xwnode/common/__init__.py,sha256=QSuKRtRz3dSTO7bTE3sjNrAGIY-F6hrCafXpwezas-U,387
11
+ exonware/xwnode/common/management/__init__.py,sha256=uigTe9nXnp8tVF5MvMlXVPgTK9CigOsdVlJA8wQ5k7g,679
12
+ exonware/xwnode/common/management/manager.py,sha256=cvbwb_FnJBWsclG9kZ8VvaqU3nU_sVJMXvfXsKr90qQ,33909
13
+ exonware/xwnode/common/management/migration.py,sha256=w_YEpNiVtYBA50mGvfTVyLFz-GViyT5Adzmvlp8P4gk,20181
14
+ exonware/xwnode/common/monitoring/__init__.py,sha256=Y1bKi2D6_oxLNlISSEn3AVOw_5amqHjY8mfhh-t0urY,679
15
+ exonware/xwnode/common/monitoring/metrics.py,sha256=YFsy4AoMk9ijB2lreOMgDoGICmB1OJuhyrsu_sEZ4Ok,19454
16
+ exonware/xwnode/common/monitoring/pattern_detector.py,sha256=kbuePdePiEPNI7lLuzVK1u8OD_zH-yjYpR6o_0s0FyM,21668
17
+ exonware/xwnode/common/monitoring/performance_monitor.py,sha256=EHgpQpx0idL-J_OBvlzjzBmzrBI4aGelWoCL0Gl7rPk,17474
18
+ exonware/xwnode/common/patterns/__init__.py,sha256=CD-BOG0Fw1kmD2edmgLqOFahc7kv6Qn5bcsht4A12E4,675
19
+ exonware/xwnode/common/patterns/advisor.py,sha256=40pP7DRopEwlHv-QtSxeyeZC0ZJwhL-SbqVmb6G49gU,18189
20
+ exonware/xwnode/common/patterns/flyweight.py,sha256=ql0kKKOILJEOfUmw95WBjFA55u4MvlX9NhDvQxdE6ek,11347
21
+ exonware/xwnode/common/patterns/registry.py,sha256=mbuTMNdeUzTEeG2EbwMfBxhYvzJaDs2JKwHimRL62FM,29231
22
+ exonware/xwnode/common/utils/__init__.py,sha256=U8MaUHOqaIK5_nF7ZFDeQ9FBoxTGTVg5Ce1TqvOnL4Q,669
23
+ exonware/xwnode/common/utils/simple.py,sha256=3hylQDJ9CRSIKdu3sc3qYJa2bQlVo7AlMQ3a0THNLxs,9079
24
+ exonware/xwnode/common/utils/utils.py,sha256=ma_C5Xpgpo0053jEWqzco4-KNyBOWanJhKvQ3Masq84,17554
25
+ exonware/xwnode/edges/strategies/__init__.py,sha256=SBijKvPKilaKIn4uUKXj2L7wfMGEP8QXTR5ECKl20fY,771
26
+ exonware/xwnode/edges/strategies/_base_edge.py,sha256=hmOEL3M0wz95h6FrcTBf9dzSiwemRuNyNH9bgk27AY8,13602
27
+ exonware/xwnode/edges/strategies/adj_list.py,sha256=RdvQayElMahOa239urnWqwQVkui8phj-0fsyI8FsUvM,8162
28
+ exonware/xwnode/edges/strategies/adj_matrix.py,sha256=pAsW5s264WvwUEYX7Ezgl-DW87kP8V6LZeDOuVXevqU,14744
29
+ exonware/xwnode/edges/strategies/base.py,sha256=jhOnLRXmiQjTTg2dLRtSk9WqC6zaingXy08GDGDiXnM,6251
30
+ exonware/xwnode/edges/strategies/edge_adj_list.py,sha256=_QvMiSnX5Zt4pUqu6O06IceDTCKB8sOMBs5XYWte3Co,13986
31
+ exonware/xwnode/edges/strategies/edge_adj_matrix.py,sha256=Iyb2TCI7n9xCH-ZwQVZQLrJV_6MOIwKz1iECLA2rhVU,17551
32
+ exonware/xwnode/edges/strategies/edge_bidir_wrapper.py,sha256=wSv4XMVoBjjuAb9m22t5ZG3_XSynJYwmeUQe7fnLFQ0,18050
33
+ exonware/xwnode/edges/strategies/edge_block_adj_matrix.py,sha256=2TVJhSFyxqvbgPNNHnFhqsgD4ETzKS0IOS5lBEaDfok,21142
34
+ exonware/xwnode/edges/strategies/edge_coo.py,sha256=o9unqJeOuT5skhr4OSNCRTtGnvdsBSK6F8iFEQkGv_g,19970
35
+ exonware/xwnode/edges/strategies/edge_csc.py,sha256=wYtxoE7_-Ulaxhk9L8oq9VZbD4dZ1tCNESijY-wydU4,16781
36
+ exonware/xwnode/edges/strategies/edge_csr.py,sha256=My4-weNwJ9SS6cVr_aoEz2hZOJltRB23DakTEEHr90o,18634
37
+ exonware/xwnode/edges/strategies/edge_dynamic_adj_list.py,sha256=gl9CpS02LAqzNrZ7nhVWNE5iBTYLRw1SlSUrmZEXfoY,19668
38
+ exonware/xwnode/edges/strategies/edge_flow_network.py,sha256=Fgy36PBGuR-47SrNat7cc7SdDUSppScAY7bJ8m6uqJg,21473
39
+ exonware/xwnode/edges/strategies/edge_hyperedge_set.py,sha256=oYEtaen8pXX9fIKClTP9wxJ7aqTOJ_hS68WlHkw8Vf4,20764
40
+ exonware/xwnode/edges/strategies/edge_neural_graph.py,sha256=wFoYGdxh3wV2P0KmbKGkAmUyLmRtdXB_dYlGQVBYlmc,25117
41
+ exonware/xwnode/edges/strategies/edge_octree.py,sha256=NxNxaVQze97IZvkPGSkp7cuIZSj1XZ7VpEdfiLmH9YA,22969
42
+ exonware/xwnode/edges/strategies/edge_property_store.py,sha256=s5e70_soYYSZIqjBXU_zWY9FXI_bQjFmZzknu6qPQr0,25630
43
+ exonware/xwnode/edges/strategies/edge_quadtree.py,sha256=Br8v3F0Pi5G8T1UA_3IXQ6cvNQ1oJOOYAZ9GeQ2f_M8,20149
44
+ exonware/xwnode/edges/strategies/edge_rtree.py,sha256=0xGjjAzhno_PmCr-fc1JQCb1SVyLyE_J20CEYKDy118,31454
45
+ exonware/xwnode/edges/strategies/edge_temporal_edgeset.py,sha256=RjGu_u6C8sr4U7Oc4PhmxxvXMH7dycOpBVE4N1yO1qY,22127
46
+ exonware/xwnode/edges/strategies/edge_tree_graph_basic.py,sha256=GjQAT1kAcOw8eCqsIKbr7NJpXM2_FWCXk_XJN1fAlaE,9996
47
+ exonware/xwnode/edges/strategies/edge_weighted_graph.py,sha256=1w9qBMUgOf_s0bAXryXOZe_XrBOLpdofYCQNZguJfZs,16508
48
+ exonware/xwnode/nodes/strategies/__init__.py,sha256=lEibqjU--1j5DCt1oKKmuWFddIXjuNf-bvtyk3QFQd8,1197
49
+ exonware/xwnode/nodes/strategies/_base_node.py,sha256=TE7ND2qSQnruJ01h1JtLI3WIzoJiLPdJnan5HeFWvwA,10270
50
+ exonware/xwnode/nodes/strategies/adjacency_list.py,sha256=d8U4Oyptmy0Nc4ql2P-ismbRoChoCqah0gWLC0QOxIE,9049
51
+ exonware/xwnode/nodes/strategies/aho_corasick.py,sha256=fg30fOm-nKdVbKTNq365iCHqM_-eqQzn-uttoOB7Q7U,12515
52
+ exonware/xwnode/nodes/strategies/array_list.py,sha256=pgkMwMVAX9sNPDfF23VE32_otl1HzysR_K2bVzG-WvI,7185
53
+ exonware/xwnode/nodes/strategies/base.py,sha256=6v65TdOvgDcYqZipyU4fsbuEAPfuhxo2rqi2wowbAa4,9627
54
+ exonware/xwnode/nodes/strategies/contracts.py,sha256=j0YugjQcR82L5GXogzbYdN3O80NUr7mYBKKZe06MoOs,3225
55
+ exonware/xwnode/nodes/strategies/deque.py,sha256=xNFyz7Mm9doGTPz4HWjz-46ulAqKJsqt77EtIGl2Hf4,6491
56
+ exonware/xwnode/nodes/strategies/hash_map.py,sha256=fEPE3xconVKzbx5BsQ84PHG-wy2Il2J8F7EoKF8s5mY,4617
57
+ exonware/xwnode/nodes/strategies/heap.py,sha256=VVntkz0vJgug9qpAwCTouQrmc1QNpUWMt1AuncGQUKk,10441
58
+ exonware/xwnode/nodes/strategies/linked_list.py,sha256=5thO3Bpw94S_Pnz5GQyIU5rGwXZY8IHTKyB-JHVS53c,7873
59
+ exonware/xwnode/nodes/strategies/node_aho_corasick.py,sha256=iH0yBzc43bh8hJ3ophazLJ2XTxIVhfThHIfwnG8pmG4,18674
60
+ exonware/xwnode/nodes/strategies/node_array_list.py,sha256=XdHvX1yK2BSrBZniMr1zQBY9Yms4A8P8t3hVk4lnzGQ,6113
61
+ exonware/xwnode/nodes/strategies/node_avl_tree.py,sha256=JEd3Xqb8KvA25e9kxYurHpeiXRd_THtWCEKac2NwdQs,12937
62
+ exonware/xwnode/nodes/strategies/node_b_plus_tree.py,sha256=19WpKY70wnEzl-h2ONEMIJSy3exAo5srJDnzGyZqiFk,18974
63
+ exonware/xwnode/nodes/strategies/node_bitmap.py,sha256=aI-IK-ydWDmZw_w0U5ZwAcJ1Rt7u4RAPWXHzs7MVjbw,15169
64
+ exonware/xwnode/nodes/strategies/node_bitset_dynamic.py,sha256=w9UceT9c9ahkBggJ1q96Jao-Y3NyQIhvUOcEsh-BGnE,18952
65
+ exonware/xwnode/nodes/strategies/node_bloom_filter.py,sha256=Oi2dQ7THEA_bplnPwxid-p8ltjf9qA1jsT1FimOJgvQ,13313
66
+ exonware/xwnode/nodes/strategies/node_btree.py,sha256=ekudIn6S8Gys5ayRECbELDWQ096CK0Wi-x-4yajlhHE,12361
67
+ exonware/xwnode/nodes/strategies/node_count_min_sketch.py,sha256=2tyMmBPFX7daU7Z5sQZMyJa9MXt-98bTQlcXkPdzTGA,17993
68
+ exonware/xwnode/nodes/strategies/node_cow_tree.py,sha256=jUwhavdGIanp2ia6YHwLXgqdShDlPGW6X3vAwj9K7RE,17216
69
+ exonware/xwnode/nodes/strategies/node_cuckoo_hash.py,sha256=HkwLYMfzDxBZ-UhLviBmU1v2yo1R-0sCqGkl3_ugHDQ,14958
70
+ exonware/xwnode/nodes/strategies/node_fenwick_tree.py,sha256=1M1oHIdbWLwo60KDKaRjjWyDHq9b3burmLIrLt_t2Y4,10821
71
+ exonware/xwnode/nodes/strategies/node_hash_map.py,sha256=iAffwQ22dmZgjGBo3fXtrf87868B5HOS2MgoaDFrYbQ,8742
72
+ exonware/xwnode/nodes/strategies/node_heap.py,sha256=AAlNRQkFQY-0eaDczN8vweov1_f01XmQjHARHLA3eB4,7013
73
+ exonware/xwnode/nodes/strategies/node_hyperloglog.py,sha256=K2yuhocNwXxj44RBNXnnTSp-JlG1-VzEW_VfpSsQxpE,14917
74
+ exonware/xwnode/nodes/strategies/node_linked_list.py,sha256=CV_qoYgeMAjB3gYpuMyuU3XWmmuVa3qqFrAvD6b_dVo,13513
75
+ exonware/xwnode/nodes/strategies/node_lsm_tree.py,sha256=oWgulsb0Qqfq5PBze3PPL2eNURG5VRLkuVlE05v36ss,14850
76
+ exonware/xwnode/nodes/strategies/node_ordered_map.py,sha256=H2TXHuhEOuz-CSKEaE8TGAwwaB2kAADnkTAnqpfJL0Y,14620
77
+ exonware/xwnode/nodes/strategies/node_ordered_map_balanced.py,sha256=u15_TVz4QMn79kMNcXQGpW6yJhPPi1jWWtx5d03EQ1k,20602
78
+ exonware/xwnode/nodes/strategies/node_patricia.py,sha256=cmx2oNM30Dhsj-NmvWw2GhqOsPDquwzSQUFLVgwwuBY,18790
79
+ exonware/xwnode/nodes/strategies/node_persistent_tree.py,sha256=fsdzNJYpTapbqgyxC6FAjGLYphgqufk9fHRjblHQuG4,14445
80
+ exonware/xwnode/nodes/strategies/node_radix_trie.py,sha256=vijspHG71lsU_zTNTNdWnCCdM3CjSn5FQgoG0qwyIPg,17236
81
+ exonware/xwnode/nodes/strategies/node_red_black_tree.py,sha256=cN94DNZEqZaVPLiYRAdK5BQCQSoMXGLEIhanRMqvU80,17800
82
+ exonware/xwnode/nodes/strategies/node_roaring_bitmap.py,sha256=nl3yksqHd8_3e6hBBoYL8Nl7KD1qRvEfs5346-P2Eic,20541
83
+ exonware/xwnode/nodes/strategies/node_segment_tree.py,sha256=-saFgpRyxSXlJNYUzI9gs2ERkww89DGtQQFSm06Ctfw,10874
84
+ exonware/xwnode/nodes/strategies/node_set_hash.py,sha256=zZX4zwRIuJRyhyaCIERS392No4bo0sxZRJmIkboC3wc,13379
85
+ exonware/xwnode/nodes/strategies/node_set_tree.py,sha256=DShmVvBi9vpmXXWrof92Lfb6HePIs2OoubrQUJzCT6U,15958
86
+ exonware/xwnode/nodes/strategies/node_skip_list.py,sha256=YLjBShPS4BHBRx_mlwevWOrtHS1O8f_LN93CgWFDjbw,11461
87
+ exonware/xwnode/nodes/strategies/node_splay_tree.py,sha256=xpzNwwL-o-iNG1xxt_wvkf7j1vsPmExWZ-xPdQEGFM8,13287
88
+ exonware/xwnode/nodes/strategies/node_suffix_array.py,sha256=TbWEBd8GnVHcPat4AEk5Q-mGvcXBzDegpQ0Gic8c8As,16984
89
+ exonware/xwnode/nodes/strategies/node_treap.py,sha256=I7aFY2uSecFm0YgoVCep03eol6OCb503Ge1zeqBQRSA,13897
90
+ exonware/xwnode/nodes/strategies/node_tree_graph_hybrid.py,sha256=rMjml66iaLunTnTxWpyvJHliMGLzbCnIExlfPbfCDkE,53757
91
+ exonware/xwnode/nodes/strategies/node_trie.py,sha256=5j2b20bIsSooufFj05bD3j1xR_0bi7UyQW338sH7Bvw,8678
92
+ exonware/xwnode/nodes/strategies/node_union_find.py,sha256=5MV7fPCFLbbdJvN2qSBaTZIuzLsl8zvdgzfH2jlNfGU,7271
93
+ exonware/xwnode/nodes/strategies/node_xdata_optimized.py,sha256=n1T4Y4s6d0oqwRMhWDjfV9Rf5884_C9fPPh_dCq4T6I,14495
94
+ exonware/xwnode/nodes/strategies/priority_queue.py,sha256=CN-pSnIDlEhTRQq7oYDHf_z53en-xB5c4J39UKw_YZ4,7930
95
+ exonware/xwnode/nodes/strategies/queue.py,sha256=JyJGBanifGAv5f6Mx1dZbsrZj2Bbk9KjiumKg8UM-j0,5391
96
+ exonware/xwnode/nodes/strategies/sparse_matrix.py,sha256=_PMHWLwScI0zpVWcVDVjaSxmARqOwq07kXF8icBjtlc,7250
97
+ exonware/xwnode/nodes/strategies/stack.py,sha256=Ci6EdBoAZ5z3r_GaLRfddjuN-KQKqpCkNSUmUa-goZw,5158
98
+ exonware/xwnode/nodes/strategies/trie.py,sha256=hlzzr7gStVbri12SlLFLNYEA-5WXJ-LkoDPOsa8qU7I,9096
99
+ exonware/xwnode/nodes/strategies/union_find.py,sha256=ixCWYNI2Jtk8DqEauHL6qBitHViy7EZQwH-hawU2q34,10387
100
+ exonware/xwnode/queries/executors/__init__.py,sha256=xrNpvLWvJgwV7e6XAbuFpwDoz81cWq-L8wRo9KxnIxw,1166
101
+ exonware/xwnode/queries/executors/base.py,sha256=aEzoQgRj3AotOKmSHTby9obwwtDBEcP-NKj5lfgugW4,7783
102
+ exonware/xwnode/queries/executors/capability_checker.py,sha256=3QxF6IBmQKKUBi1byT5kRmMbLsoKi7mCy9BZInjxlSs,8847
103
+ exonware/xwnode/queries/executors/contracts.py,sha256=gWHKBZB5JH9E8wzjpKnZb8sfDm93J8nU519LLkwwmbI,5223
104
+ exonware/xwnode/queries/executors/engine.py,sha256=N4s4iKODS2lI2P3cbXlkoQUgsx4shRvK2TVHrkYCa0Y,7092
105
+ exonware/xwnode/queries/executors/errors.py,sha256=JCc8km1-OR_6BjTDSXcctlvSa5j8f9Azt9aNYOgnujM,1890
106
+ exonware/xwnode/queries/executors/registry.py,sha256=VJzGW5e2C6hLVutj0wr9FuipmFqSjwr58-r7jgU1ZWc,5009
107
+ exonware/xwnode/queries/executors/types.py,sha256=lNUwSIfVNuSiEcl-CXuOXDoYwI2F0W-EXQ72yYNvN-o,2770
108
+ exonware/xwnode/queries/executors/advanced/__init__.py,sha256=DivB0uqu7ytZsu5YilnWt_-74D7f_JSNvwJ0ZHGvGUU,1146
109
+ exonware/xwnode/queries/executors/advanced/aggregate_executor.py,sha256=S8eJTJ-kh2g7EDWrtPfhaObv5NHLgTG6FTkO7Pq7Y9k,1498
110
+ exonware/xwnode/queries/executors/advanced/ask_executor.py,sha256=KSFxChP6lncpCJuH8WSevS4Gz17oDvg8uSiI1lFkNMk,1432
111
+ exonware/xwnode/queries/executors/advanced/construct_executor.py,sha256=R0x8F3S4aAfCilvVtMH7uX6Q4Sibx-W35zQPsGKWzNY,1493
112
+ exonware/xwnode/queries/executors/advanced/describe_executor.py,sha256=PaO8ArewLe0tGy_TzQdvEOlzavYdCKBR5RTjd2tBrCk,1479
113
+ exonware/xwnode/queries/executors/advanced/for_loop_executor.py,sha256=zQt9rV9Eqf22P1JNjx93jpCIJZjno4wTlqHo7IsYOWg,1453
114
+ exonware/xwnode/queries/executors/advanced/foreach_executor.py,sha256=4u4d5xO0hqcNoZuN9oAb0rbwxzEIqHYeifpCE38ZJvM,1476
115
+ exonware/xwnode/queries/executors/advanced/join_executor.py,sha256=ex_B_oDd2fwWOHitd_qYZWadSfRFrPUsAH6e4_XJAv0,1443
116
+ exonware/xwnode/queries/executors/advanced/let_executor.py,sha256=54lQjqnGoGPN_Jy73aD4VsZHhMeVdfavAM47ZhA43pw,1438
117
+ exonware/xwnode/queries/executors/advanced/mutation_executor.py,sha256=0TDL-OhyFY3L-r-R5B9vF7G1Foy86IFC8ErmFpHytC8,1476
118
+ exonware/xwnode/queries/executors/advanced/options_executor.py,sha256=s251p7TKwt4be0U9J6yHPKeguMq1seDRh4uHdT_aAuI,1465
119
+ exonware/xwnode/queries/executors/advanced/pipe_executor.py,sha256=j38ikIPSC0xjCAvi115NGRKcJ15B5Mq_oGNcMeK2TYQ,1432
120
+ exonware/xwnode/queries/executors/advanced/subscribe_executor.py,sha256=zMP5TgA8TUThmHIGkmBHbTfPUhSwaf5X_2AtZKADluw,1489
121
+ exonware/xwnode/queries/executors/advanced/subscription_executor.py,sha256=20zzZTGgvrINsTRvD2Z1G4ruFv6ZEmWNmHwot3LoTwk,1514
122
+ exonware/xwnode/queries/executors/advanced/union_executor.py,sha256=sQ4958QIaJMtmXgFU-Hmk2v6fw6uL1bpsnfDSV5_x7Q,1454
123
+ exonware/xwnode/queries/executors/advanced/window_executor.py,sha256=LB73nRAM2mE3Pf9HPei3b9DWvQmwIyxOfa_Qzp92H_M,1519
124
+ exonware/xwnode/queries/executors/advanced/with_cte_executor.py,sha256=NJdG6FmunZN5y9HEmMeT-63nXVhoz8LExKcTbgC_x_Y,1464
125
+ exonware/xwnode/queries/executors/aggregation/__init__.py,sha256=29fKp5tzR8qOpDnLaVHwItdrqiiIhUkOMfJhVWqRUJM,559
126
+ exonware/xwnode/queries/executors/aggregation/avg_executor.py,sha256=e8w6h8cTh8hnUq1W5u4VWgTWmrzWs6iGkY0SQyQpZGI,1446
127
+ exonware/xwnode/queries/executors/aggregation/count_executor.py,sha256=XQyaTAlwxCKBEJg5vdjG5bJw-XfJRjekvN-U7KijhVY,1146
128
+ exonware/xwnode/queries/executors/aggregation/distinct_executor.py,sha256=BwJQ_Hta4lcvKrzQzjivIOo3lYlruyqGWEsAuq8qDP8,1492
129
+ exonware/xwnode/queries/executors/aggregation/group_executor.py,sha256=0ZkB-823AqpE2sILKblNyBt9J6nXTMlyP6wKtw_-HXA,1463
130
+ exonware/xwnode/queries/executors/aggregation/having_executor.py,sha256=1nTaVUXaDEVZQsfX6HsoteuAoTXS_WrQmf3Hrhxa-7o,1462
131
+ exonware/xwnode/queries/executors/aggregation/max_executor.py,sha256=ueChhcWXjPTfQudqMuE0UT7uy70UrIP3janZlMuC7kA,1431
132
+ exonware/xwnode/queries/executors/aggregation/min_executor.py,sha256=p0YNxvarXgAMVNz5NpXtrZ_lRtO4K1tMUcyjYF3ippY,1431
133
+ exonware/xwnode/queries/executors/aggregation/sum_executor.py,sha256=JDUc4IW9X6bZF95g8k0rdkeRXoch6httltP1pj5DJhU,1442
134
+ exonware/xwnode/queries/executors/aggregation/summarize_executor.py,sha256=LRq4sWtvv3wMaQDf4F3CleDAO3vHPubSzU1zyZYYzLc,1505
135
+ exonware/xwnode/queries/executors/array/__init__.py,sha256=4AGrHjYNq4pz92jViMixc_P06I9zQMC0ebM2l4HjeJU,190
136
+ exonware/xwnode/queries/executors/array/indexing_executor.py,sha256=ViJuISTorTWqTphbV26MAB4eiY58M8dvPXf1xEKeC_0,1552
137
+ exonware/xwnode/queries/executors/array/slicing_executor.py,sha256=6sVHHm9fmNrXuNNTSAmMMahqP7GdwMXvXfJ1SvHBTeA,1520
138
+ exonware/xwnode/queries/executors/core/__init__.py,sha256=gX7xCXEWO-Y2NtFAqFhKZHccv3agm3ar8rGViUpiV8I,443
139
+ exonware/xwnode/queries/executors/core/create_executor.py,sha256=xP9OnUa4y7_5xqMXQGtuOxgS_955Jx_xF0NXGPXmp1A,3171
140
+ exonware/xwnode/queries/executors/core/delete_executor.py,sha256=Oqfk85TudZH_2vfOoe8hXRRKCUuUY1OTRihr4AeA7j8,3077
141
+ exonware/xwnode/queries/executors/core/drop_executor.py,sha256=YbERlA4g5X4ilozeVQNsagnGEh4m0YwtXzt3GHXJ4cg,3070
142
+ exonware/xwnode/queries/executors/core/insert_executor.py,sha256=-ybQXnjCpkVxMXzb4pB8ZzQ0lD-roG4IBG-Tc2KgAYo,1190
143
+ exonware/xwnode/queries/executors/core/select_executor.py,sha256=ioFmgmIPSVfxBGRNxCUSNIwaWLJF1sEbWFi_CKRwxPA,5365
144
+ exonware/xwnode/queries/executors/core/update_executor.py,sha256=KhAEuGB2hmQcuHoIvmUxDS_GQtJs8JNlrKHmpd7xhdo,3292
145
+ exonware/xwnode/queries/executors/data/__init__.py,sha256=VmOnd8M4oFrNpQKEAvPW0V4qb-zvv4VFpYugy8hZkdg,297
146
+ exonware/xwnode/queries/executors/data/alter_executor.py,sha256=wTiVoLiyeuOxO_vqI5232kqfOoDanSKUOFiXpphqu-o,1442
147
+ exonware/xwnode/queries/executors/data/load_executor.py,sha256=s9ipZCb3tBba05SQeHxiL9QyQ8Q0mz4N1lyn7uQ7gzE,1441
148
+ exonware/xwnode/queries/executors/data/merge_executor.py,sha256=bxDBQnc1CoWtE5yBO6pSmUrRehgD9ayciULexMLHzqo,1438
149
+ exonware/xwnode/queries/executors/data/store_executor.py,sha256=Ma3H3ukPwoZFWOz6FLisj0PsXiLqnbSmGEBnO99rmN0,1455
150
+ exonware/xwnode/queries/executors/filtering/__init__.py,sha256=GyCHfxXGXumimpoPbCnka5-G1su6QnVfHkyZb7xF8UA,683
151
+ exonware/xwnode/queries/executors/filtering/between_executor.py,sha256=9OJTp2dXas0PXIiXuce2P6tE0YgFumsHjA1OsDw4tkw,2515
152
+ exonware/xwnode/queries/executors/filtering/filter_executor.py,sha256=xBB8BciVuPFF2zhyQGvhOo8lNbwG9Z0anhdKr-YFGnA,2521
153
+ exonware/xwnode/queries/executors/filtering/has_executor.py,sha256=e9dRGsZ26QPK6uL32fh_S6DzvGMliPy31pcPkcNZWd8,2142
154
+ exonware/xwnode/queries/executors/filtering/in_executor.py,sha256=OoRkuaNK0jTn2uEUjLW7DTs3Z4OM_NhxxopLt7bpnao,2136
155
+ exonware/xwnode/queries/executors/filtering/like_executor.py,sha256=DzUST8On86cTdtkHGMS-_u0NBqgmtKEEmq7_xUPYXTM,2398
156
+ exonware/xwnode/queries/executors/filtering/optional_executor.py,sha256=QcgCZG5NfzXxZwq6ZScf827eIz6COtr8Q6Zc3VSjYdg,2499
157
+ exonware/xwnode/queries/executors/filtering/range_executor.py,sha256=cMjWmpgai4sFEyzFA33p5ERSG-4wW2U-xH3rUnzi_GQ,2584
158
+ exonware/xwnode/queries/executors/filtering/term_executor.py,sha256=HMLg2PuTloOLLrqm0ZJy0tHfBRZRpW3SnLoMkg3wHyI,2506
159
+ exonware/xwnode/queries/executors/filtering/values_executor.py,sha256=cl7dDJwBWh6J05NQfAelWAYdgz2i1OBtYutAI85E_ng,2185
160
+ exonware/xwnode/queries/executors/filtering/where_executor.py,sha256=VDBNhKtwWxtDIxLA1EFF2b26UFgHYeYP43822-zFEGk,1434
161
+ exonware/xwnode/queries/executors/graph/__init__.py,sha256=pzyyiZ_mMXpHbE_sDtvb4OYI2l0rAuRRT3bDN2MCXMA,374
162
+ exonware/xwnode/queries/executors/graph/in_traverse_executor.py,sha256=WyxgF3PU9ctsuDSzYhevQrjIij3ED8jh9jtMKLyCNvg,1577
163
+ exonware/xwnode/queries/executors/graph/match_executor.py,sha256=debemc5-uuF0ynjQlScTIhuO-7x1lRmlU9-w8ybasHg,1517
164
+ exonware/xwnode/queries/executors/graph/out_executor.py,sha256=6gS6J3qHvS_AjVJFqSZEpGpK_y4qo2FR9JWKE2iW9bw,1499
165
+ exonware/xwnode/queries/executors/graph/path_executor.py,sha256=I9opyCGLUEOAT5wA1new0Fde5rq7pLN5-k8yiC-Rrek,1510
166
+ exonware/xwnode/queries/executors/graph/return_executor.py,sha256=TdWF4ssjJhMFlkCMMKgLwR-ffoKM8sE_f8ZJ6WGG7CE,1532
167
+ exonware/xwnode/queries/executors/ordering/__init__.py,sha256=vytddfkWSQTDKEpxT9JXgrG5oQB39giS7JYJ3JqKW8w,169
168
+ exonware/xwnode/queries/executors/ordering/by_executor.py,sha256=Xi7ZGdN_0Qkg6ph7zcl_yQ1wL1Rvj1we6V_XloIS22M,1420
169
+ exonware/xwnode/queries/executors/ordering/order_executor.py,sha256=Fd6BwUHjQoatCHqdon8-YLe5e4IsYKwmT-wgsIgh9EM,1498
170
+ exonware/xwnode/queries/executors/projection/__init__.py,sha256=ybPligPcjTYH6Ia6dUbvCxq37zg3L7xlSyHoGjD6Z-o,189
171
+ exonware/xwnode/queries/executors/projection/extend_executor.py,sha256=eqLjnDjygTzIj3DT1_2aI6dgUaS7wvjCjm70jLKxMlM,1472
172
+ exonware/xwnode/queries/executors/projection/project_executor.py,sha256=J4bVvklJojBqULbKFYePyaHtrnHaxpipjTNv3WPU0oU,1481
173
+ exonware/xwnode/queries/strategies/__init__.py,sha256=BBMmbOyb9sGs9LVvMlllzEM5CTTxSlhAdKkaLX5aUr8,617
174
+ exonware/xwnode/queries/strategies/base.py,sha256=Q0lZ-Il7-5nxBfJDGTMKtmjiqvXbay95BJpR08z82Hc,8357
175
+ exonware/xwnode/queries/strategies/cql.py,sha256=114V0gTILlAiUVk3n9DYQ9PYOhFKIbsE_PimkivJzn8,7524
176
+ exonware/xwnode/queries/strategies/cypher.py,sha256=BY1DJDTCuJhqZb96T40Sx9h9-SPCjgLF_SkY8hS-lAY,6560
177
+ exonware/xwnode/queries/strategies/datalog.py,sha256=HynORkOOnyZXMOV7Sc-etX70rPgXqAo6rLCoX6zv3xE,2740
178
+ exonware/xwnode/queries/strategies/elastic_dsl.py,sha256=9myBMOT6rQZBq8Rn2ypEW_SRy6EcbhH3CD8IuZO28og,2771
179
+ exonware/xwnode/queries/strategies/eql.py,sha256=SWVg_lFPCzQn_40WwgcBXgvt4NH9mmVRpKYWmHbHPSw,2685
180
+ exonware/xwnode/queries/strategies/flux.py,sha256=PZHH_K7BDlPqugzMfx5FK8pT41uMOPnTAVAuBjhePo4,2747
181
+ exonware/xwnode/queries/strategies/gql.py,sha256=lNFTH31vxslblHeeqHXxzvW0qN_7TbR8JFr2kkOq8bk,2409
182
+ exonware/xwnode/queries/strategies/graphql.py,sha256=UgnsMk709lBYZ-MwEFgZSW4dCFHkOf_jdt3o82onZ24,7402
183
+ exonware/xwnode/queries/strategies/gremlin.py,sha256=R2Z1aUNCcNRGmY7pSycMWds98D_G7JfTIgNek8PUFLs,6850
184
+ exonware/xwnode/queries/strategies/hiveql.py,sha256=JCMUILxWOxKZxY-vIh8Hm3sLzdm0Wh88uCtuet27uo4,7813
185
+ exonware/xwnode/queries/strategies/hql.py,sha256=VGwNGVuvmphLBgmdFgdEBWu7fhp72qhj2agIB5wkADA,2692
186
+ exonware/xwnode/queries/strategies/jmespath.py,sha256=_OJIjBOgr2du4GHM7akN0dmiSrKdTT67eBku_DY51nw,7963
187
+ exonware/xwnode/queries/strategies/jq.py,sha256=ztptQgojSxPY3ma2cSwHCFxnzUksq-lDPomE5FABMZE,2333
188
+ exonware/xwnode/queries/strategies/json_query.py,sha256=7bI-m22FBxnUYPtq5zo4tcN8TU2-kN_R8jFxTDxlnIA,2306
189
+ exonware/xwnode/queries/strategies/jsoniq.py,sha256=E-zVPzLmm-Oae6BZm1gOn0t6_r-goEjLHKY2cJaKURQ,8162
190
+ exonware/xwnode/queries/strategies/kql.py,sha256=S4Y1ioQ7rL5uqtg4nJnGhigNw9nPF6ujcImrtne4usE,2671
191
+ exonware/xwnode/queries/strategies/linq.py,sha256=vs4EO5nUTocJ6G8JyT_3jrpJfmyc6yYJxXn7ozh389k,7994
192
+ exonware/xwnode/queries/strategies/logql.py,sha256=S5y1MlJnoSO8YwPj6wpZyKEhMJnNqAQGpQUT1nH-5vk,2744
193
+ exonware/xwnode/queries/strategies/mql.py,sha256=XQmCtV4WV-01Wf2Nl_0Ja2Lxx9WzY5JpRG8m1vkppFg,2554
194
+ exonware/xwnode/queries/strategies/n1ql.py,sha256=t50ldmK5pt3vqs0bBJBSYW0DyTttw9IE2oUnR_R1dzc,7852
195
+ exonware/xwnode/queries/strategies/partiql.py,sha256=78XdVlF4luvKYOSMyh87nkPZIH2WJrWOiKaYooFS3Mk,2717
196
+ exonware/xwnode/queries/strategies/pig.py,sha256=8-Wv0OHdqXdYLdIhWVT_4liFarRVRmAk-p8YDQagmVs,8530
197
+ exonware/xwnode/queries/strategies/promql.py,sha256=RcsP2z94Mnz184KTuO4QM22X0UEN7P_aWGUibKp2PJg,2714
198
+ exonware/xwnode/queries/strategies/sparql.py,sha256=5HyVv1lGtvAVsncHFiMbEx3xzymOACv7SHggPwiRPbo,7443
199
+ exonware/xwnode/queries/strategies/sql.py,sha256=zyMstIZSpYSopncmX2SZBIuh5Mqi0H8BnxRNxtyjJEw,10212
200
+ exonware/xwnode/queries/strategies/xml_query.py,sha256=ApYW8_CL8rGugiO2hntbdlNIS5g7fG-CbimSkhgY84s,2329
201
+ exonware/xwnode/queries/strategies/xpath.py,sha256=8_TDbZHhnH8soUrAIjpljEek9GcCrB31R0TWWPVnI_A,9120
202
+ exonware/xwnode/queries/strategies/xquery.py,sha256=sXbi0_Qy31UC3J6LwDhyx4njhA58QXJ9mCTcgWUyh-k,8692
203
+ exonware/xwnode/queries/strategies/xwnode_executor.py,sha256=tgY__1xyiN73WuuDOlxB59H9cY2FBCi75kHfy2oLF9w,12191
204
+ exonware/xwnode/queries/strategies/xwquery.py,sha256=MrAO8pJ5LkNPkB9uAeWV1_jYPK9CEBnHsEquqSSC9Sc,16193
205
+ exonware/xwnode/strategies/__init__.py,sha256=naVqHOT3UbJVdmb4J__ERTqe0JE-wwxwdpJubhsFhwU,7695
206
+ exonware_xwnode-0.0.1.14.dist-info/METADATA,sha256=RwAtnvD0rQDK4cdksJVp03LbVGmgkDBDE-7VCvYF71Q,5790
207
+ exonware_xwnode-0.0.1.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
208
+ exonware_xwnode-0.0.1.14.dist-info/licenses/LICENSE,sha256=w42ohoEUfhyT0NgiivAL4fWg2AMRLGnfXPMAR4EO-MU,1094
209
+ exonware_xwnode-0.0.1.14.dist-info/RECORD,,
@@ -1,13 +0,0 @@
1
- """
2
- Strategy Implementations
3
-
4
- This package contains all strategy implementations for the strategy system.
5
- """
6
-
7
- from ._base_node import aNodeStrategy
8
- from ._base_edge import aEdgeStrategy
9
-
10
- __all__ = [
11
- 'aNodeStrategy',
12
- 'aEdgeStrategy',
13
- ]