exonware-xwnode 0.0.1.12__py3-none-any.whl → 0.0.1.13__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 (56) hide show
  1. exonware/__init__.py +1 -1
  2. exonware/xwnode/__init__.py +1 -1
  3. exonware/xwnode/facade.py +1 -1
  4. exonware/xwnode/strategies/__init__.py +1 -1
  5. exonware/xwnode/strategies/edges/__init__.py +1 -1
  6. exonware/xwnode/strategies/edges/base.py +1 -1
  7. exonware/xwnode/strategies/flyweight.py +1 -1
  8. exonware/xwnode/strategies/manager.py +1 -1
  9. exonware/xwnode/strategies/metrics.py +1 -1
  10. exonware/xwnode/strategies/nodes/__init__.py +1 -1
  11. exonware/xwnode/strategies/nodes/adjacency_list.py +1 -1
  12. exonware/xwnode/strategies/nodes/base.py +1 -1
  13. exonware/xwnode/strategies/nodes/deque.py +1 -1
  14. exonware/xwnode/strategies/nodes/priority_queue.py +1 -1
  15. exonware/xwnode/strategies/nodes/queue.py +1 -1
  16. exonware/xwnode/strategies/nodes/sparse_matrix.py +1 -1
  17. exonware/xwnode/strategies/nodes/stack.py +1 -1
  18. exonware/xwnode/strategies/pattern_detector.py +1 -1
  19. exonware/xwnode/strategies/performance_monitor.py +1 -1
  20. exonware/xwnode/strategies/queries/__init__.py +1 -1
  21. exonware/xwnode/strategies/queries/base.py +1 -1
  22. exonware/xwnode/strategies/queries/cql.py +1 -1
  23. exonware/xwnode/strategies/queries/cypher.py +1 -1
  24. exonware/xwnode/strategies/queries/datalog.py +1 -1
  25. exonware/xwnode/strategies/queries/elastic_dsl.py +1 -1
  26. exonware/xwnode/strategies/queries/eql.py +1 -1
  27. exonware/xwnode/strategies/queries/flux.py +1 -1
  28. exonware/xwnode/strategies/queries/gql.py +1 -1
  29. exonware/xwnode/strategies/queries/graphql.py +1 -1
  30. exonware/xwnode/strategies/queries/gremlin.py +1 -1
  31. exonware/xwnode/strategies/queries/hiveql.py +1 -1
  32. exonware/xwnode/strategies/queries/hql.py +1 -1
  33. exonware/xwnode/strategies/queries/jmespath.py +1 -1
  34. exonware/xwnode/strategies/queries/jq.py +1 -1
  35. exonware/xwnode/strategies/queries/json_query.py +1 -1
  36. exonware/xwnode/strategies/queries/jsoniq.py +1 -1
  37. exonware/xwnode/strategies/queries/kql.py +1 -1
  38. exonware/xwnode/strategies/queries/linq.py +1 -1
  39. exonware/xwnode/strategies/queries/logql.py +1 -1
  40. exonware/xwnode/strategies/queries/mql.py +1 -1
  41. exonware/xwnode/strategies/queries/n1ql.py +1 -1
  42. exonware/xwnode/strategies/queries/partiql.py +1 -1
  43. exonware/xwnode/strategies/queries/pig.py +1 -1
  44. exonware/xwnode/strategies/queries/promql.py +1 -1
  45. exonware/xwnode/strategies/queries/sparql.py +1 -1
  46. exonware/xwnode/strategies/queries/sql.py +1 -1
  47. exonware/xwnode/strategies/queries/xml_query.py +1 -1
  48. exonware/xwnode/strategies/queries/xpath.py +1 -1
  49. exonware/xwnode/strategies/queries/xquery.py +1 -1
  50. exonware/xwnode/strategies/queries/xwnode_executor.py +1 -1
  51. exonware/xwnode/strategies/queries/{xwquery_strategy.py → xwquery.py} +1 -1
  52. exonware/xwnode/version.py +2 -2
  53. {exonware_xwnode-0.0.1.12.dist-info → exonware_xwnode-0.0.1.13.dist-info}/METADATA +2 -2
  54. {exonware_xwnode-0.0.1.12.dist-info → exonware_xwnode-0.0.1.13.dist-info}/RECORD +56 -56
  55. {exonware_xwnode-0.0.1.12.dist-info → exonware_xwnode-0.0.1.13.dist-info}/WHEEL +0 -0
  56. {exonware_xwnode-0.0.1.12.dist-info → exonware_xwnode-0.0.1.13.dist-info}/licenses/LICENSE +0 -0
