exonware-xwnode 0.0.1.18__tar.gz → 0.0.1.20__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (458) hide show
  1. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/PKG-INFO +2 -2
  2. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/README.md +1 -1
  3. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/demo_sql_results.py +1 -1
  4. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/enhanced_xnode_demo.py +1 -1
  5. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/simple_sql_test.py +1 -1
  6. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/test_sql_actions.py +1 -1
  7. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/console.py +10 -2
  8. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/run.py +14 -3
  9. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/requirements.txt +1 -1
  10. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/__init__.py +1 -1
  11. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/__init__.py +4 -3
  12. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/__init__.py +1 -1
  13. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/management/__init__.py +1 -1
  14. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/management/manager.py +2 -2
  15. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/management/migration.py +1 -1
  16. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/monitoring/__init__.py +1 -1
  17. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/monitoring/metrics.py +2 -2
  18. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/monitoring/pattern_detector.py +2 -2
  19. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/monitoring/performance_monitor.py +2 -2
  20. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/patterns/__init__.py +1 -1
  21. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/patterns/advisor.py +1 -1
  22. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/patterns/flyweight.py +2 -2
  23. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/patterns/registry.py +1 -1
  24. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/utils/__init__.py +1 -1
  25. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/contracts.py +3 -3
  26. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/__init__.py +1 -1
  27. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/_base_edge.py +1 -1
  28. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/adj_list.py +1 -1
  29. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/adj_matrix.py +1 -1
  30. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/base.py +1 -1
  31. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_adj_list.py +1 -1
  32. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_adj_matrix.py +1 -1
  33. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_bidir_wrapper.py +1 -1
  34. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_block_adj_matrix.py +1 -1
  35. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_coo.py +1 -1
  36. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_csc.py +1 -1
  37. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_csr.py +1 -1
  38. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_dynamic_adj_list.py +1 -1
  39. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_flow_network.py +1 -1
  40. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_hyperedge_set.py +1 -1
  41. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_neural_graph.py +1 -1
  42. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_octree.py +1 -1
  43. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_property_store.py +1 -1
  44. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_quadtree.py +1 -1
  45. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_rtree.py +1 -1
  46. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_temporal_edgeset.py +1 -1
  47. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_tree_graph_basic.py +1 -1
  48. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/edges/strategies/edge_weighted_graph.py +1 -1
  49. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/errors.py +1 -1
  50. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/facade.py +3 -3
  51. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/__init__.py +1 -1
  52. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/_base_node.py +1 -1
  53. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/adjacency_list.py +2 -2
  54. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/aho_corasick.py +1 -1
  55. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/array_list.py +1 -1
  56. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/base.py +1 -1
  57. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/contracts.py +1 -1
  58. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/deque.py +2 -2
  59. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/hash_map.py +1 -1
  60. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/heap.py +1 -1
  61. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/linked_list.py +1 -1
  62. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_aho_corasick.py +1 -1
  63. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_array_list.py +1 -1
  64. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_avl_tree.py +1 -1
  65. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_b_plus_tree.py +1 -1
  66. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_bitmap.py +1 -1
  67. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_bitset_dynamic.py +1 -1
  68. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_bloom_filter.py +1 -1
  69. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_btree.py +1 -1
  70. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_count_min_sketch.py +1 -1
  71. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_cow_tree.py +1 -1
  72. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_cuckoo_hash.py +1 -1
  73. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_fenwick_tree.py +1 -1
  74. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_hash_map.py +1 -1
  75. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_heap.py +1 -1
  76. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_hyperloglog.py +1 -1
  77. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_linked_list.py +1 -1
  78. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_lsm_tree.py +1 -1
  79. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_ordered_map.py +1 -1
  80. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_ordered_map_balanced.py +1 -1
  81. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_patricia.py +1 -1
  82. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_persistent_tree.py +1 -1
  83. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_radix_trie.py +1 -1
  84. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_red_black_tree.py +1 -1
  85. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_roaring_bitmap.py +1 -1
  86. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_segment_tree.py +1 -1
  87. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_set_hash.py +1 -1
  88. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_set_tree.py +1 -1
  89. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_skip_list.py +1 -1
  90. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_splay_tree.py +1 -1
  91. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_suffix_array.py +1 -1
  92. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_treap.py +1 -1
  93. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_tree_graph_hybrid.py +1 -1
  94. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_trie.py +1 -1
  95. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_union_find.py +1 -1
  96. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/node_xdata_optimized.py +1 -1
  97. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/priority_queue.py +2 -2
  98. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/queue.py +2 -2
  99. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/sparse_matrix.py +2 -2
  100. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/stack.py +2 -2
  101. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/trie.py +1 -1
  102. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/nodes/strategies/union_find.py +1 -1
  103. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/__init__.py +2 -2
  104. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/aggregate_executor.py +2 -2
  105. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/ask_executor.py +2 -2
  106. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/construct_executor.py +2 -2
  107. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/describe_executor.py +2 -2
  108. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/for_loop_executor.py +2 -2
  109. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/foreach_executor.py +2 -2
  110. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/join_executor.py +2 -2
  111. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/let_executor.py +2 -2
  112. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/mutation_executor.py +2 -2
  113. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/options_executor.py +2 -2
  114. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/pipe_executor.py +2 -2
  115. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/subscribe_executor.py +2 -2
  116. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/subscription_executor.py +2 -2
  117. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/union_executor.py +2 -2
  118. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/window_executor.py +2 -2
  119. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/with_cte_executor.py +2 -2
  120. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/avg_executor.py +2 -2
  121. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/count_executor.py +1 -1
  122. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/distinct_executor.py +2 -2
  123. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/group_executor.py +2 -2
  124. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/having_executor.py +2 -2
  125. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/max_executor.py +2 -2
  126. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/min_executor.py +2 -2
  127. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/sum_executor.py +2 -2
  128. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/summarize_executor.py +2 -2
  129. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/array/indexing_executor.py +2 -2
  130. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/array/slicing_executor.py +2 -2
  131. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/base.py +2 -2
  132. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/capability_checker.py +1 -1
  133. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/contracts.py +2 -2
  134. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/core/create_executor.py +2 -2
  135. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/core/delete_executor.py +2 -2
  136. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/core/drop_executor.py +2 -2
  137. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/core/insert_executor.py +1 -1
  138. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/core/select_executor.py +2 -2
  139. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/core/update_executor.py +2 -2
  140. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/data/alter_executor.py +2 -2
  141. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/data/load_executor.py +2 -2
  142. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/data/merge_executor.py +2 -2
  143. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/data/store_executor.py +2 -2
  144. exonware_xwnode-0.0.1.18/src/exonware/xwnode/queries/executors/types.py → exonware_xwnode-0.0.1.20/src/exonware/xwnode/queries/executors/defs.py +4 -4
  145. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/engine.py +1 -1
  146. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/errors.py +1 -1
  147. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/between_executor.py +2 -2
  148. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/filter_executor.py +2 -2
  149. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/has_executor.py +2 -2
  150. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/in_executor.py +2 -2
  151. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/like_executor.py +2 -2
  152. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/optional_executor.py +2 -2
  153. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/range_executor.py +2 -2
  154. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/term_executor.py +2 -2
  155. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/values_executor.py +2 -2
  156. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/where_executor.py +1 -1
  157. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/graph/in_traverse_executor.py +2 -2
  158. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/graph/match_executor.py +2 -2
  159. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/graph/out_executor.py +2 -2
  160. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/graph/path_executor.py +2 -2
  161. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/graph/return_executor.py +2 -2
  162. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/ordering/by_executor.py +2 -2
  163. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/ordering/order_executor.py +2 -2
  164. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/projection/extend_executor.py +2 -2
  165. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/projection/project_executor.py +2 -2
  166. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/registry.py +1 -1
  167. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/parsers/__init__.py +1 -1
  168. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/parsers/base.py +1 -1
  169. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/parsers/contracts.py +1 -1
  170. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/parsers/errors.py +1 -1
  171. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/parsers/sql_param_extractor.py +1 -1
  172. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/__init__.py +1 -1
  173. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/base.py +1 -1
  174. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/cql.py +1 -1
  175. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/cypher.py +1 -1
  176. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/datalog.py +1 -1
  177. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/elastic_dsl.py +1 -1
  178. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/eql.py +1 -1
  179. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/flux.py +1 -1
  180. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/gql.py +1 -1
  181. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/graphql.py +1 -1
  182. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/gremlin.py +1 -1
  183. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/hiveql.py +1 -1
  184. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/hql.py +1 -1
  185. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/jmespath.py +1 -1
  186. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/jq.py +1 -1
  187. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/json_query.py +1 -1
  188. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/jsoniq.py +1 -1
  189. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/kql.py +1 -1
  190. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/linq.py +1 -1
  191. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/logql.py +1 -1
  192. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/mql.py +1 -1
  193. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/n1ql.py +1 -1
  194. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/partiql.py +1 -1
  195. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/pig.py +1 -1
  196. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/promql.py +1 -1
  197. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/sparql.py +1 -1
  198. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/sql.py +1 -1
  199. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/xml_query.py +1 -1
  200. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/xpath.py +1 -1
  201. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/xquery.py +1 -1
  202. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/xwnode_executor.py +1 -1
  203. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/strategies/xwquery.py +1 -1
  204. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/strategies/__init__.py +2 -2
  205. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/version.py +3 -3
  206. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/xwnode.py +1 -1
  207. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_a_plus_presets.py +1 -1
  208. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_query_strategies.py +1 -1
  209. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/.gitignore +0 -0
  210. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/LICENSE +0 -0
  211. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/50_OPERATIONS_IMPLEMENTATION_COMPLETE.md +0 -0
  212. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/COMPETITOR_ANALYSIS.md +0 -0
  213. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/COMPLETE_ARCHITECTURE_SUMMARY.md +0 -0
  214. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/CONSOLE_IMPLEMENTATION_SUMMARY.md +0 -0
  215. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/DESIGN_PATTERNS.md +0 -0
  216. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/DEV_GUIDELINES_COMPLIANCE.md +0 -0
  217. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/DEV_GUIDELINES_IMPLEMENTATION_COMPLETE.md +0 -0
  218. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/ENHANCED_STRATEGY_SYSTEM.md +0 -0
  219. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/FINAL_IMPLEMENTATION_SUMMARY.md +0 -0
  220. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/FINAL_VERIFICATION_REPORT.md +0 -0
  221. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/IMPLEMENTATION_SUCCESS_SUMMARY.md +0 -0
  222. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/MIGRATION_SUMMARY.md +0 -0
  223. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/NODE_INHERITANCE_AUDIT.md +0 -0
  224. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/PROJECT_PHASES.md +0 -0
  225. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/QUERY_OPERATIONS_ARCHITECTURE.md +0 -0
  226. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/REAL_EXECUTION_ENGINE_CONNECTED.md +0 -0
  227. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/REFACTORING_COMPLETE.md +0 -0
  228. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/REFACTORING_COMPLETE_SUCCESS.md +0 -0
  229. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/REFACTORING_PLAN.md +0 -0
  230. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/REFACTORING_SUCCESS.md +0 -0
  231. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/REFACTORING_SUMMARY.md +0 -0
  232. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/REFACTORING_VERIFICATION_COMPLETE.md +0 -0
  233. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/SQL_TO_XWQUERY_CONVERSION.md +0 -0
  234. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/XSYSTEM_INTEGRATION.md +0 -0
  235. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/docs/XWQUERY_SCRIPT.md +0 -0
  236. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/enhanced_strategy_demo.py +0 -0
  237. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/sql_demo_results.py +0 -0
  238. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/test_xwquery_script_system.py +0 -0
  239. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/IMPLEMENTATION_COMPLETE.md +0 -0
  240. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/LAZY_LOADING_FIX.md +0 -0
  241. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/README.md +0 -0
  242. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/__init__.py +0 -0
  243. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/data.py +0 -0
  244. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/query_examples.py +0 -0
  245. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/test_console.py +0 -0
  246. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_console/utils.py +0 -0
  247. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwnode_sql_actions.sql +0 -0
  248. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwquery_conversion_examples.py +0 -0
  249. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/examples/xwquery_script_demo.py +0 -0
  250. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/pyproject.toml +0 -0
  251. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/base.py +0 -0
  252. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/utils/simple.py +0 -0
  253. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/common/utils/utils.py +0 -0
  254. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/config.py +0 -0
  255. /exonware_xwnode-0.0.1.18/src/exonware/xwnode/types.py → /exonware_xwnode-0.0.1.20/src/exonware/xwnode/defs.py +0 -0
  256. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/advanced/__init__.py +0 -0
  257. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/aggregation/__init__.py +0 -0
  258. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/array/__init__.py +0 -0
  259. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/core/__init__.py +0 -0
  260. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/data/__init__.py +0 -0
  261. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/filtering/__init__.py +0 -0
  262. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/graph/__init__.py +0 -0
  263. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/ordering/__init__.py +0 -0
  264. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/exonware/xwnode/queries/executors/projection/__init__.py +0 -0
  265. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/src/xwnode_wrapper.py +0 -0
  266. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/README.md +0 -0
  267. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/XWQUERY_SCRIPT_TEST_SUMMARY.md +0 -0
  268. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/__init__.py +0 -0
  269. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/conftest.py +0 -0
  270. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/SQL_TO_XWQUERY_TEST_SUMMARY.md +0 -0
  271. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/__init__.py +0 -0
  272. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/conftest.py +0 -0
  273. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/data/README.md +0 -0
  274. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/data/expected/test_ecommerce_analytics.xwquery +0 -0
  275. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/data/expected/test_simple_users.xwquery +0 -0
  276. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/data/inputs/test_ecommerce_analytics.sql +0 -0
  277. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/data/inputs/test_simple_users.sql +0 -0
  278. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/debug_test.py +0 -0
  279. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/run_sql_to_xwquery_test.py +0 -0
  280. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/runner.py +0 -0
  281. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/simple_test.py +0 -0
  282. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_basic.py +0 -0
  283. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_core.py +0 -0
  284. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_core_final.py +0 -0
  285. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_core_focused.py +0 -0
  286. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_core_old.py +0 -0
  287. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_core_query_convert.py +0 -0
  288. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_core_simple.py +0 -0
  289. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_errors.py +0 -0
  290. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_facade.py +0 -0
  291. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_navigation.py +0 -0
  292. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_sql_to_xwquery_file_conversion.py +0 -0
  293. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_xnode_core.py +0 -0
  294. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_xwnode_query_action_executor.py +0 -0
  295. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/core/test_xwquery_script_strategy.py +0 -0
  296. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/__init__ copy.py +0 -0
  297. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/README.md +0 -0
  298. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/__init__.py +0 -0
  299. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/conftest.py +0 -0
  300. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/runner.py +0 -0
  301. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/src/xlib/xdata/__init__.py +0 -0
  302. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/test_performance_modes.py +0 -0
  303. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/test_runner.py +0 -0
  304. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/__init__.py +0 -0
  305. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/core_tests/README.md +0 -0
  306. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/core_tests/__init__.py +0 -0
  307. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/core_tests/conftest.py +0 -0
  308. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/core_tests/runner.py +0 -0
  309. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/core_tests/test_xnode_core.py +0 -0
  310. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/error_tests/__init__.py +0 -0
  311. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/error_tests/conftest.py +0 -0
  312. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/error_tests/runner.py +0 -0
  313. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/error_tests/test_errors.py +0 -0
  314. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/integration_tests/__init__.py +0 -0
  315. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/integration_tests/conftest.py +0 -0
  316. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/integration_tests/runner.py +0 -0
  317. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/integration_tests/test_integration.py +0 -0
  318. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/model_tests/__init__.py +0 -0
  319. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/model_tests/conftest.py +0 -0
  320. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/model_tests/runner.py +0 -0
  321. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/model_tests/test_model.py +0 -0
  322. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/navigation_tests/__init__.py +0 -0
  323. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/navigation_tests/conftest.py +0 -0
  324. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/navigation_tests/runner.py +0 -0
  325. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/navigation_tests/test_navigation.py +0 -0
  326. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/PERFORMANCE_IMPROVEMENTS.md +0 -0
  327. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/PERFORMANCE_SUMMARY.md +0 -0
  328. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/README.md +0 -0
  329. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/__init__.py +0 -0
  330. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/conftest.py +0 -0
  331. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/perf_xnode.csv +0 -0
  332. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/perf_xnode.py +0 -0
  333. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/perf_xnode_detailed.csv +0 -0
  334. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/runner.py +0 -0
  335. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/src/xlib/xdata/__init__.py +0 -0
  336. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/perf_test/test_performance.py +0 -0
  337. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/test_adaptive_mode.py +0 -0
  338. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/test_auto3_phase1.py +0 -0
  339. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/test_graph_functionality.py +0 -0
  340. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/test_new_features.py +0 -0
  341. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/delete_old_backup/original_location/unit/test_query_functionality.py +0 -0
  342. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/run_all_tests_clean.py +0 -0
  343. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/runner copy.py +0 -0
  344. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/__init__.py +0 -0
  345. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core/__init__.py +0 -0
  346. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core/test_errors.py +0 -0
  347. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core/test_facade.py +0 -0
  348. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core/test_navigation.py +0 -0
  349. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core/test_xnode_core.py +0 -0
  350. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core_tests/README.md +0 -0
  351. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core_tests/__init__.py +0 -0
  352. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core_tests/conftest.py +0 -0
  353. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/core_tests/runner.py +0 -0
  354. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/error_tests/__init__.py +0 -0
  355. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/error_tests/conftest.py +0 -0
  356. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/error_tests/runner.py +0 -0
  357. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/graph/__init__.py +0 -0
  358. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/graph/test_graph_ops.py +0 -0
  359. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/integration/__init__.py +0 -0
  360. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/integration/test_end_to_end.py +0 -0
  361. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/integration_tests/__init__.py +0 -0
  362. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/integration_tests/conftest.py +0 -0
  363. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/integration_tests/runner.py +0 -0
  364. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/model_tests/__init__.py +0 -0
  365. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/model_tests/conftest.py +0 -0
  366. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/model_tests/runner.py +0 -0
  367. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/model_tests/test_model.py +0 -0
  368. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/navigation_tests/__init__.py +0 -0
  369. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/navigation_tests/conftest.py +0 -0
  370. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/navigation_tests/runner.py +0 -0
  371. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/README.md +0 -0
  372. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/__init__.py +0 -0
  373. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/conftest.py +0 -0
  374. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/runner.py +0 -0
  375. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/test_adaptive_mode.py +0 -0
  376. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/test_config.py +0 -0
  377. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/test_dual_adaptive_mode.py +0 -0
  378. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/test_performance_benchmark.py +0 -0
  379. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_mode/test_performance_comparison.py +0 -0
  380. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/PERFORMANCE_IMPROVEMENTS.md +0 -0
  381. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/PERFORMANCE_SUMMARY.md +0 -0
  382. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/README.md +0 -0
  383. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/__init__.py +0 -0
  384. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/conftest.py +0 -0
  385. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/perf_xnode.csv +0 -0
  386. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/perf_xnode.py +0 -0
  387. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/perf_xnode_detailed.csv +0 -0
  388. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/runner.py +0 -0
  389. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/src/xlib/xdata/__init__.py +0 -0
  390. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/test_performance.py +0 -0
  391. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/perf_test/test_performance_modes_comparison.py +0 -0
  392. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/performance/__init__.py +0 -0
  393. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/performance/test_optimization.py +0 -0
  394. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/performance/test_performance_modes.py +0 -0
  395. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/performance/test_xsystem_integration.py +0 -0
  396. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/production_ready/test_production_features.py +0 -0
  397. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/query/__init__.py +0 -0
  398. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/query/test_native_query.py +0 -0
  399. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/structures/__init__.py +0 -0
  400. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/structures/test_linear.py +0 -0
  401. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_adaptive_mode.py +0 -0
  402. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_advanced_operations.py +0 -0
  403. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_aplus_improvements.py +0 -0
  404. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_auto3_phase1.py +0 -0
  405. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_auto3_phase2.py +0 -0
  406. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_auto3_phase3.py +0 -0
  407. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_auto3_phase4.py +0 -0
  408. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_new_features.py +0 -0
  409. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/delete/unit copy/test_tree_graph_hybrid.py +0 -0
  410. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/integration/__init__.py +0 -0
  411. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/integration/runner.py +0 -0
  412. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/integration/test_end_to_end.py +0 -0
  413. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/integration/test_installation_modes.py +0 -0
  414. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/integration/test_xwnode_xwsystem_lazy_serialization.py +0 -0
  415. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/integration/test_xwquery_script_end_to_end.py +0 -0
  416. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/run_all_tests.py +0 -0
  417. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/runner.py +0 -0
  418. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_all_strategies.py +0 -0
  419. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_basic_xwnode_creation.py +0 -0
  420. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_basic_xwnode_only.py +0 -0
  421. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_comprehensive_new_strategies.py +0 -0
  422. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_comprehensive_strategies.py +0 -0
  423. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_final_inheritance_verification.py +0 -0
  424. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_final_strategy_summary.py +0 -0
  425. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_functionality.py +0 -0
  426. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_import.py +0 -0
  427. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_inheritance_hierarchy.py +0 -0
  428. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_migration.py +0 -0
  429. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_minimal_xwnode.py +0 -0
  430. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_minimal_xwnode_simple.py +0 -0
  431. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_real_strategies.py +0 -0
  432. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_runner.py +0 -0
  433. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_simple_edges.py +0 -0
  434. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_simple_import.py +0 -0
  435. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_simple_inheritance.py +0 -0
  436. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_simple_new_strategies.py +0 -0
  437. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_simple_proof.py +0 -0
  438. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_standalone_xwnode.py +0 -0
  439. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_strategy_bases.py +0 -0
  440. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_strategy_bases_simple.py +0 -0
  441. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_strategy_verification.py +0 -0
  442. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_xwnode_base_only.py +0 -0
  443. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_xwnode_edges_comprehensive.py +0 -0
  444. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_xwnode_with_edges.py +0 -0
  445. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/test_xwquery_script_runner.py +0 -0
  446. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/__init__.py +0 -0
  447. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/runner.py +0 -0
  448. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/test_graph_ops.py +0 -0
  449. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/test_linear.py +0 -0
  450. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/test_native_query.py +0 -0
  451. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/test_optimization.py +0 -0
  452. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/test_performance_modes.py +0 -0
  453. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/test_xsystem_integration.py +0 -0
  454. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/unit/test_xwquery_script_integration.py +0 -0
  455. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/utilities/__init__.py +0 -0
  456. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/utilities/benchmarks/__init__.py +0 -0
  457. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/utilities/benchmarks/benchmarks.py +0 -0
  458. {exonware_xwnode-0.0.1.18 → exonware_xwnode-0.0.1.20}/tests/verify_installation.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exonware-xwnode
