exonware-xwnode 0.0.1.23__py3-none-any.whl → 0.0.1.25__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 (75) hide show
  1. exonware/__init__.py +1 -1
  2. exonware/xwnode/__init__.py +1 -1
  3. exonware/xwnode/add_strategy_types.py +1 -1
  4. exonware/xwnode/common/__init__.py +1 -1
  5. exonware/xwnode/common/graph/__init__.py +1 -1
  6. exonware/xwnode/common/graph/caching.py +1 -1
  7. exonware/xwnode/common/graph/contracts.py +1 -1
  8. exonware/xwnode/common/graph/errors.py +1 -1
  9. exonware/xwnode/common/graph/indexing.py +1 -1
  10. exonware/xwnode/common/graph/manager.py +1 -1
  11. exonware/xwnode/common/management/__init__.py +1 -1
  12. exonware/xwnode/common/management/manager.py +1 -1
  13. exonware/xwnode/common/monitoring/__init__.py +1 -1
  14. exonware/xwnode/common/monitoring/metrics.py +1 -1
  15. exonware/xwnode/common/monitoring/pattern_detector.py +1 -1
  16. exonware/xwnode/common/monitoring/performance_monitor.py +1 -1
  17. exonware/xwnode/common/patterns/__init__.py +1 -1
  18. exonware/xwnode/common/patterns/flyweight.py +1 -1
  19. exonware/xwnode/common/utils/__init__.py +1 -1
  20. exonware/xwnode/edges/strategies/__init__.py +1 -1
  21. exonware/xwnode/edges/strategies/base.py +1 -1
  22. exonware/xwnode/edges/strategies/bitemporal.py +1 -1
  23. exonware/xwnode/edges/strategies/bv_graph.py +1 -1
  24. exonware/xwnode/edges/strategies/compressed_graph.py +1 -1
  25. exonware/xwnode/edges/strategies/edge_list.py +1 -1
  26. exonware/xwnode/edges/strategies/euler_tour.py +1 -1
  27. exonware/xwnode/edges/strategies/graphblas.py +1 -1
  28. exonware/xwnode/edges/strategies/hnsw.py +1 -1
  29. exonware/xwnode/edges/strategies/hop2_labels.py +1 -1
  30. exonware/xwnode/edges/strategies/incidence_matrix.py +1 -1
  31. exonware/xwnode/edges/strategies/k2_tree.py +1 -1
  32. exonware/xwnode/edges/strategies/link_cut.py +1 -1
  33. exonware/xwnode/edges/strategies/multiplex.py +1 -1
  34. exonware/xwnode/edges/strategies/roaring_adj.py +1 -1
  35. exonware/xwnode/facade.py +1 -1
  36. exonware/xwnode/nodes/strategies/__init__.py +1 -1
  37. exonware/xwnode/nodes/strategies/adjacency_list.py +1 -1
  38. exonware/xwnode/nodes/strategies/art.py +1 -1
  39. exonware/xwnode/nodes/strategies/base.py +1 -1
  40. exonware/xwnode/nodes/strategies/bloom_filter.py +1 -1
  41. exonware/xwnode/nodes/strategies/bloomier_filter.py +1 -1
  42. exonware/xwnode/nodes/strategies/bw_tree.py +1 -1
  43. exonware/xwnode/nodes/strategies/contracts.py +1 -1
  44. exonware/xwnode/nodes/strategies/cow_tree.py +1 -1
  45. exonware/xwnode/nodes/strategies/crdt_map.py +1 -1
  46. exonware/xwnode/nodes/strategies/data_interchange_optimized.py +1 -1
  47. exonware/xwnode/nodes/strategies/dawg.py +1 -1
  48. exonware/xwnode/nodes/strategies/deque.py +1 -1
  49. exonware/xwnode/nodes/strategies/extendible_hash.py +1 -1
  50. exonware/xwnode/nodes/strategies/hamt.py +1 -1
  51. exonware/xwnode/nodes/strategies/hash_map.py +1 -1
  52. exonware/xwnode/nodes/strategies/hopscotch_hash.py +1 -1
  53. exonware/xwnode/nodes/strategies/interval_tree.py +1 -1
  54. exonware/xwnode/nodes/strategies/kd_tree.py +1 -1
  55. exonware/xwnode/nodes/strategies/learned_index.py +1 -1
  56. exonware/xwnode/nodes/strategies/linear_hash.py +1 -1
  57. exonware/xwnode/nodes/strategies/lsm_tree.py +1 -1
  58. exonware/xwnode/nodes/strategies/masstree.py +1 -1
  59. exonware/xwnode/nodes/strategies/persistent_tree.py +1 -1
  60. exonware/xwnode/nodes/strategies/priority_queue.py +1 -1
  61. exonware/xwnode/nodes/strategies/queue.py +1 -1
  62. exonware/xwnode/nodes/strategies/roaring_bitmap.py +1 -1
  63. exonware/xwnode/nodes/strategies/rope.py +1 -1
  64. exonware/xwnode/nodes/strategies/sparse_matrix.py +1 -1
  65. exonware/xwnode/nodes/strategies/stack.py +1 -1
  66. exonware/xwnode/nodes/strategies/t_tree.py +1 -1
  67. exonware/xwnode/nodes/strategies/veb_tree.py +1 -1
  68. exonware/xwnode/strategies/__init__.py +1 -1
  69. exonware/xwnode/version.py +2 -2
  70. exonware_xwnode-0.0.1.25.dist-info/METADATA +900 -0
  71. exonware_xwnode-0.0.1.25.dist-info/RECORD +130 -0
  72. exonware_xwnode-0.0.1.23.dist-info/METADATA +0 -188
  73. exonware_xwnode-0.0.1.23.dist-info/RECORD +0 -130
  74. {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.25.dist-info}/WHEEL +0 -0
  75. {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.25.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,130 @@
1
+ exonware/__init__.py,sha256=er--va9X58Ke50hFFBDpeRbbhS7C48W-4tu-e1hCtdY,624
2
+ exonware/xwnode/__init__.py,sha256=yObk8yO_BlfRlsTwEQ7BHzpyFPmCRdOwOW1lNoBrpyA,4175
3
+ exonware/xwnode/add_strategy_types.py,sha256=ubqcDBVQ-sLluX_NfVLBYFFknsEpBIufXwfO56zdQoM,4977
4
+ exonware/xwnode/base.py,sha256=zM2vE55RziwBz_-x0B5GYGOyM0Coi_kEo-meMM59u-A,23895
5
+ exonware/xwnode/config.py,sha256=cJGwxc2FiNH9lw1vslLHOQJ3Xl2DfekKF4h_lnUD-pc,5519
6
+ exonware/xwnode/contracts.py,sha256=s3nMO7hdSvDbonABbQAHgmWsDi_H_P7JdyU6WqYnRWM,17925
7
+ exonware/xwnode/defs.py,sha256=eWjFb0UOCltv90VXwW0e-ijGTHYkdhXmX6yyq17-QXA,47068
8
+ exonware/xwnode/errors.py,sha256=JVS1AgK7wtR_c170UWRPaIqGqVWylc9qpu3JPyT8pNU,18285
9
+ exonware/xwnode/facade.py,sha256=Q1DzCRW-XCSiFC2Lvbdk--u-Wb4SFHQEYNjYiBMzVf0,16263
10
+ exonware/xwnode/version.py,sha256=bCyD4h5yunmV02ivKo7cVuOjPbJN-x6j5auBqtaD7uI,2379
11
+ exonware/xwnode/common/__init__.py,sha256=9ojcMm725LmOaihEAAAMBgPmAzLXs5iXNj1d73VYxLs,387
12
+ exonware/xwnode/common/graph/__init__.py,sha256=X7HyYMsSA8pMszf_DFhSZvNE0zmvyDYpxFIIZ4_mZyI,645
13
+ exonware/xwnode/common/graph/caching.py,sha256=H23IpSCRsH5HfYt8KF2m-FL4vm_QUVVY0SqJSV-uuPY,3575
14
+ exonware/xwnode/common/graph/contracts.py,sha256=DnCsynIj2wI2JFOZNDuna4SSFvOzX2yGP-YZDnD6R0k,2434
15
+ exonware/xwnode/common/graph/errors.py,sha256=ymtVAjJbGEn0w-Gei4wiQ-BV5Qad89pOshbxhB8xJtc,857
16
+ exonware/xwnode/common/graph/indexing.py,sha256=vOMDsmOjAsmAQgbXTh12YnlI3aRfX3BdxiTCEQ-uAfs,8306
17
+ exonware/xwnode/common/graph/manager.py,sha256=BywdGGlowFrRufDxYo0whl6etkhLsfD6L3Tff59zfaE,19875
18
+ exonware/xwnode/common/management/__init__.py,sha256=ZJpuA9kT3ejrBnUp3XHgFaGHI7ZIyp4mv2pS0Oulctw,663
19
+ exonware/xwnode/common/management/manager.py,sha256=Y6wK3k1JRHLTcIbO-whaRs3JKSr93kmO2DTyboCLNj8,33972
20
+ exonware/xwnode/common/management/migration.py,sha256=lXjg27SuHSF36dRxhL7zq-o0atB0ODdz7Bl3PHvSQDc,20191
21
+ exonware/xwnode/common/monitoring/__init__.py,sha256=T9pdUdFZ5aS_BkO0fIZnQkvpWfPAqoe49UvDHb9atjs,663
22
+ exonware/xwnode/common/monitoring/metrics.py,sha256=1m-AAVupEKe9bl9iNmm03R8u0xut2HinATvbIJcuOiY,19556
23
+ exonware/xwnode/common/monitoring/pattern_detector.py,sha256=1GovOAuwQ0HxCT4Km610vDs7cGr6_fWCQGEwh3w5l9I,21668
24
+ exonware/xwnode/common/monitoring/performance_monitor.py,sha256=pi7yaqyTY3kxW-G6xwMUe2u4Htx-skcIGThabGNJ8MA,17579
25
+ exonware/xwnode/common/patterns/__init__.py,sha256=2NQgvJlFx_PZbQSOEGXUnGDvj2zyxAxDTpuzyyKyDKw,659
26
+ exonware/xwnode/common/patterns/advisor.py,sha256=RrHRKARK25dwK6dSrOkJeNkMssnJRGW0CMh6KCpGaGQ,18189
27
+ exonware/xwnode/common/patterns/flyweight.py,sha256=H-prboi4cBqVmP9NbNSaU0XqEPO1_KA5D4QdotisH5o,11434
28
+ exonware/xwnode/common/patterns/registry.py,sha256=fi5dZkCTJKqz2KCW16am5WjGEyQefvwYerWLc6wo2b4,29822
29
+ exonware/xwnode/common/utils/__init__.py,sha256=W3tOByfxBtoj4ycCSty7kZOJN0hxYjNRvERKNA8BHHY,1464
30
+ exonware/xwnode/common/utils/simple.py,sha256=QN7-kpk73nwPN6vS0Xw54DYKWmcEGPfB9FqTIu2nuRE,9080
31
+ exonware/xwnode/common/utils/utils.py,sha256=ma_C5Xpgpo0053jEWqzco4-KNyBOWanJhKvQ3Masq84,17554
32
+ exonware/xwnode/edges/strategies/__init__.py,sha256=7uGIKwJ8xOmQ-xl4X3vDQGyWsQwE_lZ4BelNiW0anOM,3249
33
+ exonware/xwnode/edges/strategies/_base_edge.py,sha256=9cgyolEGwmteUJDRltlIvHugDco1_iS1_z5_fadGCYg,13647
34
+ exonware/xwnode/edges/strategies/adj_list.py,sha256=91pzpi1pNxsOAUTRNkFeZ2v-WGvyVaF9_W0tctEJ51k,15676
35
+ exonware/xwnode/edges/strategies/adj_matrix.py,sha256=D8RNDUE_eQvRJ5nLMq-rXgQr6y50Nqdwk0-MHbfO5ts,19247
36
+ exonware/xwnode/edges/strategies/base.py,sha256=T64KEd1bBqTQHy0ow3nkoS9lwUKIeaGUoio5AQTs7mM,6251
37
+ exonware/xwnode/edges/strategies/bidir_wrapper.py,sha256=u5Hi6_K79UncTI7oWR5d_JT_7-yuk6NcJ07PhwCNdwE,19824
38
+ exonware/xwnode/edges/strategies/bitemporal.py,sha256=vsWmgTVfcrOe6lhzH7w6uuHHCiul-V1NQuCo88BYyuI,18460
39
+ exonware/xwnode/edges/strategies/block_adj_matrix.py,sha256=nf64WsXxiqi5t7Bf0wYzrECWuLwIvKe2MG5qrxDSa6s,23778
40
+ exonware/xwnode/edges/strategies/bv_graph.py,sha256=d-BH6LJd2cp-D8wYYm717QgvPjhNuFKHB2waQVG6xJk,22598
41
+ exonware/xwnode/edges/strategies/compressed_graph.py,sha256=XdyGhyQz_G1RpeWjpgWjTvGlvqNnxU5Si-LJP-sf1rU,7838
42
+ exonware/xwnode/edges/strategies/coo.py,sha256=8Srn6QgsCOuErRns94kpkmIkWdVMQhsBu7v6vN2TZKE,21605
43
+ exonware/xwnode/edges/strategies/csc.py,sha256=Nt-7Rsh4Dk6M6AOLbRa9rO-6yYYhOaeFfmpMA6NrV44,18435
44
+ exonware/xwnode/edges/strategies/csr.py,sha256=XJOQXsVk2DObdQIdu-VYUq8kBrjB1_excwQA9zwbL8A,22336
45
+ exonware/xwnode/edges/strategies/dynamic_adj_list.py,sha256=mePzSVARy5OdCvWEKGW1W314fDKXHW2tlJz1j1COTB0,21408
46
+ exonware/xwnode/edges/strategies/edge_list.py,sha256=Zr0Gi0GYuLxTlCprZt_UcTHHN0MNOS0vo3ibDDqCwss,5832
47
+ exonware/xwnode/edges/strategies/edge_property_store.py,sha256=oCKthsTZLVkx1TnaCWMnh7uLV14j2TxlN1EMWWW1qIM,25628
48
+ exonware/xwnode/edges/strategies/euler_tour.py,sha256=EsOpAz9gpoqQcIHGofpkeWCTTKHyqQIflPHHvQZtbFg,18116
49
+ exonware/xwnode/edges/strategies/flow_network.py,sha256=GzaEKc98QTYAa7k7QnXRAPoHCPWkjAQUMziIfxyTvJk,21471
50
+ exonware/xwnode/edges/strategies/graphblas.py,sha256=V0qe29zfjC7u5-kB1KLtZkS8_Z54Xg6H5O3QC16PqSE,15472
51
+ exonware/xwnode/edges/strategies/hnsw.py,sha256=30mZHA-bO029lb3pjlChcc1W0Fext_K88UpAwQRBioM,23480
52
+ exonware/xwnode/edges/strategies/hop2_labels.py,sha256=OD3yaPk_W8N7r96Q0GmpPRGPyfdaBH6ceOEw2kxupTY,16994
53
+ exonware/xwnode/edges/strategies/hyperedge_set.py,sha256=iLHDhEXEKIzFaFOBXsutIyQ49Bzzvb4urqiYqmhsuSY,20762
54
+ exonware/xwnode/edges/strategies/incidence_matrix.py,sha256=cSADW9hqAcho7iPF_tU-XZxDYTPUeDodqxRSpN5WfWk,9320
55
+ exonware/xwnode/edges/strategies/k2_tree.py,sha256=p-k1_sW6Uxsz1L5PvuqbBumGq457-0jdHgJl3n1-Af4,21652
56
+ exonware/xwnode/edges/strategies/link_cut.py,sha256=kLn7wlpwPk0Nji2BdSyNqjk-jR7iFJoIq-2d6RQ_xQg,20343
57
+ exonware/xwnode/edges/strategies/multiplex.py,sha256=wQcDSWny1OhUzhvhpQAo8ilWKFqQP4go9SLpiwo9YZM,18641
58
+ exonware/xwnode/edges/strategies/neural_graph.py,sha256=M3tlCOgRH9AnSmz4cuT722FNl2YaBYnlAzmGTHN85kw,25115
59
+ exonware/xwnode/edges/strategies/octree.py,sha256=whjjTOAleqHICjlBsVx6YU6PQbnS2t1rnzukmMHfxxM,25451
60
+ exonware/xwnode/edges/strategies/quadtree.py,sha256=Gb-3a4KIiv7wnwGQwAVdZ2L9dkrCiv_WTVWvzOobO98,22569
61
+ exonware/xwnode/edges/strategies/roaring_adj.py,sha256=j7PDdzVbk7HHHEfGyw4jx-wKvBvz9wLs3NvdyjW0OVk,15786
62
+ exonware/xwnode/edges/strategies/rtree.py,sha256=RiLsJ2ojQjiO9zm9VmCfpzziKbUjcRvZSPqOG6-CDyk,33130
63
+ exonware/xwnode/edges/strategies/temporal_edgeset.py,sha256=JPgpGDZ9J1-9aRnMWtUs8CJpI4pZ0qZ3tntZm2-Gymw,22876
64
+ exonware/xwnode/edges/strategies/tree_graph_basic.py,sha256=izAYfY5M0NKwP5PprVuiqnZMYFzFbbCiKG43MeB2j3Q,12339
65
+ exonware/xwnode/edges/strategies/weighted_graph.py,sha256=CHcQ3pDDIg6SGYXsJ4Cj8hkZyNaXbNJlY4nqGwWLSOc,23334
66
+ exonware/xwnode/nodes/strategies/__init__.py,sha256=nnWcFODXSd0kcpaVaxCr3owFpGn9iIJBbzfAVX_4qNo,1787
67
+ exonware/xwnode/nodes/strategies/adjacency_list.py,sha256=5Nz_AkNNaiopp9IaiLeujt_egwGWocb5cTvIp_RllM4,25245
68
+ exonware/xwnode/nodes/strategies/aho_corasick.py,sha256=nB8WYJvWPX3YUbB2gBfL7YO1evM2LS2zVszC17eWSbk,18673
69
+ exonware/xwnode/nodes/strategies/array_list.py,sha256=rHvj5HfegNDY81oodUYUjWsymey-VNYtIelJb-dd7Eg,8253
70
+ exonware/xwnode/nodes/strategies/art.py,sha256=ZA0JytB9D9AvBpngyYheS3O_0zLfYHZ-5PZ0Hqq7nws,20637
71
+ exonware/xwnode/nodes/strategies/avl_tree.py,sha256=I1bL6PR5u3qnqUhm-S3JVi-HPdYHWQpAHmjB4dKNqKQ,16261
72
+ exonware/xwnode/nodes/strategies/b_plus_tree.py,sha256=5CntWSprQB61w-dvxeyI592An0xlZE0lI2-J585y6lg,20702
73
+ exonware/xwnode/nodes/strategies/b_tree.py,sha256=_YJ1KzdnL8HcR8bLzKB3aYJapNgDozrraiA4JECMZU0,15154
74
+ exonware/xwnode/nodes/strategies/base.py,sha256=IeBpVfntH3SJzboBn4k6NzkHJ3cffdzIzDDbl9oHPzA,22549
75
+ exonware/xwnode/nodes/strategies/bitmap.py,sha256=b-fcsHVXm35ouqbI0RyWZg5zSjPK8DHLMlqgXAtPNbg,15153
76
+ exonware/xwnode/nodes/strategies/bitset_dynamic.py,sha256=t1sIy0yiV81ifAAbJ5LY6jBhwnrAcGjD4JVyUAt5Ye0,18937
77
+ exonware/xwnode/nodes/strategies/bloom_filter.py,sha256=xgdeSVYXPWyn-c6bCXueEnumL4xJlF1I3n9fqCEkblk,13749
78
+ exonware/xwnode/nodes/strategies/bloomier_filter.py,sha256=mpi_7owJFsJpb2Yx1ZtHNtgbE0LdySBSO-So1ByA8gY,17808
79
+ exonware/xwnode/nodes/strategies/bw_tree.py,sha256=hJ0sO7nHTY2gpIXS2kMv47Rker4uAHG318El_90EjcQ,19576
80
+ exonware/xwnode/nodes/strategies/contracts.py,sha256=qF9M3Vr4NZ9-BZ63LuNjBM75QXi08lrFImU2XfftDfg,3225
81
+ exonware/xwnode/nodes/strategies/count_min_sketch.py,sha256=WHjaVOVOOu8ELMvbqKCLGNkjqDvpAU7IoVhVL-0bqa0,18017
82
+ exonware/xwnode/nodes/strategies/cow_tree.py,sha256=hHqkkmeNwIC9ylt4kkcx7oLdiE0vViUz2PjFqegN-RA,21643
83
+ exonware/xwnode/nodes/strategies/crdt_map.py,sha256=XDscm4sCpkhX3jZHLs3sn3lz9ZBZOXix84Dg9rDfwL0,21035
84
+ exonware/xwnode/nodes/strategies/cuckoo_hash.py,sha256=EGBnOH1lPrqUsSZGt3c7gRVzTgxsx-ov1lFitYfWMOI,14950
85
+ exonware/xwnode/nodes/strategies/data_interchange_optimized.py,sha256=ElfwKWsIIuNFZgjbMpenRXw_PXzHgZeDZEq6MKEXheY,15049
86
+ exonware/xwnode/nodes/strategies/dawg.py,sha256=LDvWB1FPCrMwJFYvRR_5tlgDEdGVjvhDobA6jLKN41o,28126
87
+ exonware/xwnode/nodes/strategies/deque.py,sha256=tmAHumqvwP-KOc6nxgAinvyCGZxfa68bGX0qL-a49uE,11866
88
+ exonware/xwnode/nodes/strategies/extendible_hash.py,sha256=sW-SbmMEXraxBgtFhwA_z3euvRekTY-30XAeTENIJQo,2858
89
+ exonware/xwnode/nodes/strategies/fenwick_tree.py,sha256=Y7LpZsbxYAJ6f08QpmfHafk5Rrah4pzHcPrQR7muyOo,14520
90
+ exonware/xwnode/nodes/strategies/hamt.py,sha256=bl7xvlafVQJpTou74aJe2Po-LgUujGGr-uLHBS9UvTg,14052
91
+ exonware/xwnode/nodes/strategies/hash_map.py,sha256=LXDD3LpbkA9DSBxb_5Dah62QlIB_EKIATWYkowa3Hms,13408
92
+ exonware/xwnode/nodes/strategies/heap.py,sha256=Id3339pnmYUn_Dh_VWtr9hP251AXoZGQY59mFer1SQc,13567
93
+ exonware/xwnode/nodes/strategies/hopscotch_hash.py,sha256=2yd0bKsGPvKLYNahU7zH1bzKVof71yeUc4BQx210Nqs,17650
94
+ exonware/xwnode/nodes/strategies/hyperloglog.py,sha256=cosjsuDEjeXmprnUXhaYwYET2p5WtGPvnH2teJO-984,14997
95
+ exonware/xwnode/nodes/strategies/interval_tree.py,sha256=6ObLbjCKQeKx1yzrBtpwsL4UMY9JDMTo4LRnKnn4PEw,25276
96
+ exonware/xwnode/nodes/strategies/kd_tree.py,sha256=cm8VYunImaup6lU1tFHzvp0z0gsOpBImJV34wGqHavA,23949
97
+ exonware/xwnode/nodes/strategies/learned_index.py,sha256=WRZqBBgyFcSbIPH1dFm97ThEwuQg8tYe5-UD_jqVOP8,19199
98
+ exonware/xwnode/nodes/strategies/linear_hash.py,sha256=ggP8CzppFIkzlo-T-DLWqHiOeoHz4Q1j6ETxNPKZnfM,2824
99
+ exonware/xwnode/nodes/strategies/linked_list.py,sha256=yrJx_lo5S6EmZmOxM9fythjou_T9gELC-BE9gYlmRmA,14141
100
+ exonware/xwnode/nodes/strategies/lsm_tree.py,sha256=xVaG1_roJkZY8PTdglGWEv2iCQ9Rz4EBeDg70C0XWn8,22688
101
+ exonware/xwnode/nodes/strategies/masstree.py,sha256=wPHIC2RvzZKvyTnHXAyXJIju6RWwcSUJeYcJT4hp5Go,4078
102
+ exonware/xwnode/nodes/strategies/ordered_map.py,sha256=XCEx_9C1S7OtIaoM_CqAlDqBNMOGRCg_RMJ1cAmjBz4,14619
103
+ exonware/xwnode/nodes/strategies/ordered_map_balanced.py,sha256=iSS70TiIMapBz3pJxldLwVsfPe5DyDEwxhZJky_2Bps,20601
104
+ exonware/xwnode/nodes/strategies/patricia.py,sha256=0y829h7INJ6J-LmeW3W2pXA88RFq9V1Dae0Z7ct9sDw,18789
105
+ exonware/xwnode/nodes/strategies/persistent_tree.py,sha256=zeG5-MYpxCP6z83_koTNMuxlikOY8sWCZfYlp_1dZCE,19471
106
+ exonware/xwnode/nodes/strategies/priority_queue.py,sha256=wNgRdh5-zUHPaDAPKaZaDaqyR_zmUaTb0zhrKYxHJvQ,22818
107
+ exonware/xwnode/nodes/strategies/queue.py,sha256=OQj7E2GpPH0WqjqFrWB-_SXEs7COacwcR2UJytGYcrk,9684
108
+ exonware/xwnode/nodes/strategies/radix_trie.py,sha256=MXTshSaRFC1vQN-ik9ohzCUVU_q5v5CBJnyO03M_M6g,17235
109
+ exonware/xwnode/nodes/strategies/red_black_tree.py,sha256=Pbo4Au3A35Beg4uXlo4p0_Z6xlolnc_PiLwrSEo3mdc,22705
110
+ exonware/xwnode/nodes/strategies/roaring_bitmap.py,sha256=v6GXQqGutmPpAu59WJXnpGbh3hWUS4xA8FKyuzeVNNM,20992
111
+ exonware/xwnode/nodes/strategies/rope.py,sha256=Qp7UVneSFtbs6N5bTsUhaqOiCyqZFqeWqtVOU88Xe8Y,22886
112
+ exonware/xwnode/nodes/strategies/segment_tree.py,sha256=vg0MGCkK6rvTZZN2seZnTE20RSn5bMioljvnA1CjLKk,10553
113
+ exonware/xwnode/nodes/strategies/set_hash.py,sha256=QtEngD-nOBA8kTiaJ1dJshj7YUtNNiyTYHdN9dPokJU,13402
114
+ exonware/xwnode/nodes/strategies/set_tree.py,sha256=ph6D8jbIlYoCNh_7l8tSHHq_lG8X4hNcYVgP4RfDKbI,15957
115
+ exonware/xwnode/nodes/strategies/skip_list.py,sha256=cH_WK91z3fHWRkUa87fkepjxHxoJFfRBVRj1y4cXpAo,14737
116
+ exonware/xwnode/nodes/strategies/sparse_matrix.py,sha256=Hc05-Jw-xM-yBVpaVwm7YXF-rKo6AK_8ixC7W0YKjaI,17468
117
+ exonware/xwnode/nodes/strategies/splay_tree.py,sha256=09XL2_Mw9oB3EikpQHGvfcEvdM3RCf3ZqRel-O6ZA8E,15158
118
+ exonware/xwnode/nodes/strategies/stack.py,sha256=Bz9PL6MAwX1a2ZQjalbhUbcMFWKCBZ0neyoOTnMm4R8,9789
119
+ exonware/xwnode/nodes/strategies/suffix_array.py,sha256=OOR-tKHfupLpJV8whW3jvLHGzD-swEADXXHaTvKt9So,17139
120
+ exonware/xwnode/nodes/strategies/t_tree.py,sha256=AEUVGjil5Aux2feCCh6OY4_4RQxk6U-LdYt-hopumAw,2863
121
+ exonware/xwnode/nodes/strategies/treap.py,sha256=8jcrzwYn87rS850UcofWq6mmeeS9DpZwvVq9nlbJAc4,17252
122
+ exonware/xwnode/nodes/strategies/tree_graph_hybrid.py,sha256=hzwt3XXSW3HR8qQE6LgOSCaai5YBiLlOxS2CAGkE7r0,55462
123
+ exonware/xwnode/nodes/strategies/trie.py,sha256=5SxaV9rHylqUG_HPu5tTrEo_ysftntZl2DSDChmwcNA,13752
124
+ exonware/xwnode/nodes/strategies/union_find.py,sha256=V0QNfVNMf20-F3ylTmMyoMEYw8ZKUiuUFA_P_Fxk_7E,13583
125
+ exonware/xwnode/nodes/strategies/veb_tree.py,sha256=yUn5_03Df160tw9gG3cM6nHhVuNwtQNJbZJl2H1VnV4,27014
126
+ exonware/xwnode/strategies/__init__.py,sha256=vENajPVvKDbxNW8hGg83zTYaXJajtwt0lZtQDJvq24s,5521
127
+ exonware_xwnode-0.0.1.25.dist-info/METADATA,sha256=tHCwF8VJ5m3YZ84kt3eqtPT50bKCzsEqqiASvwCzcos,28317
128
+ exonware_xwnode-0.0.1.25.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
129
+ exonware_xwnode-0.0.1.25.dist-info/licenses/LICENSE,sha256=w42ohoEUfhyT0NgiivAL4fWg2AMRLGnfXPMAR4EO-MU,1094
130
+ exonware_xwnode-0.0.1.25.dist-info/RECORD,,
@@ -1,188 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: exonware-xwnode
3
- Version: 0.0.1.23
4
- Summary: Node-based data processing and graph computation library
5
- Project-URL: Homepage, https://exonware.com
6
- Project-URL: Repository, https://github.com/exonware/xwnode
7
- Project-URL: Documentation, https://github.com/exonware/xwnode#readme
8
- Author-email: "Eng. Muhammad AlShehri" <connect@exonware.com>
9
- License: MIT
10
- License-File: LICENSE
11
- Keywords: computation,data-processing,exonware,graph,node,workflow
12
- Classifier: Development Status :: 3 - Alpha
13
- Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: MIT License
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.8
18
- Classifier: Programming Language :: Python :: 3.9
19
- Classifier: Programming Language :: Python :: 3.10
20
- Classifier: Programming Language :: Python :: 3.11
21
- Classifier: Programming Language :: Python :: 3.12
22
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
- Requires-Python: >=3.8
24
- Requires-Dist: exonware-xwsystem
25
- Provides-Extra: dev
26
- Requires-Dist: black>=23.0.0; extra == 'dev'
27
- Requires-Dist: isort>=5.12.0; extra == 'dev'
28
- Requires-Dist: mypy>=1.0.0; extra == 'dev'
29
- Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
30
- Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
31
- Requires-Dist: pytest>=7.0.0; extra == 'dev'
32
- Provides-Extra: full
33
- Requires-Dist: exonware-xwsystem[full]; extra == 'full'
34
- Provides-Extra: lazy
35
- Requires-Dist: exonware-xwsystem[lazy]; extra == 'lazy'
36
- Description-Content-Type: text/markdown
37
-
38
- # 🚀 **xwnode: Node-Based Data Processing Library**
39
-
40
- **Company:** eXonware.com
41
- **Author:** Eng. Muhammad AlShehri
42
- **Email:** connect@exonware.com
43
- **Version:** 0.0.1.23
44
- **Last Updated:** 11-Oct-2025
45
-
46
- ## 🎯 **What is xwnode?**
47
-
48
- xwnode is a powerful Python library for node-based data processing and graph computation. It provides a flexible framework for building data processing workflows using interconnected nodes, enabling complex data transformations and computations through an intuitive graph-based approach.
49
-
50
- ## ⚡ **Quick Start**
51
-
52
- ### **Installation**
53
-
54
- xwnode offers three installation modes to match your needs:
55
-
56
- #### **Default (Lite) - Minimal Installation**
57
- ```bash
58
- pip install exonware-xwnode
59
- # or
60
- pip install xwnode
61
- ```
62
- - ✅ Core node functionality
63
- - ✅ Basic graph operations
64
- - ✅ Essential data processing
65
- - ✅ Zero external dependencies (beyond xwsystem)
66
-
67
- #### **Lazy - Auto-Install on Demand**
68
- ```bash
69
- pip install exonware-xwnode[lazy]
70
- # or
71
- pip install xwnode[lazy]
72
- ```
73
- - ✅ Everything from default
74
- - ✅ Automatic dependency installation
75
- - ✅ Enterprise serialization on-demand
76
- - ✅ Performance monitoring when needed
77
-
78
- #### **Full - Complete Feature Set**
79
- ```bash
80
- pip install exonware-xwnode[full]
81
- # or
82
- pip install xwnode[full]
83
- ```
84
- - ✅ Everything from lazy
85
- - ✅ All xwsystem serialization formats (50+)
86
- - ✅ Advanced security features
87
- - ✅ Performance monitoring
88
- - ✅ Enterprise-grade capabilities
89
-
90
- ### **Basic Usage**
91
- ```python
92
- from exonware.xwnode import XWNode, XWQuery, XWFactory
93
- # Or use convenience import:
94
- # import xwnode
95
-
96
- # Your node-based processing code here
97
- node = XWNode({'data': 'example'})
98
- ```
99
-
100
- ## 🎯 **Perfect For:**
101
-
102
- - **🔄 Data Processing Pipelines** - Build complex data transformation workflows
103
- - **📊 Graph Computation** - Process data through interconnected node networks
104
- - **🔀 Workflow Management** - Create reusable processing components
105
- - **🧠 Algorithm Development** - Implement graph-based algorithms and computations
106
- - **🔗 System Integration** - Connect different data processing stages
107
-
108
- ## 🚀 **Key Features**
109
-
110
- ✅ **57 Production-Ready Node Strategies** - Comprehensive data structures (vEB Tree, DAWG, Interval Tree, k-d Tree, CRDT Map, Rope, and more)
111
- ✅ **Advanced Persistent Structures** - LSM Tree (WAL + Bloom filters), BW Tree (atomic CAS), Learned Index (ML-based)
112
- ✅ **28 Edge Strategies** - Advanced graph representations (ADJ_LIST, k²-tree, BVGraph, HNSW, Euler Tour, Link-Cut, 2-Hop Labels, Multiplex, and more)
113
- ✅ **35 Query Languages** - SQL, GraphQL, Cypher, SPARQL, XPath, JMESPath, and more
114
- ✅ **Production Features** - Version management, memory monitoring, background compaction, lock-free operations
115
- ✅ **Node-based architecture** for modular data processing
116
- ✅ **Graph computation engine** for complex workflows
117
- ✅ **Flexible data flow** between processing nodes
118
- ✅ **Reusable components** for common operations
119
- ✅ **Performance optimized** for large-scale processing
120
- ✅ **Easy integration** with existing Python data tools
121
-
122
- ### **🎯 Production-Grade Node Strategies (51 Total)**
123
-
124
- **Linear Structures (7):** Stack, Queue, Deque, Priority Queue, Linked List, Array List, Circular Buffer
125
- **Hash-Based (7):** HashMap, OrderedMap, HAMT, Cuckoo Hash, Linear Hash, Extendible Hash, Set Hash
126
- **Tree Structures (18):** AVL, Red-Black, B-Tree, B+ Tree, Trie, Radix, Patricia, Splay, Treap, Skip List, Heap, ART, and more
127
- **Advanced (5):** LSM Tree (WAL + Bloom), BW Tree (atomic CAS), Learned Index (ML), Persistent Tree (versioning), COW Tree (memory monitoring)
128
- **Matrix/Bitmap (5):** Bitmap, Dynamic Bitset, Roaring Bitmap, Sparse Matrix, Adjacency List
129
- **Probabilistic (3):** Bloom Filter, Count-Min Sketch, HyperLogLog
130
- **Specialized (6):** Union Find, Segment Tree, Fenwick Tree, Suffix Array, Aho-Corasick, Data Interchange
131
-
132
- 📖 **[Complete Strategy Guide & Selection Matrix](docs/STRATEGIES.md)**
133
-
134
- ## 🚀 **Project Phases**
135
-
136
- xWNode follows a structured 5-phase development approach designed to deliver enterprise-grade functionality while maintaining rapid iteration and continuous improvement.
137
-
138
- ### **Current Phase: 🧪 Version 0 - Experimental Stage**
139
- - **Focus:** Fast applications & usage, refactoring to perfection of software patterns and design
140
- - **Status:** 🟢 **ACTIVE** - Foundation complete with core node functionality, graph traversal algorithms, and comprehensive testing
141
-
142
- ### **Development Roadmap:**
143
- - **Version 1 (Q1 2026):** Production Ready - Enterprise deployment and hardening
144
- - **Version 2 (Q2 2026):** Mars Standard Draft Implementation - Cross-platform interoperability
145
- - **Version 3 (Q3 2026):** RUST Core & Facades - High-performance multi-language support
146
- - **Version 4 (Q4 2026):** Mars Standard Implementation - Full compliance and enterprise deployment
147
-
148
- 📖 **[View Complete Project Phases Documentation](docs/PROJECT_PHASES.md)**
149
-
150
- ## 📚 **Documentation**
151
-
152
- - **[Strategy Selection Guide](docs/STRATEGIES.md)** - Complete 51-strategy matrix with production readiness status
153
- - **[Production Readiness Summary](docs/PRODUCTION_READINESS_SUMMARY.md)** - Detailed improvements and test results
154
- - **[API Documentation](docs/)** - Complete reference and examples
155
- - **[Examples](examples/)** - Practical usage examples
156
- - **[Tests](tests/)** - Test suites and usage patterns
157
-
158
- ## 🔧 **Development**
159
-
160
- ```bash
161
- # Install in development mode
162
- pip install -e .
163
-
164
- # Run tests
165
- python tests/runner.py
166
-
167
- # Run specific test types
168
- python tests/runner.py --core
169
- python tests/runner.py --unit
170
- python tests/runner.py --integration
171
- ```
172
-
173
- ## 🤝 **Contributing**
174
-
175
- 1. Fork the repository
176
- 2. Create a feature branch
177
- 3. Make your changes
178
- 4. Add tests
179
- 5. Run the test suite
180
- 6. Submit a pull request
181
-
182
- ## 📄 **License**
183
-
184
- MIT License - see LICENSE file for details.
185
-
186
- ---
187
-
188
- *Built with ❤️ by eXonware.com - Making node-based data processing effortless*
@@ -1,130 +0,0 @@
1
- exonware/__init__.py,sha256=lcEri_z9es5NKYsnFWVkitU70TRFzBpehNPQ6jntvtc,624
2
- exonware/xwnode/__init__.py,sha256=0knJ488CZj01gOIUEGbq1ekxTfBxIMK99RwQkWQ-tGA,4175
3
- exonware/xwnode/add_strategy_types.py,sha256=f-v7FfOltYylw-65p5HYCuuFoRf64ujzU4DPyXdVqSs,4977
4
- exonware/xwnode/base.py,sha256=zM2vE55RziwBz_-x0B5GYGOyM0Coi_kEo-meMM59u-A,23895
5
- exonware/xwnode/config.py,sha256=cJGwxc2FiNH9lw1vslLHOQJ3Xl2DfekKF4h_lnUD-pc,5519
6
- exonware/xwnode/contracts.py,sha256=s3nMO7hdSvDbonABbQAHgmWsDi_H_P7JdyU6WqYnRWM,17925
7
- exonware/xwnode/defs.py,sha256=eWjFb0UOCltv90VXwW0e-ijGTHYkdhXmX6yyq17-QXA,47068
8
- exonware/xwnode/errors.py,sha256=JVS1AgK7wtR_c170UWRPaIqGqVWylc9qpu3JPyT8pNU,18285
9
- exonware/xwnode/facade.py,sha256=8b3ltkqOfqxpCCpwropwyTVd12CvtnjmDB2w3t9079I,16263
10
- exonware/xwnode/version.py,sha256=I89UC16bEL-pVH76pSGm_mg0kIIBGlwW-rYqwi2GKng,2379
11
- exonware/xwnode/common/__init__.py,sha256=MwiQsuW0IJ_vUhWwhcR3okSMyHW2vlOsY5swjq3JIyw,387
12
- exonware/xwnode/common/graph/__init__.py,sha256=7h8OS_ggwmWys9-1j_Fsg2tlucpr_KKcTYv-jFkvXgs,645
13
- exonware/xwnode/common/graph/caching.py,sha256=hsAcaZK9towFEItK34HgcrOIrPlJT2l_tEXEx9ga6z4,3575
14
- exonware/xwnode/common/graph/contracts.py,sha256=In67LQDWbuUy3pt9UOV6RGXh8efN8o-n5TqQzx8sK48,2434
15
- exonware/xwnode/common/graph/errors.py,sha256=2OVMbCFzYta05PWn0SPZsxr_M1iPFmk1bq3FdflR2r8,857
16
- exonware/xwnode/common/graph/indexing.py,sha256=POaqQaZ2vb51rcNhnNQdUaToeRnPTGrqr9dB-xiCM9s,8306
17
- exonware/xwnode/common/graph/manager.py,sha256=nIdZw1o9cgRYfJjqndc9bD2GB3rw8o3bH8KZ1bMBV_0,19875
18
- exonware/xwnode/common/management/__init__.py,sha256=ixWEyfQ3WS8jG-uwDBlHlTGMhGVPWVfCcKx3SA9HjaY,663
19
- exonware/xwnode/common/management/manager.py,sha256=rLZgfhsPz6twIO67hRBWEDdkLiYSXC3PoDELcEPNepw,33972
20
- exonware/xwnode/common/management/migration.py,sha256=lXjg27SuHSF36dRxhL7zq-o0atB0ODdz7Bl3PHvSQDc,20191
21
- exonware/xwnode/common/monitoring/__init__.py,sha256=nPcol-qnxnSxmcWyDQZt0HKfSxh2FR-VFWuP24wvUw4,663
22
- exonware/xwnode/common/monitoring/metrics.py,sha256=yiHMmfMSO_CD2v4qGBKm4cVRFDmhGCfAgoDg876DmJc,19556
23
- exonware/xwnode/common/monitoring/pattern_detector.py,sha256=gxesWUP1OdJdQK_f7VwOxeBW95QVaEkfkg6uUI_KGoc,21668
24
- exonware/xwnode/common/monitoring/performance_monitor.py,sha256=w26-7IvWjWwydz3ENXdUr-qrI9xGOuLaPLsnKiWoaAM,17579
25
- exonware/xwnode/common/patterns/__init__.py,sha256=dwPG-LndZhgcVdEnxq1YH5crvxfW4knL1SYl21g9zC4,659
26
- exonware/xwnode/common/patterns/advisor.py,sha256=RrHRKARK25dwK6dSrOkJeNkMssnJRGW0CMh6KCpGaGQ,18189
27
- exonware/xwnode/common/patterns/flyweight.py,sha256=W6Mv8vOqvKSQAqM3wl2TbpN22jYv94oJAjr3EE5zGEU,11434
28
- exonware/xwnode/common/patterns/registry.py,sha256=fi5dZkCTJKqz2KCW16am5WjGEyQefvwYerWLc6wo2b4,29822
29
- exonware/xwnode/common/utils/__init__.py,sha256=tAI70FC6sfl6lY_KUP-SKDgSiAdvYRawfGavJDso-mg,1464
30
- exonware/xwnode/common/utils/simple.py,sha256=QN7-kpk73nwPN6vS0Xw54DYKWmcEGPfB9FqTIu2nuRE,9080
31
- exonware/xwnode/common/utils/utils.py,sha256=ma_C5Xpgpo0053jEWqzco4-KNyBOWanJhKvQ3Masq84,17554
32
- exonware/xwnode/edges/strategies/__init__.py,sha256=BnDzYc-73WxNc3KTpFmgGSNhQFwlX0X4ujqp-pIj5YM,3249
33
- exonware/xwnode/edges/strategies/_base_edge.py,sha256=9cgyolEGwmteUJDRltlIvHugDco1_iS1_z5_fadGCYg,13647
34
- exonware/xwnode/edges/strategies/adj_list.py,sha256=91pzpi1pNxsOAUTRNkFeZ2v-WGvyVaF9_W0tctEJ51k,15676
35
- exonware/xwnode/edges/strategies/adj_matrix.py,sha256=D8RNDUE_eQvRJ5nLMq-rXgQr6y50Nqdwk0-MHbfO5ts,19247
36
- exonware/xwnode/edges/strategies/base.py,sha256=QbLcK4O5IpBRxgTnaKp-sjf5PiyfI2b2DLJAJ7vM_t0,6251
37
- exonware/xwnode/edges/strategies/bidir_wrapper.py,sha256=u5Hi6_K79UncTI7oWR5d_JT_7-yuk6NcJ07PhwCNdwE,19824
38
- exonware/xwnode/edges/strategies/bitemporal.py,sha256=7ZaLoZFH7zLcu1TkOtSZYcmo8v0u9GBIZtrgtAIdDu4,18460
39
- exonware/xwnode/edges/strategies/block_adj_matrix.py,sha256=nf64WsXxiqi5t7Bf0wYzrECWuLwIvKe2MG5qrxDSa6s,23778
40
- exonware/xwnode/edges/strategies/bv_graph.py,sha256=qFN4jovcW-DRK_2XSErXZ7Q9CO1marFlpQn8jWU1bFg,22598
41
- exonware/xwnode/edges/strategies/compressed_graph.py,sha256=USVk_-XlLpXu5k6U8arusFDJ1G2wE2qjmbsMTTqEHcI,7838
42
- exonware/xwnode/edges/strategies/coo.py,sha256=8Srn6QgsCOuErRns94kpkmIkWdVMQhsBu7v6vN2TZKE,21605
43
- exonware/xwnode/edges/strategies/csc.py,sha256=Nt-7Rsh4Dk6M6AOLbRa9rO-6yYYhOaeFfmpMA6NrV44,18435
44
- exonware/xwnode/edges/strategies/csr.py,sha256=XJOQXsVk2DObdQIdu-VYUq8kBrjB1_excwQA9zwbL8A,22336
45
- exonware/xwnode/edges/strategies/dynamic_adj_list.py,sha256=mePzSVARy5OdCvWEKGW1W314fDKXHW2tlJz1j1COTB0,21408
46
- exonware/xwnode/edges/strategies/edge_list.py,sha256=G2vyIawMAJs_NC6ibA05rO0Dc-kAoPhCzU2DIDq9Uvo,5832
47
- exonware/xwnode/edges/strategies/edge_property_store.py,sha256=oCKthsTZLVkx1TnaCWMnh7uLV14j2TxlN1EMWWW1qIM,25628
48
- exonware/xwnode/edges/strategies/euler_tour.py,sha256=EnsBv4dKiPS4TF5a6k-EYARGjw1ABf668XQFySsqWw0,18116
49
- exonware/xwnode/edges/strategies/flow_network.py,sha256=GzaEKc98QTYAa7k7QnXRAPoHCPWkjAQUMziIfxyTvJk,21471
50
- exonware/xwnode/edges/strategies/graphblas.py,sha256=2y2ZUJHeWcsWQgU61c3_PCvG-qLyzNM5og0mB5pPVWA,15472
51
- exonware/xwnode/edges/strategies/hnsw.py,sha256=URrifbmfkKU7NmLWGK5T1LT_D4DiXHyAV1fLS5HJiXc,23480
52
- exonware/xwnode/edges/strategies/hop2_labels.py,sha256=VKdGVRZh_ojc3TEe-70uxIe7t85DM-vd-vr11iV1jiE,16994
53
- exonware/xwnode/edges/strategies/hyperedge_set.py,sha256=iLHDhEXEKIzFaFOBXsutIyQ49Bzzvb4urqiYqmhsuSY,20762
54
- exonware/xwnode/edges/strategies/incidence_matrix.py,sha256=3H8RwoFQsnk-XaQk0joZ_T_Fx_fErRO0oAFCBTsO49c,9320
55
- exonware/xwnode/edges/strategies/k2_tree.py,sha256=eczrr_GrH1OFgqJMvQtUymc8fwTWSQ2xw0xxtBzyYIA,21652
56
- exonware/xwnode/edges/strategies/link_cut.py,sha256=EMtVRpePkiUzxSqiQPwheKTaMQhz12rIvKCccuYGrLE,20343
57
- exonware/xwnode/edges/strategies/multiplex.py,sha256=dfjl-Q-yB9_TU6Xu_0RQIlStprMyMoJxjlqbz35IzUI,18641
58
- exonware/xwnode/edges/strategies/neural_graph.py,sha256=M3tlCOgRH9AnSmz4cuT722FNl2YaBYnlAzmGTHN85kw,25115
59
- exonware/xwnode/edges/strategies/octree.py,sha256=whjjTOAleqHICjlBsVx6YU6PQbnS2t1rnzukmMHfxxM,25451
60
- exonware/xwnode/edges/strategies/quadtree.py,sha256=Gb-3a4KIiv7wnwGQwAVdZ2L9dkrCiv_WTVWvzOobO98,22569
61
- exonware/xwnode/edges/strategies/roaring_adj.py,sha256=cRalgCevNN6xyggaL1Hdoae8VnwWUTnjzTxfGNmEJS4,15786
62
- exonware/xwnode/edges/strategies/rtree.py,sha256=RiLsJ2ojQjiO9zm9VmCfpzziKbUjcRvZSPqOG6-CDyk,33130
63
- exonware/xwnode/edges/strategies/temporal_edgeset.py,sha256=JPgpGDZ9J1-9aRnMWtUs8CJpI4pZ0qZ3tntZm2-Gymw,22876
64
- exonware/xwnode/edges/strategies/tree_graph_basic.py,sha256=izAYfY5M0NKwP5PprVuiqnZMYFzFbbCiKG43MeB2j3Q,12339
65
- exonware/xwnode/edges/strategies/weighted_graph.py,sha256=CHcQ3pDDIg6SGYXsJ4Cj8hkZyNaXbNJlY4nqGwWLSOc,23334
66
- exonware/xwnode/nodes/strategies/__init__.py,sha256=gy11-R0C3rp5p5Odq1isIP7BkT2BVVbKwJ11HlhQE0o,1787
67
- exonware/xwnode/nodes/strategies/adjacency_list.py,sha256=zQv1ly-4BQVG-EPoZ9JsStv7qr45BBaFqCIz0WUiBmY,25245
68
- exonware/xwnode/nodes/strategies/aho_corasick.py,sha256=nB8WYJvWPX3YUbB2gBfL7YO1evM2LS2zVszC17eWSbk,18673
69
- exonware/xwnode/nodes/strategies/array_list.py,sha256=rHvj5HfegNDY81oodUYUjWsymey-VNYtIelJb-dd7Eg,8253
70
- exonware/xwnode/nodes/strategies/art.py,sha256=XXEcZHrsfjpX7jtgL8rVVfUwBSErNYmJLKul9J3Rw18,20637
71
- exonware/xwnode/nodes/strategies/avl_tree.py,sha256=I1bL6PR5u3qnqUhm-S3JVi-HPdYHWQpAHmjB4dKNqKQ,16261
72
- exonware/xwnode/nodes/strategies/b_plus_tree.py,sha256=5CntWSprQB61w-dvxeyI592An0xlZE0lI2-J585y6lg,20702
73
- exonware/xwnode/nodes/strategies/b_tree.py,sha256=_YJ1KzdnL8HcR8bLzKB3aYJapNgDozrraiA4JECMZU0,15154
74
- exonware/xwnode/nodes/strategies/base.py,sha256=VQgzqxmE5n7SsoiZ5iuOEHqVwmMuaSAD8WkSO6W1Fro,22549
75
- exonware/xwnode/nodes/strategies/bitmap.py,sha256=b-fcsHVXm35ouqbI0RyWZg5zSjPK8DHLMlqgXAtPNbg,15153
76
- exonware/xwnode/nodes/strategies/bitset_dynamic.py,sha256=t1sIy0yiV81ifAAbJ5LY6jBhwnrAcGjD4JVyUAt5Ye0,18937
77
- exonware/xwnode/nodes/strategies/bloom_filter.py,sha256=ly5ZruFr3VC_lCPGeVr-iRwW9tQ81DH7sgteViLuMhI,13749
78
- exonware/xwnode/nodes/strategies/bloomier_filter.py,sha256=fkg6DThRw1dVeBhpVFp-DKiKl4Zqt3Gejn4Tzt96JZs,17808
79
- exonware/xwnode/nodes/strategies/bw_tree.py,sha256=F12hLOKnp2jwEndX0-_JdzQ-N00q3yFUB96OXkCNrjY,19576
80
- exonware/xwnode/nodes/strategies/contracts.py,sha256=BDCfJWGe3u15Q9GKOcVlZWdJws_Kr2MfOhDGzX1FLMQ,3225
81
- exonware/xwnode/nodes/strategies/count_min_sketch.py,sha256=WHjaVOVOOu8ELMvbqKCLGNkjqDvpAU7IoVhVL-0bqa0,18017
82
- exonware/xwnode/nodes/strategies/cow_tree.py,sha256=bTRMM_bCoRMv7BCoMBMZcgfR0fperhnRpNmU8ui2lZU,21643
83
- exonware/xwnode/nodes/strategies/crdt_map.py,sha256=9PR58gxIA4jWKgw1APG5ZVqe-m_9qns32CdOHy341_g,21035
84
- exonware/xwnode/nodes/strategies/cuckoo_hash.py,sha256=EGBnOH1lPrqUsSZGt3c7gRVzTgxsx-ov1lFitYfWMOI,14950
85
- exonware/xwnode/nodes/strategies/data_interchange_optimized.py,sha256=5zbiWlCGz2vXctQxWjA9q7LYuxHWaFKOzRIdqbj9eA4,15049
86
- exonware/xwnode/nodes/strategies/dawg.py,sha256=jx-vAXbIpM-S5APLN6_JF6Rzg-M37dhrMx5VVbp7rpU,28126
87
- exonware/xwnode/nodes/strategies/deque.py,sha256=FGRGIVU8UMsRMVjyiLcR-TQgh0rtEpoHjGzeXOpQPr0,11866
88
- exonware/xwnode/nodes/strategies/extendible_hash.py,sha256=AwJbHykpcOZuU2vVeZChYl_Ms9R2LSDj7Q2OniVbQek,2858
89
- exonware/xwnode/nodes/strategies/fenwick_tree.py,sha256=Y7LpZsbxYAJ6f08QpmfHafk5Rrah4pzHcPrQR7muyOo,14520
90
- exonware/xwnode/nodes/strategies/hamt.py,sha256=F_4UNSmRVHODe8StwzbeA3VjcMWxHM4JFyrp4kAJgcE,14052
91
- exonware/xwnode/nodes/strategies/hash_map.py,sha256=yAhZdU50qTfWQWFua04uyURv40qVYvtLDCq_VUSEVa4,13408
92
- exonware/xwnode/nodes/strategies/heap.py,sha256=Id3339pnmYUn_Dh_VWtr9hP251AXoZGQY59mFer1SQc,13567
93
- exonware/xwnode/nodes/strategies/hopscotch_hash.py,sha256=tff1XgwWGcpGB91tYFHRvuH1s4--LgNW_2DRSjWGv2k,17650
94
- exonware/xwnode/nodes/strategies/hyperloglog.py,sha256=cosjsuDEjeXmprnUXhaYwYET2p5WtGPvnH2teJO-984,14997
95
- exonware/xwnode/nodes/strategies/interval_tree.py,sha256=LL0s4at-RZ-ErFvyQp3BiAAdFBHYcM_qjZQpDulC56w,25276
96
- exonware/xwnode/nodes/strategies/kd_tree.py,sha256=KB-s0kISkyZ4C3yEs8kXaYcqf6Fi3eUUylYRKP1dP7E,23949
97
- exonware/xwnode/nodes/strategies/learned_index.py,sha256=JCLmsnf20X_mnG3keE0k9rrAFGsFCqnywLBwDRXlX3Q,19199
98
- exonware/xwnode/nodes/strategies/linear_hash.py,sha256=t5Ed0x6gvFWx5CzkrUoC9h_NYRcf3368fECEELizhsk,2824
99
- exonware/xwnode/nodes/strategies/linked_list.py,sha256=yrJx_lo5S6EmZmOxM9fythjou_T9gELC-BE9gYlmRmA,14141
100
- exonware/xwnode/nodes/strategies/lsm_tree.py,sha256=tlKiZ9IQJQaoovuTjt0rlRuYl6l-t3IJqislCxswQKM,22688
101
- exonware/xwnode/nodes/strategies/masstree.py,sha256=DxASMwfja0BG3Y_0kMF_JCN3RqXFsDDf_Nk5emBMBmo,4078
102
- exonware/xwnode/nodes/strategies/ordered_map.py,sha256=XCEx_9C1S7OtIaoM_CqAlDqBNMOGRCg_RMJ1cAmjBz4,14619
103
- exonware/xwnode/nodes/strategies/ordered_map_balanced.py,sha256=iSS70TiIMapBz3pJxldLwVsfPe5DyDEwxhZJky_2Bps,20601
104
- exonware/xwnode/nodes/strategies/patricia.py,sha256=0y829h7INJ6J-LmeW3W2pXA88RFq9V1Dae0Z7ct9sDw,18789
105
- exonware/xwnode/nodes/strategies/persistent_tree.py,sha256=2dZXZ0Yuo55NWGAu6BAiOviYcQgG51UQXy8OOOx26QU,19471
106
- exonware/xwnode/nodes/strategies/priority_queue.py,sha256=m-X_1JiSCMehe1svJNRNlQtv1V1y_UP3m6MQToH5gVU,22818
107
- exonware/xwnode/nodes/strategies/queue.py,sha256=2yyG1h0CvNDUZ3R96ARm4RStzqvNj2M5e4GkmGl2BgY,9684
108
- exonware/xwnode/nodes/strategies/radix_trie.py,sha256=MXTshSaRFC1vQN-ik9ohzCUVU_q5v5CBJnyO03M_M6g,17235
109
- exonware/xwnode/nodes/strategies/red_black_tree.py,sha256=Pbo4Au3A35Beg4uXlo4p0_Z6xlolnc_PiLwrSEo3mdc,22705
110
- exonware/xwnode/nodes/strategies/roaring_bitmap.py,sha256=GnqXLDUHQExhmAMVbmLyb48h16ZMS0IlcjFgsDerfMw,20992
111
- exonware/xwnode/nodes/strategies/rope.py,sha256=nnh7ag8PeFgqtosXP0b8RJdN5sG_Ws5UJ3btTOpUpvA,22886
112
- exonware/xwnode/nodes/strategies/segment_tree.py,sha256=vg0MGCkK6rvTZZN2seZnTE20RSn5bMioljvnA1CjLKk,10553
113
- exonware/xwnode/nodes/strategies/set_hash.py,sha256=QtEngD-nOBA8kTiaJ1dJshj7YUtNNiyTYHdN9dPokJU,13402
114
- exonware/xwnode/nodes/strategies/set_tree.py,sha256=ph6D8jbIlYoCNh_7l8tSHHq_lG8X4hNcYVgP4RfDKbI,15957
115
- exonware/xwnode/nodes/strategies/skip_list.py,sha256=cH_WK91z3fHWRkUa87fkepjxHxoJFfRBVRj1y4cXpAo,14737
116
- exonware/xwnode/nodes/strategies/sparse_matrix.py,sha256=bAqmRRk534IDJ_NkLGXoyFEhGBIBI1msSOmCQifstCk,17468
117
- exonware/xwnode/nodes/strategies/splay_tree.py,sha256=09XL2_Mw9oB3EikpQHGvfcEvdM3RCf3ZqRel-O6ZA8E,15158
118
- exonware/xwnode/nodes/strategies/stack.py,sha256=GUAes4V3ss8htfSjMoTdWB9zcqveYjfBe_Qosy6pFxo,9789
119
- exonware/xwnode/nodes/strategies/suffix_array.py,sha256=OOR-tKHfupLpJV8whW3jvLHGzD-swEADXXHaTvKt9So,17139
120
- exonware/xwnode/nodes/strategies/t_tree.py,sha256=CzpxH14xgKPDCEuUiZEZZA8E29pjo2Nkzt6w9rBaUXg,2863
121
- exonware/xwnode/nodes/strategies/treap.py,sha256=8jcrzwYn87rS850UcofWq6mmeeS9DpZwvVq9nlbJAc4,17252
122
- exonware/xwnode/nodes/strategies/tree_graph_hybrid.py,sha256=hzwt3XXSW3HR8qQE6LgOSCaai5YBiLlOxS2CAGkE7r0,55462
123
- exonware/xwnode/nodes/strategies/trie.py,sha256=5SxaV9rHylqUG_HPu5tTrEo_ysftntZl2DSDChmwcNA,13752
124
- exonware/xwnode/nodes/strategies/union_find.py,sha256=V0QNfVNMf20-F3ylTmMyoMEYw8ZKUiuUFA_P_Fxk_7E,13583
125
- exonware/xwnode/nodes/strategies/veb_tree.py,sha256=t4OPKFau5eWYCqWx9536BV1F5bd4kg18CHvdASKCgog,27014
126
- exonware/xwnode/strategies/__init__.py,sha256=84OCH2moHfFC964SvgWWrV37CnchHyLXaOhJ9yi6ff8,5521
127
- exonware_xwnode-0.0.1.23.dist-info/METADATA,sha256=N1h62VqMo5FFmlJnjnDxLOrWsuoZIKdcqJP_XCR7TI4,7491
128
- exonware_xwnode-0.0.1.23.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
129
- exonware_xwnode-0.0.1.23.dist-info/licenses/LICENSE,sha256=w42ohoEUfhyT0NgiivAL4fWg2AMRLGnfXPMAR4EO-MU,1094
130
- exonware_xwnode-0.0.1.23.dist-info/RECORD,,