exonware/__init__.py CHANGED
@@ -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.12
7
+ Version: 0.0.1.13
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.12
13
+ Version: 0.0.1.13
14
14
  Generation Date: 07-Sep-2025
15
15
 
16
16
  Main Classes:
exonware/xwnode/facade.py CHANGED
@@ -9,7 +9,7 @@ a clean, intuitive interface.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.12
12
+ Version: 0.0.1.13
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -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.13
19
19
  Generation Date: 07-Sep-2025
20
20
  """
21
21
 
@@ -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.12
12
+ Version: 0.0.1.13
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -11,7 +11,7 @@ This module defines the abstract base classes for all edge strategy implementati
11
11
  Company: eXonware.com
12
12
  Author: Eng. Muhammad AlShehri
13
13
  Email: connect@exonware.com
14
- Version: 0.0.1.12
14
+ Version: 0.0.1.13
15
15
  Generation Date: January 2, 2025
16
16
  """
17
17
 
@@ -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.12
13
+ Version: 0.0.1.13
14
14
  Generation Date: 07-Sep-2025
15
15
  """
16
16
 
@@ -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.12
15
+ Version: 0.0.1.13
16
16
  Generation Date: 07-Sep-2025
17
17
  """
18
18
 
@@ -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.12
12
+ Version: 0.0.1.13
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ This package contains all node strategy implementations organized by type:
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.12
12
+ Version: 0.0.1.13
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -6,7 +6,7 @@ Implements graph operations using adjacency list representation.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.12
9
+ Version: 0.0.1.13
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -11,7 +11,7 @@ This module defines the abstract base classes for all node strategy implementati
11
11
  Company: eXonware.com
12
12
  Author: Eng. Muhammad AlShehri
13
13
  Email: connect@exonware.com
14
- Version: 0.0.1.12
14
+ Version: 0.0.1.13
15
15
  Generation Date: January 2, 2025
16
16
  """
17
17
 
@@ -6,7 +6,7 @@ Implements a double-ended queue using Python's deque for efficient operations at
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.12
9
+ Version: 0.0.1.13
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a priority queue using Python's heapq for efficient priority-based op
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.12
9
+ Version: 0.0.1.13
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a FIFO (First In, First Out) data structure using Python's deque.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.12
9
+ Version: 0.0.1.13
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a sparse matrix using coordinate format (COO) for memory efficiency.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.12
9
+ Version: 0.0.1.13
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Implements a LIFO (Last In, First Out) data structure using Python's list.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.12
9
+ Version: 0.0.1.13
10
10
  Generation Date: 07-Sep-2025
11
11
  """
12
12
 
@@ -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.12
13
+ Version: 0.0.1.13
14
14
  Generation Date: 07-Sep-2025
15
15
  """
16
16
 
@@ -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.12
12
+ Version: 0.0.1.13
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ This package contains all query 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.12
12
+ Version: 0.0.1.13
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -8,7 +8,7 @@ This module defines the abstract base classes for all query strategy implementat
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.13
12
12
  Generation Date: January 2, 2025
13
13
  """
14
14
 
@@ -7,7 +7,7 @@ This module implements the CQL query strategy for Cassandra 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.13
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the Cypher query strategy for Neo4j graph 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.13
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the Datalog query strategy for Datalog 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.13
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the Elasticsearch DSL query strategy for Elasticsearch Qu
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.13
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the EQL query strategy for Elasticsearch 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.13
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the Flux query strategy for InfluxDB Flux 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.13
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ This module implements the GQL query strategy for ISO/IEC 39075:2024 Graph Query
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.13
11
11
  Generation Date: January 2, 2025
12
12
  """
13
13
 
@@ -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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
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.13
12
12
  Generation Date: January 2, 2025
13
13
  """
14
14
 
@@ -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.13"
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 = 13# 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.13
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.13
45
45
 
46
46
  ## 🎯 **What is xwnode?**
47
47
 