3
- Version: 0.0.1.18
3
+ Version: 0.0.1.20
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
@@ -40,7 +40,7 @@ Description-Content-Type: text/markdown
40
40
  **Company:** eXonware.com
41
41
  **Author:** Eng. Muhammad AlShehri
42
42
  **Email:** connect@exonware.com
43
- **Version:** 0.0.1.18
43
+ **Version:** 0.0.1.20
44
44
 
45
45
  ## 🎯 **What is xwnode?**
46
46
 
@@ -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.18
6
+ **Version:** 0.0.1.20
7
7
 
8
8
  ## 🎯 **What is xwnode?**
9
9
 
@@ -19,7 +19,7 @@ sys.path.insert(0, str(project_root / "src"))
19
19
 
20
20
  try:
21
21
  from exonware.xwnode.strategies.queries.sql import SQLStrategy
22
- from exonware.xwnode.types import QueryMode, QueryTrait
22
+ from exonware.xwnode.defs import QueryMode, QueryTrait
23
23
  except ImportError as e:
24
24
  print(f"❌ Import error: {e}")
25
25
  print("Make sure you're running from the xwnode directory")
@@ -21,7 +21,7 @@ sys.path.insert(0, str(project_root / "src"))
21
21
 
22
22
  try:
23
23
  from exonware.xwnode import XWNode, XWFactory, get_metrics