@@ -1,27 +1,27 @@
1
- exonware/__init__.py,sha256=Vi5DAJ4T6FJohu_fUfJaDnf3crA_7yDjWfCZVZMlTZk,324
2
- exonware/xwnode/__init__.py,sha256=4pxs28AdzEN1hGLs7ljH4t0YdzwLSjRJukRY2f5JCTc,3814
1
+ exonware/__init__.py,sha256=snwuFlh_IpNOFLmsW5Oblh0wdELoYfd_RfSMU3zI3FE,324
2
+ exonware/xwnode/__init__.py,sha256=LhJVUzDRKBgMKH9K7cdrW9yC9phNvoXr8nkDbK-Iyj8,3814
3
3
  exonware/xwnode/base.py,sha256=VUKA1SX_w-bY6GclC93S6OZOc5roctzzcfBmv1XLC68,23830
4
4
  exonware/xwnode/config.py,sha256=Kt8oFMhLmb-3rZdxWle-_Z3PGJj04XhZUp7K9FUnxN0,5707
5
5
  exonware/xwnode/contracts.py,sha256=UHVk-7RWt-hVPJlRKVU8MnC9yE6QDAxzXji3f3UN4RE,20693
6
6
  exonware/xwnode/errors.py,sha256=JZCrGdK31LlrE5cY1_s5Jb6x7zsBF0WUiE2PCWfIdNk,18396
7
- exonware/xwnode/facade.py,sha256=rccyUyT5Gj9DgTY8DSfq8Ae7GGGq5Z5OtepPU1ENy8I,16029
7
+ exonware/xwnode/facade.py,sha256=FBV5_bvQ488rOUJyMCcwlZluX3pJhH1n7UJybDlo39M,16029
8
8
  exonware/xwnode/types.py,sha256=uioV6DW9nnQ0p3ZIdhYNQ5XtbQB2_INIljUkeCZox9o,34471
9
- exonware/xwnode/version.py,sha256=STJKugNKyqorci-VuYL4keM4h4L9B_K77pEjgk7rT_c,2379
10
- exonware/xwnode/strategies/__init__.py,sha256=_Ywl_Mq1Ucz3TZteuWO3B4vy7Ird7iCWAAXXVadXcc8,7568
9
+ exonware/xwnode/version.py,sha256=FEeu7LTKyjbs4greNDHfIbyktJcnCM-8qjxMaB5f6Tw,2379
10
+ exonware/xwnode/strategies/__init__.py,sha256=Yz6fOZiYZztIxba9aarJSyjKcV_9st2t14d5FADTK_E,7568
11
11
  exonware/xwnode/strategies/advisor.py,sha256=NIDK8S-nV69-V0Hur7e4Z1Ao1Gnia_d6SRBc1gxoJ9U,18184
12
- exonware/xwnode/strategies/flyweight.py,sha256=FZHLsHYFIPQQNwBrwsHYysMxevM5KW4zk3EdARa9rmE,11316
13
- exonware/xwnode/strategies/manager.py,sha256=9hlCDblaxasdAwGXO-vdEyG0V7NvUPjTiA3SUxk-BFM,33902
14
- exonware/xwnode/strategies/metrics.py,sha256=j3V1duSZ2_tHH7dEeL3NCVwEb96XNzjYaymkt8_LJmc,19447
12
+ exonware/xwnode/strategies/flyweight.py,sha256=MsDwzPSyme-dFhzMsYoocCcOZPTmaOVfZieWw18HpZU,11316
13
+ exonware/xwnode/strategies/manager.py,sha256=Gij4p0BijGq9P3bDgJcbtksNJCLn86FM6TkcEv7TNyk,33902
14
+ exonware/xwnode/strategies/metrics.py,sha256=xAi8Et3OpOzOto1pQ28MgI_VPJDzftBa8vXOpIMLdOE,19447
15
15
  exonware/xwnode/strategies/migration.py,sha256=w_YEpNiVtYBA50mGvfTVyLFz-GViyT5Adzmvlp8P4gk,20181
16
- exonware/xwnode/strategies/pattern_detector.py,sha256=5ncMOVUw1QJHrD4yo5dNANfDed_jeLsU_mWpND4Wtxo,21661
17
- exonware/xwnode/strategies/performance_monitor.py,sha256=AqLW9k13DZILxn8Fa4JMmf1k67GESBiodREsANJfs-c,17467
16
+ exonware/xwnode/strategies/pattern_detector.py,sha256=b3-T5FZ6CLpvry7lQMDp2IfBx_TPTvNFMeqT3LoeFtI,21661
17
+ exonware/xwnode/strategies/performance_monitor.py,sha256=WwpE4X9QM1RkNEDCxewzViow1fzPc7jmClwdJsUc7_U,17467
18
18
  exonware/xwnode/strategies/registry.py,sha256=4GJua8Wnha7Yzq2jBm73GBa8XvQhzsfqUY5omTTxc7U,28733