24
- from exonware.xwnode.strategies.types import NodeMode, EdgeMode
24
+ from exonware.xwnode.strategies.defs import NodeMode, EdgeMode
25
25
  except ImportError as e:
26
26
  print(f"❌ Import error: {e}")
27
27
  print("Make sure you're running from the xwnode directory")
@@ -22,7 +22,7 @@ sys.path.insert(0, str(project_root / "src"))
22
22
  try:
23
23
  from exonware.xwnode import XWNode
24
24
  from exonware.xwnode.strategies.queries.sql import SQLStrategy
25
- from exonware.xwnode.types import QueryMode, QueryTrait
25
+ from exonware.xwnode.defs import QueryMode, QueryTrait
26
26
  except ImportError as e:
27
27
  print(f"❌ Import error: {e}")
28
28
  print("Make sure you're running from the xwnode directory")
@@ -22,7 +22,7 @@ sys.path.insert(0, str(project_root / "src"))
22
22
  try:
23
23
  from exonware.xwnode import XWNode
24
24
  from exonware.xwnode.strategies.queries.sql import SQLStrategy
25
- from exonware.xwnode.types import QueryMode, QueryTrait
25
+ from exonware.xwnode.defs import QueryMode, QueryTrait
26
26
  except ImportError as e:
27
27
  print(f"❌ Import error: {e}")
28
28
  print("Make sure you're running from the xwnode directory")
@@ -8,10 +8,18 @@ Main console implementation for interactive XWQuery testing.
8
8
  import sys
9
9
  import os
10
10
  import time
11
+ from pathlib import Path
11
12
  from typing import Optional, Dict, Any
12
13
 
13
- # Add parent directory to path for imports
14
- sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..'))
14
+ # Ensure source directories are in path for development mode
15
+ xwnode_root = Path(__file__).parent.parent.parent
16
+ xwnode_src = xwnode_root / "src"
17
+ xwsystem_src = xwnode_root.parent / "xwsystem" / "src"
18
+
19
+ if str(xwnode_src) not in sys.path:
20
+ sys.path.insert(0, str(xwnode_src))
21
+ if xwsystem_src.exists() and str(xwsystem_src) not in sys.path:
22
+ sys.path.insert(0, str(xwsystem_src))
15
23
 
16
24
  # Lazy imports - only load XWNode components when needed
17
25
  # This follows DEV_GUIDELINES.md: "Lazy Loading pattern - Load data only when needed"
@@ -9,10 +9,21 @@ import argparse
9
9
  import sys
10
10
  from pathlib import Path
11
11
 
12
- # Add parent directory to path
13
- sys.path.insert(0, str(Path(__file__).parent.parent.parent))
12
+ # Add source directories to path for development mode
13
+ # This allows importing from exonware.xwnode and exonware.xwsystem
14
+ xwnode_root = Path(__file__).parent.parent.parent
15
+ xwnode_src = xwnode_root / "src"
16
+ xwsystem_src = xwnode_root.parent / "xwsystem" / "src"
14
17
 