19
19
  exonware/xwnode/strategies/simple.py,sha256=3hylQDJ9CRSIKdu3sc3qYJa2bQlVo7AlMQ3a0THNLxs,9079
20
20
  exonware/xwnode/strategies/utils.py,sha256=ma_C5Xpgpo0053jEWqzco4-KNyBOWanJhKvQ3Masq84,17554
21
- exonware/xwnode/strategies/edges/__init__.py,sha256=se25WUDZfWx37jNS3OKubhlsLAd9XumnQTGJyU7MnkI,771
21
+ exonware/xwnode/strategies/edges/__init__.py,sha256=jywpbrwN2aKziTLMK_0H42nP1ewhtocVaX0ueH70Ato,771
22
22
  exonware/xwnode/strategies/edges/adj_list.py,sha256=RdvQayElMahOa239urnWqwQVkui8phj-0fsyI8FsUvM,8162
23
23
  exonware/xwnode/strategies/edges/adj_matrix.py,sha256=pAsW5s264WvwUEYX7Ezgl-DW87kP8V6LZeDOuVXevqU,14744
24
- exonware/xwnode/strategies/edges/base.py,sha256=AjEviyy3IJY3fMCgDMfxFvo5OFb72hddqAMMYmBQ-_w,6207
24
+ exonware/xwnode/strategies/edges/base.py,sha256=qMaCf-lfnernKXPK-WJ4r4ITv9y0rKI1kYoq4cvX100,6207
25
25
  exonware/xwnode/strategies/impls/__init__.py,sha256=gQYeyN0Uz-AudFdUPCsFGYFGMu67wHS0XtuXbCHILQc,244
26
26
  exonware/xwnode/strategies/impls/_base_edge.py,sha256=hmOEL3M0wz95h6FrcTBf9dzSiwemRuNyNH9bgk27AY8,13602
27
27
  exonware/xwnode/strategies/impls/_base_node.py,sha256=TE7ND2qSQnruJ01h1JtLI3WIzoJiLPdJnan5HeFWvwA,10270
@@ -43,13 +43,13 @@ exonware/xwnode/strategies/impls/edge_rtree.py,sha256=0xGjjAzhno_PmCr-fc1JQCb1SV
43
43
  exonware/xwnode/strategies/impls/edge_temporal_edgeset.py,sha256=RjGu_u6C8sr4U7Oc4PhmxxvXMH7dycOpBVE4N1yO1qY,22127
44
44
  exonware/xwnode/strategies/impls/edge_tree_graph_basic.py,sha256=GjQAT1kAcOw8eCqsIKbr7NJpXM2_FWCXk_XJN1fAlaE,9996
45
45
  exonware/xwnode/strategies/impls/edge_weighted_graph.py,sha256=1w9qBMUgOf_s0bAXryXOZe_XrBOLpdofYCQNZguJfZs,16508
46
- exonware/xwnode/strategies/nodes/__init__.py,sha256=YMVKzCrYUOWDL8taFMHtYjhKQqfe5B14jn1GfobSXXM,1197
46
+ exonware/xwnode/strategies/nodes/__init__.py,sha256=UeU5fohSdZMYwE1w48rtnNMN_fwh8J1jgCeI3zKQ8w0,1197
47
47
  exonware/xwnode/strategies/nodes/_base_node.py,sha256=TE7ND2qSQnruJ01h1JtLI3WIzoJiLPdJnan5HeFWvwA,10270
48
- exonware/xwnode/strategies/nodes/adjacency_list.py,sha256=ftrdilIYIagAe0oiEekLISTiEpKfjrgWQoCZ6lF7QGc,8941
48
+ exonware/xwnode/strategies/nodes/adjacency_list.py,sha256=yFWGyOd1l5lFMxunXPaT7RCI2t_ofO4DccaliVl9OxU,8941
49
49
  exonware/xwnode/strategies/nodes/aho_corasick.py,sha256=V4FFQ4BybB83UVEf9ftxyeWn6KOsNAj9emyHzj_qp8M,12408