15
- from examples.xwnode_console.console import main
18
+ # Add both source directories
19
+ sys.path.insert(0, str(xwnode_src))
20
+ if xwsystem_src.exists():
21
+ sys.path.insert(0, str(xwsystem_src))
22
+
23
+ # Add examples directory for local imports
24
+ sys.path.insert(0, str(xwnode_root / "examples"))
25
+
26
+ from xwnode_console.console import main
16
27
 
17
28
 
18
29
  def parse_args():
@@ -2,7 +2,7 @@
2
2
  # Company: eXonware.com
3
3
  # Author: Eng. Muhammad AlShehri
4
4
  # Email: connect@exonware.com
5
- # Version: 0.0.1.18
5
+ # Version: 0.0.1.20
6
6
  # Generation Date: February 2, 2025
7
7
  #
8
8
  # This file contains all dependencies needed for xwnode
@@ -4,7 +4,7 @@ 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.18
7
+ Version: 0.0.1.20
8
8
  Generation Date: 2025-01-03
9
9
  """
10
10
 
@@ -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.18
13
+ Version: 0.0.1.20
14
14
  Generation Date: 07-Sep-2025
15
15
 
16
16
  Main Classes:
@@ -49,8 +49,9 @@ Example:
49
49
  # =============================================================================
50
50
  # LAZY INSTALLATION - Simple One-Line Configuration
51
51
  # =============================================================================
52
- from exonware.xwsystem.utils.lazy_discovery import config_package_lazy_install_enabled
53
- config_package_lazy_install_enabled("xwnode") # Auto-detect [lazy] extra
52
+ # DISABLED BY DEFAULT - Users can enable manually if needed
53
+ # from exonware.xwsystem.utils.lazy_discovery import config_package_lazy_install_enabled
54
+ # config_package_lazy_install_enabled("xwnode") # Auto-detect [lazy] extra
54
55
 
55
56
  # =============================================================================
56
57
  # IMPORTS - Standard Python Imports (No Defensive Code!)
@@ -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.18
9
+ Version: 0.0.1.20
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.18
9
+ Version: 0.0.1.20
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.18
15
+ Version: 0.0.1.20
16
16
  Generation Date: 07-Sep-2025
17
17
  """
18
18
 
@@ -22,7 +22,7 @@ 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 ..types import NodeMode, EdgeMode, NodeTrait, EdgeTrait
25
+ from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
26
26
  from .registry import get_registry
27
27
  from .advisor import get_advisor
28
28
  from .migration import get_migrator
@@ -9,7 +9,7 @@ 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 ..types import NodeMode, EdgeMode, NodeTrait, EdgeTrait
12
+ from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait
13
13
  from .registry import get_registry
14
14
  from ..errors import XWNodeStrategyError, XWNodeError
15
15
  import logging
@@ -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.18
9
+ Version: 0.0.1.20
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.18
12
+ Version: 0.0.1.20
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 ..types 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.18
13
+ Version: 0.0.1.20
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 ..types 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.18
12
+ Version: 0.0.1.20
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 ..types 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.18
9
+ Version: 0.0.1.20
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 ..types 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.18
13
+ Version: 0.0.1.20
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 ..types 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,7 +13,7 @@ from exonware.xwsystem import get_logger
13
13
 
14
14
  logger = get_logger(__name__)
15
15
 
16
- from ..types import NodeMode, EdgeMode, NodeTrait, EdgeTrait, NODE_STRATEGY_METADATA, EDGE_STRATEGY_METADATA, QueryMode, QueryTrait
16
+ from ..defs import NodeMode, EdgeMode, NodeTrait, EdgeTrait, NODE_STRATEGY_METADATA, EDGE_STRATEGY_METADATA, QueryMode, QueryTrait
17
17
  from ..errors import XWNodeStrategyError, XWNodeError
18
18
 
19
19
 
@@ -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.18
9
+ Version: 0.0.1.20
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -9,8 +9,8 @@ from abc import ABC, abstractmethod
9
9
  from typing import Any, Iterator, Optional, Dict, List, Union, Callable
10
10
  from enum import Enum, Flag
11
11
 