50
50
  exonware/xwnode/strategies/nodes/array_list.py,sha256=M7xCvjeqQvLHQSmgGVSudOLdpWNQ_Vph5CAsEHzesas,7076
51
- exonware/xwnode/strategies/nodes/base.py,sha256=u_xQcNWRa5Dlibtu1PKEIqAOq5-6kLX5staSMEYUuoI,8936
52
- exonware/xwnode/strategies/nodes/deque.py,sha256=ITyDbWYRJmyP_l0mVihAFP_Gd1vlVtXmopSyTobc4js,6382
51
+ exonware/xwnode/strategies/nodes/base.py,sha256=SOgdEsiFJNhF42FsjCYNTx79UF-pPOX2eRqI5Vh1JmA,8936
52
+ exonware/xwnode/strategies/nodes/deque.py,sha256=U2Yd9mMOtQyG1hdl-g_xriDD8_sWMNaJ9Uh-SgZOYxI,6382
53
53
  exonware/xwnode/strategies/nodes/hash_map.py,sha256=sDZy4Rw9OWD9FNZEGHzf8vUUF3rsP3aMkyqbIhMlrHs,4489
54
54
  exonware/xwnode/strategies/nodes/heap.py,sha256=IimQiSiIvrncwiQ37M_UmW_8XwDf-2bgV6wodiLi_4k,10334
55
55
  exonware/xwnode/strategies/nodes/linked_list.py,sha256=UdbVpSrXtb0KI7aLLbaWy4m02BiS4rxgJxV_1uR33q4,7764
@@ -88,45 +88,45 @@ exonware/xwnode/strategies/nodes/node_tree_graph_hybrid.py,sha256=iPO1RyzTTU6YYe
88
88
  exonware/xwnode/strategies/nodes/node_trie.py,sha256=tzp4AmFhp6TMB94W78hlMsKxGyOrblq29UuFA-qOgDU,8571
89
89
  exonware/xwnode/strategies/nodes/node_union_find.py,sha256=URFotyf9i4C2xYSC9-zOVTQ6lqLplwkgYuFYhFKUtfM,7163
90
90
  exonware/xwnode/strategies/nodes/node_xdata_optimized.py,sha256=zM16B4X3FXpTeG4iKhnKG9aweuQB3vj_bNh_S406wBI,14418
91
- exonware/xwnode/strategies/nodes/priority_queue.py,sha256=NWye9qfvyO7Gnq6U2DD2F4xNqqRtJ9zwUGUpC5rbtLA,7821
92
- exonware/xwnode/strategies/nodes/queue.py,sha256=9Ja6cLsKSGRKhNUr2A4vOeHnGi5x66-Cqe_RxZKKU8g,5282
93
- exonware/xwnode/strategies/nodes/sparse_matrix.py,sha256=4rIB4kxLViorGBDHEm3w5GcDIs8UPtQLBUVZgscu7yk,7141
94
- exonware/xwnode/strategies/nodes/stack.py,sha256=2dm7vea9H6rczDaIiMTUy-lWYxfjZQ-bS11TiWAATpY,5049
91
+ exonware/xwnode/strategies/nodes/priority_queue.py,sha256=Gj6hHgn8ZtEG5-Yf_xIt1ab1kNYUYYrzZI7POh08jAs,7821
92
+ exonware/xwnode/strategies/nodes/queue.py,sha256=gPrc-DQd3fCrImA5U5PEwtS7IaltNVVj_eptDl-zqYE,5282
93
+ exonware/xwnode/strategies/nodes/sparse_matrix.py,sha256=ApL_i2xX_Bv0kc_hrixFL5pFrjJm5JCW8MD06EbEdM4,7141
94
+ exonware/xwnode/strategies/nodes/stack.py,sha256=0B5hNwDze54El2I-7qpul5y6SItVBhC2nPi4F4_BDFo,5049
95
95
  exonware/xwnode/strategies/nodes/trie.py,sha256=y4eCbuHGaLWR3ZlJgxs28sctYV-nPJ322_00S2mX-0g,8989
96
96
  exonware/xwnode/strategies/nodes/union_find.py,sha256=xY2qlgcd6MbwClhjP_ap0JRgNCe7KfXo39pXL_B3RJg,10279