12
- # Import all enums from types.py to avoid circular references
13
- from .types import (
12
+ # Import all enums from defs.py to avoid circular references
13
+ from .defs import (
14
14
  NodeMode, EdgeMode, NodeTrait, EdgeTrait, QueryMode, QueryTrait
15
15
  )
16
16
 
@@ -476,7 +476,7 @@ class iNodeFacade(ABC):
476
476
  # QUERY INTERFACES
477
477
  # ============================================================================
478
478
 
479
- # QueryMode and QueryTrait are now imported from types.py
479
+ # QueryMode and QueryTrait are now imported from defs.py
480
480
 
481
481
 
482
482
  class IQueryStrategy(ABC):
@@ -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.18
12
+ Version: 0.0.1.20
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -7,7 +7,7 @@ in the strategy system.
7
7
 
8
8
  from abc import ABC, abstractmethod
9
9
  from typing import Any, Dict, List, Optional, Iterator, Union, Set
10
- from ...types import EdgeMode, EdgeTrait
10
+ from ...defs import EdgeMode, EdgeTrait
11
11
 
12
12
 
13
13
  class aEdgeStrategy(ABC):
@@ -8,7 +8,7 @@ with efficient edge addition and neighbor queries.
8
8
  from typing import Any, Iterator, Dict, List, Set, Optional, Tuple
9
9
  from collections import defaultdict
10
10
  from .base import AGraphEdgeStrategy
11
- from ...types import EdgeMode, EdgeTrait
11
+ from ...defs import EdgeMode, EdgeTrait
12
12
 
13
13
 
14
14
  class AdjListStrategy(AGraphEdgeStrategy):
@@ -7,7 +7,7 @@ with O(1) edge operations and efficient matrix-based algorithms.
7
7
 
8
8
  from typing import Any, Iterator, Dict, List, Set, Optional, Tuple, Union
9
9
  from .base import AGraphEdgeStrategy
10
- from ...types import EdgeMode, EdgeTrait
10
+ from ...defs import EdgeMode, EdgeTrait
11
11
 
12
12
 
13
13
  class AdjMatrixStrategy(AGraphEdgeStrategy):
@@ -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.18
14
+ Version: 0.0.1.20
15
15
  Generation Date: January 2, 2025
16
16
  """
17
17
 
@@ -8,7 +8,7 @@ with efficient edge addition and neighbor queries.
8
8
  from typing import Any, Iterator, Dict, List, Set, Optional, Tuple
9
9
  from collections import defaultdict
10
10
  from ._base_edge import aEdgeStrategy
11
- from ...types import EdgeMode, EdgeTrait
11
+ from ...defs import EdgeMode, EdgeTrait
12
12
 
13
13
 
14
14
  class xAdjListStrategy(aEdgeStrategy):
@@ -7,7 +7,7 @@ with O(1) edge operations and efficient matrix-based algorithms.
7
7
 
8
8
  from typing import Any, Iterator, Dict, List, Set, Optional, Tuple, Union
9
9
  from ._base_edge import aEdgeStrategy
10
- from ...types import EdgeMode, EdgeTrait
10
+ from ...defs import EdgeMode, EdgeTrait
11
11
 
12
12
 
13
13
  class xAdjMatrixStrategy(aEdgeStrategy):
@@ -8,7 +8,7 @@ undirected graph operations using dual directed edges.
8
8
  from typing import Any, Iterator, List, Dict, Set, Optional, Tuple
9
9
  from collections import defaultdict
10
10
  from ._base_edge import aEdgeStrategy
11
- from ...types import EdgeMode, EdgeTrait
11
+ from ...defs import EdgeMode, EdgeTrait
12
12
 
13
13
 
14
14
  class xBidirWrapperStrategy(aEdgeStrategy):
@@ -8,7 +8,7 @@ dense graph operations using block-based matrix partitioning.
8
8
  from typing import Any, Iterator, List, Dict, Optional, Tuple, Set
9
9
  import math
10
10
  from ._base_edge import aEdgeStrategy
11
- from ...types import EdgeMode, EdgeTrait
11
+ from ...defs import EdgeMode, EdgeTrait
12
12
 
13
13
 
14
14
  class MatrixBlock:
@@ -9,7 +9,7 @@ from typing import Any, Iterator, List, Dict, Set, Optional, Tuple
9
9
  from collections import defaultdict
10
10
  import bisect
11
11
  from ._base_edge import aEdgeStrategy
12
- from ...types import EdgeMode, EdgeTrait
12
+ from ...defs import EdgeMode, EdgeTrait
13
13
 
14
14
 
15
15
  class xCOOStrategy(aEdgeStrategy):
@@ -9,7 +9,7 @@ from typing import Any, Iterator, List, Dict, Set, Optional, Tuple
9
9
  from collections import defaultdict
10
10
  import bisect
11
11
  from ._base_edge import aEdgeStrategy
12
- from ...types import EdgeMode, EdgeTrait
12
+ from ...defs import EdgeMode, EdgeTrait
13
13
 
14
14
 
15
15
  class xCSCStrategy(aEdgeStrategy):
@@ -8,7 +8,7 @@ representation with fast row-wise operations.
8
8
  from typing import Any, Iterator, Dict, List, Set, Optional, Tuple, Union
9
9
  import bisect
10
10
  from ._base_edge import aEdgeStrategy
11
- from ...types import EdgeMode, EdgeTrait
11
+ from ...defs import EdgeMode, EdgeTrait
12
12
 
13
13
 
14
14
  class xCSRStrategy(aEdgeStrategy):
@@ -10,7 +10,7 @@ from collections import defaultdict, deque
10
10
  import time
11
11
  import threading
12
12
  from ._base_edge import aEdgeStrategy
13
- from ...types import EdgeMode, EdgeTrait
13
+ from ...defs import EdgeMode, EdgeTrait
14
14
 
15
15
 
16
16
  class VersionedEdge:
@@ -9,7 +9,7 @@ from typing import Any, Iterator, Dict, List, Set, Optional, Tuple, DefaultDict
9
9
  from collections import defaultdict, deque
10
10
  import math
11
11
  from ._base_edge import aEdgeStrategy
12
- from ...types import EdgeMode, EdgeTrait
12
+ from ...defs import EdgeMode, EdgeTrait
13
13
 
14
14
 
15
15
  class FlowEdge:
@@ -10,7 +10,7 @@ from collections import defaultdict
10
10
  import uuid
11
11
  import time
12
12
  from ._base_edge import aEdgeStrategy
13
- from ...types import EdgeMode, EdgeTrait
13
+ from ...defs import EdgeMode, EdgeTrait
14
14
 
15
15
 
16
16
  class HyperEdge:
@@ -10,7 +10,7 @@ from collections import defaultdict, deque
10
10
  import math
11
11
  from enum import Enum
12
12
  from ._base_edge import aEdgeStrategy
13
- from ...types import EdgeMode, EdgeTrait
13
+ from ...defs import EdgeMode, EdgeTrait
14
14
 
15
15
 
16
16
  class ActivationFunction(Enum):
@@ -9,7 +9,7 @@ from typing import Any, Iterator, List, Dict, Set, Optional, Tuple
9
9
  from collections import defaultdict
10
10
  import math
11
11
  from ._base_edge import aEdgeStrategy
12
- from ...types import EdgeMode, EdgeTrait
12
+ from ...defs import EdgeMode, EdgeTrait
13
13
 
14
14
 
15
15
  class OctreeNode:
@@ -9,7 +9,7 @@ from typing import Any, Iterator, List, Dict, Set, Optional, Tuple, Union
9
9
  from collections import defaultdict
10
10
  import statistics
11
11
  from ._base_edge import aEdgeStrategy
12
- from ...types import EdgeMode, EdgeTrait
12
+ from ...defs import EdgeMode, EdgeTrait
13
13
 
14
14
 
15
15
  class PropertyColumn:
@@ -9,7 +9,7 @@ from typing import Any, Iterator, List, Dict, Set, Optional, Tuple
9
9
  from collections import defaultdict
10
10
  import math
11
11
  from ._base_edge import aEdgeStrategy
12
- from ...types import EdgeMode, EdgeTrait
12
+ from ...defs import EdgeMode, EdgeTrait
13
13
 
14
14
 
15
15
  class QuadTreeNode:
@@ -9,7 +9,7 @@ from typing import Any, Iterator, Dict, List, Set, Optional, Tuple, NamedTuple
9
9
  from collections import defaultdict
10
10
  import math
11
11
  from ._base_edge import aEdgeStrategy
12
- from ...types import EdgeMode, EdgeTrait
12
+ from ...defs import EdgeMode, EdgeTrait
13
13
 
14
14
 
15
15
  class Rectangle(NamedTuple):
@@ -10,7 +10,7 @@ from collections import defaultdict
10
10
  import time
11
11
  import bisect
12
12
  from ._base_edge import aEdgeStrategy
13
- from ...types import EdgeMode, EdgeTrait
13
+ from ...defs import EdgeMode, EdgeTrait
14
14
 
15
15
 
16
16
  class TimeInterval(NamedTuple):
@@ -8,7 +8,7 @@ in tree+graph hybrid structures, providing minimal graph capabilities.
8
8
 
9
9
  from typing import Any, Dict, List, Optional, Set, Tuple, Iterator
10
10
  from ._base_edge import aEdgeStrategy
11
- from ...types import EdgeMode, EdgeTrait
11
+ from ...defs import EdgeMode, EdgeTrait
12
12
 
13
13
 
14
14
  class xTreeGraphBasicStrategy(aEdgeStrategy):
@@ -8,7 +8,7 @@ edge weights, optimized for network algorithms and shortest path computations.
8
8
 
9
9
  from typing import Any, Dict, List, Optional, Set, Tuple, Iterator
10
10
  from ._base_edge import aEdgeStrategy
11
- from ...types import EdgeMode, EdgeTrait
11
+ from ...defs import EdgeMode, EdgeTrait
12
12
  from ...errors import XWNodeUnsupportedCapabilityError
13
13
  import threading
14
14
 
@@ -328,7 +328,7 @@ class XWNodePresetError(XWNodeStrategyError):
328
328
 
329
329
  # Import here to avoid circular imports
330
330
  try:
331
- from .types import list_presets
331
+ from .defs import list_presets
332
332
  available = list_presets()
333
333
  suggestions = [f"Available presets: {', '.join(available)}"]
334
334
  except ImportError:
@@ -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.18
12
+ Version: 0.0.1.20
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -321,7 +321,7 @@ class XWFactory:
321
321
  # A+ Usability Presets
322
322
  def create_with_preset(data: Any = None, preset: str = 'DEFAULT') -> XWNode:
323
323
  """Create XWNode with A+ usability preset."""
324
- from .types import get_preset
324
+ from .defs import get_preset
325
325
 
326
326
  try:
327
327
  preset_config = get_preset(preset)
@@ -334,7 +334,7 @@ def create_with_preset(data: Any = None, preset: str = 'DEFAULT') -> XWNode:
334
334
 
335
335
  def list_available_presets() -> List[str]:
336
336
  """List all available A+ usability presets."""
337
- from .types import list_presets
337
+ from .defs import list_presets
338
338
  return list_presets()
339
339
 
340
340
  # Performance Mode Factory Methods
@@ -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.18
12
+ Version: 0.0.1.20
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15