97
- exonware/xwnode/strategies/queries/__init__.py,sha256=owo_-AvdZK3VdrRU22jXmjga_tU78_SOZyk8UBXGPQs,617
98
- exonware/xwnode/strategies/queries/base.py,sha256=TWeRSl3O5XVlUVKlf_ufALuYoUCgdPMOaNt6cCnBgB4,8357
99
- exonware/xwnode/strategies/queries/cql.py,sha256=Yx3bRzSj3AxWi6CdI4MesLbELCDjTLbjq6uhrchbCHw,7524
100
- exonware/xwnode/strategies/queries/cypher.py,sha256=mRrEKPSVGS0BdeZd6RKVns7Oaar2tHT6VBoJHyvDC8c,6560
101
- exonware/xwnode/strategies/queries/datalog.py,sha256=j2H7vynFQIK-pEiIZrz-Iafwyd8A3WIglJsN2dzunOQ,2740
102
- exonware/xwnode/strategies/queries/elastic_dsl.py,sha256=75Hs2GgqpafdgmbMg2ihJ40z_x27q8x8wF-aj7z6j6s,2771
103
- exonware/xwnode/strategies/queries/eql.py,sha256=mRK_SQ38x_PSymdH-mUgci0cTvyfoi0HUyL2mC2DYfM,2685
104
- exonware/xwnode/strategies/queries/flux.py,sha256=VKThk77wPII3Vx7KYfZG1JSda_1xSGpr4eyKUmxlBDU,2747
105
- exonware/xwnode/strategies/queries/gql.py,sha256=HASkLV7LRhrMbuA8MMDM6tMWSVvmRQNjm3DljCsBQZ4,2409
106
- exonware/xwnode/strategies/queries/graphql.py,sha256=MaWYdvm5zHXt6Op3fHlCrJHiJ2bZ2JFr8U1pHPIWXd4,7402
107
- exonware/xwnode/strategies/queries/gremlin.py,sha256=kVJ4QhiNz0_wOsA_7yO6TjFR9vHCanCxsxW1Uu3rtzc,6850
108
- exonware/xwnode/strategies/queries/hiveql.py,sha256=ruUYyKTeRF4saYQ_odBa9hejqrnxLlBbK-mpsTB1OKU,7813
109
- exonware/xwnode/strategies/queries/hql.py,sha256=ycTZd__Zgyr8YauVKskN_dchQmO1BeuDn3Cc2Qtf0L0,2692
110
- exonware/xwnode/strategies/queries/jmespath.py,sha256=15VaeT7K1496TyAtpk0juCPH8UtFtJ-PuRA6MWR2dQQ,7963
111
- exonware/xwnode/strategies/queries/jq.py,sha256=D7gIMHTBbnQWkHHwDKRhVeycc0DLoobk-ZUX_baYdCk,2333
112
- exonware/xwnode/strategies/queries/json_query.py,sha256=mGW6y8g6MWjl2ou0T-EIARH8hAT1TT1W24t-GkCAMwc,2306
113
- exonware/xwnode/strategies/queries/jsoniq.py,sha256=p_sz6zxz1nOSf8L7p8-VI6o2PW0fl21ltTw0OHTHF54,8162
114
- exonware/xwnode/strategies/queries/kql.py,sha256=dOw7HpU_GDjydmwKmg4nkdm0FFHlH8RjcggwhN-zbAc,2671
115
- exonware/xwnode/strategies/queries/linq.py,sha256=1kcQ5w9tnjQm0dl7JyZNnwDGruZ1PWgkxPWRGjnN2m4,7994
116
- exonware/xwnode/strategies/queries/logql.py,sha256=tlPH5XEQ5Fm_HVEP2BKuC5FLV7oUHkuQ_qaV0j2-bTw,2744
117
- exonware/xwnode/strategies/queries/mql.py,sha256=c3oTkzHJ5BqwL1lxd8icTNVGtkYGXONKEsUH6a52USw,2554
118
- exonware/xwnode/strategies/queries/n1ql.py,sha256=wPjWyi2_os2V4F59fZbHx-65ajsInX4OuYzKOm7QFU8,7852
119
- exonware/xwnode/strategies/queries/partiql.py,sha256=UIeYH7DwmUo6lJA6Y9nktOZjzV-mLFrVxEtdQMPgSwM,2717
120
- exonware/xwnode/strategies/queries/pig.py,sha256=0oAFo0oxRlS_M71m-hq2qBm0U2Bh3bK7aopNBu0etEk,8530
121
- exonware/xwnode/strategies/queries/promql.py,sha256=SW2V_gATxk_y76OlVM8mDrBBkpg-A1nuxixA0MF-VFI,2714
122
- exonware/xwnode/strategies/queries/sparql.py,sha256=0UgpPl9gfyg5mZPDFjeCRBo1RgganVsU14uI2Jj_tOU,7443
123
- exonware/xwnode/strategies/queries/sql.py,sha256=aNUSE_dCcrOVbtB9sSRh2AnLdq2GVxZ6p10D_30G2_8,10212
124
- exonware/xwnode/strategies/queries/xml_query.py,sha256=-0e-Slk6QZlG46zvAAF77YAfqhr4Bk6Bg8gb-X_3bpM,2329
125
- exonware/xwnode/strategies/queries/xpath.py,sha256=Ofau8Kmq9iKk2Uc4PHY_XYdMlYEL_iRmonz_bBZphH4,9120
126
- exonware/xwnode/strategies/queries/xquery.py,sha256=8mAdVGjc0AOY0UPi_BU6vF-XqEiKetJtb6np0f-bASc,8692
127
- exonware/xwnode/strategies/queries/xwnode_executor.py,sha256=8iEjfwGaH6NYCrjf3e49hFE_4EzYfLt50FKuEur1sx4,12191
128
- exonware/xwnode/strategies/queries/xwquery_strategy.py,sha256=JSjgI8hx8p_deblUm1br6-6oj_-Cf0znPomyxc3GyPI,16193
129
- exonware_xwnode-0.0.1.12.dist-info/METADATA,sha256=8HJxldH_5uqOEy45YHfSnb5mVCpuO38_1FwSeYH_C24,5790
130
- exonware_xwnode-0.0.1.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
131
- exonware_xwnode-0.0.1.12.dist-info/licenses/LICENSE,sha256=w42ohoEUfhyT0NgiivAL4fWg2AMRLGnfXPMAR4EO-MU,1094
132
- exonware_xwnode-0.0.1.12.dist-info/RECORD,,
97
+ exonware/xwnode/strategies/queries/__init__.py,sha256=hLXVLqLcxuxlwXHURUurHGb52_rwcYYN7KwDNszNnUw,617
98
+ exonware/xwnode/strategies/queries/base.py,sha256=XxCiyYIOOPifR5TBYWhvNZ6Vd4MzH9qAzfHkeO_KFkc,8357
99
+ exonware/xwnode/strategies/queries/cql.py,sha256=hdky076s1E5aFbB783P-cPOY-fnYe60ZOccIMKtZoQM,7524
100
+ exonware/xwnode/strategies/queries/cypher.py,sha256=-reuUEL7QckfOVdUzU50DHO8b3BNeDalZheSrueHDLA,6560
101
+ exonware/xwnode/strategies/queries/datalog.py,sha256=Km6xMOTJ-gyH2A82mnYhfoUH849SFcJgZvAMgq6S4TA,2740
102
+ exonware/xwnode/strategies/queries/elastic_dsl.py,sha256=Y8vlEtYC8rfHuY3KGoQgMi24FKRnZ5T0GBTN7YX-aH4,2771
103
+ exonware/xwnode/strategies/queries/eql.py,sha256=i-OzGKDyG6PPnoh1JGTYB6203CRxfC6s94maKssKwbo,2685
104
+ exonware/xwnode/strategies/queries/flux.py,sha256=bjGidrUcu1rCDZfznbPFYTv56YEgKyNB9Fmq-AgDV7o,2747
105
+ exonware/xwnode/strategies/queries/gql.py,sha256=gaMug2DxnR3tspruHRo38DuN5z7r_RUSulLrPnqM4n8,2409
106
+ exonware/xwnode/strategies/queries/graphql.py,sha256=tKgNkRK0-lT0NjV84b0D459pcWQHCN4BP0gQYdvQswk,7402
107
+ exonware/xwnode/strategies/queries/gremlin.py,sha256=PiPnN0W67x-vcXUuz0cyAlp8YEvQdt_7PqMqElXAzG4,6850
108
+ exonware/xwnode/strategies/queries/hiveql.py,sha256=oROb0vF1C3BYscZDtkxR9HuEpKlzTZHChvl3keUyqVc,7813
109
+ exonware/xwnode/strategies/queries/hql.py,sha256=mZ2JidYHj3PLwY_72zKdLhkRNz-lYycEaYjQb_n9pwY,2692
110
+ exonware/xwnode/strategies/queries/jmespath.py,sha256=5jvRRZT71jw8iZnrdFD8LoFXpheZVcKK3IXR7QCUbuQ,7963
111
+ exonware/xwnode/strategies/queries/jq.py,sha256=SmgZ58Qxv2xuIxf4fCPS6hvAaoo30pzFLA2170ut5Cw,2333
112
+ exonware/xwnode/strategies/queries/json_query.py,sha256=0OGgorF6J3SI6yUrpiE4ZDTZXbGVlad79CKfrsk20j4,2306
113
+ exonware/xwnode/strategies/queries/jsoniq.py,sha256=vK2uZQQqJVCuucDxnPO1sq1f-awLZ7jRpDcxxD9e8PY,8162
114
+ exonware/xwnode/strategies/queries/kql.py,sha256=rv4h2e_2TEeHU9adgGdzeCkmmGbjOezhfKguTAKbi6s,2671
115
+ exonware/xwnode/strategies/queries/linq.py,sha256=xohmb6M19hFrNANrFwkNCAh0OXzvGCdO3YBRXB0naR8,7994
116
+ exonware/xwnode/strategies/queries/logql.py,sha256=0rkg303PErEj2-1VeaL2ZUaNn1ciZxiJIL0OZlepFBE,2744
117
+ exonware/xwnode/strategies/queries/mql.py,sha256=EMUhWaFfJu15Q9PRFM-BJ0b7dYnm_h5s7QxeBUe8fbk,2554
118
+ exonware/xwnode/strategies/queries/n1ql.py,sha256=m6L4IQXvdtT0iqNeeguScchE4nax6zyWrJ778PGFvTY,7852
119
+ exonware/xwnode/strategies/queries/partiql.py,sha256=AnYAiH8esGvJhg21JkIwHJF7CxEeO8avCmTAxeEJtQk,2717
120
+ exonware/xwnode/strategies/queries/pig.py,sha256=5-zj1s0xXGkdLw15jsRnlliKFJeNprokwc_Aj1lV8h4,8530
121
+ exonware/xwnode/strategies/queries/promql.py,sha256=SkSv3aYQ253nY0tFohY54LEezpTnPCEHQZYMJSsNB0Q,2714
122
+ exonware/xwnode/strategies/queries/sparql.py,sha256=RgzoQIjNQXKRoSW2cWh3ZAqwH20U_Pm-1igpFotLki8,7443
123
+ exonware/xwnode/strategies/queries/sql.py,sha256=gEcvijTVqv6uMJRvQVcYGH0XVhAA_Q97DgLRmdHS6Ek,10212
124
+ exonware/xwnode/strategies/queries/xml_query.py,sha256=JloTpfrX2ch23wJ8Q-2O52H9KogMZEofT4Gi9KGA0ig,2329
125
+ exonware/xwnode/strategies/queries/xpath.py,sha256=tyclYyZ4r9pYSaKiwljomH7Xo5sgfZjiy42ZycJ9fxE,9120
126
+ exonware/xwnode/strategies/queries/xquery.py,sha256=s8AG3H1bTki22ViXGFKz_ccsK8mtozeLWle9DOEkO5A,8692
127
+ exonware/xwnode/strategies/queries/xwnode_executor.py,sha256=qLa7tTY9HOosM0TUI9-Nm2Bhj7m0C6vBuhmHZ9cSCLo,12191
128
+ exonware/xwnode/strategies/queries/xwquery.py,sha256=mIwXZ3nBOVc3NrVL-zth_hEoOVgKCLTjonJq2scZVIw,16193
129
+ exonware_xwnode-0.0.1.13.dist-info/METADATA,sha256=29SCq0WB3cCqQOO42zGPx1J2GIoa-KXaw-ONc2-tBvU,5790
130
+ exonware_xwnode-0.0.1.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
131
+ exonware_xwnode-0.0.1.13.dist-info/licenses/LICENSE,sha256=w42ohoEUfhyT0NgiivAL4fWg2AMRLGnfXPMAR4EO-MU,1094
132
+ exonware_xwnode-0.0.1.13.dist-info/RECORD,,