graphdatascience 1.18__tar.gz → 1.19__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 (427) hide show
  1. {graphdatascience-1.18/src/graphdatascience.egg-info → graphdatascience-1.19}/PKG-INFO +1 -1
  2. {graphdatascience-1.18 → graphdatascience-1.19}/pyproject.toml +12 -13
  3. graphdatascience-1.19/src/graphdatascience/arrow_client/arrow_client_options_util.py +13 -0
  4. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/authenticated_flight_client.py +3 -2
  5. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v1/gds_arrow_client.py +3 -24
  6. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v2/api_types.py +3 -3
  7. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v2/gds_arrow_client.py +1 -1
  8. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v2/job_client.py +3 -5
  9. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph_data_science.py +3 -2
  10. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/plugin_v2_endpoints.py +38 -0
  11. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/catalog_endpoints.py +16 -0
  12. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/centrality/bridges_endpoints.py +82 -0
  13. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/community/modularity_endpoints.py +160 -0
  14. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/model/__init__.py +15 -0
  15. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/model/model_catalog_endpoints.py +133 -0
  16. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/pathfinding/bfs_endpoints.py +222 -0
  17. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_endpoints.py +15 -0
  18. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/catalog_arrow_endpoints.py +5 -0
  19. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/centrality/bridges_arrow_endpoints.py +60 -0
  20. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/community/modularity_arrow_endpoints.py +101 -0
  21. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/endpoints_helper_base.py +6 -6
  22. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/error_handler.py +24 -0
  23. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/model/model_catalog_arrow_endpoints.py +92 -0
  24. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/pathfinding/bfs_arrow_endpoints.py +148 -0
  25. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_arrow_endpoints.py +10 -0
  26. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/stream_result_mapper.py +14 -0
  27. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog_cypher_endpoints.py +5 -0
  28. graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/centrality/bridges_cypher_endpoints.py +59 -0
  29. graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/community/modularity_cypher_endpoints.py +108 -0
  30. graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/model/model_catalog_cypher_endpoints.py +80 -0
  31. graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/pathfinding/bfs_cypher_endpoints.py +150 -0
  32. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_cypher_endpoints.py +10 -0
  33. graphdatascience-1.19/src/graphdatascience/query_runner/db_environment_resolver.py +18 -0
  34. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/protocol/project_protocols.py +3 -3
  35. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/protocol/write_protocols.py +3 -3
  36. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/session_query_runner.py +3 -2
  37. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/retry_utils/retry_utils.py +13 -1
  38. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/aura_api.py +16 -6
  39. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/aura_api_responses.py +24 -2
  40. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/aura_graph_data_science.py +41 -11
  41. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/dbms_connection_info.py +25 -3
  42. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/dedicated_sessions.py +61 -25
  43. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/gds_sessions.py +37 -12
  44. graphdatascience-1.19/src/graphdatascience/session/session_lifecycle_manager.py +14 -0
  45. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/session_v2_endpoints.py +55 -2
  46. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/version.py +1 -1
  47. {graphdatascience-1.18 → graphdatascience-1.19/src/graphdatascience.egg-info}/PKG-INFO +1 -1
  48. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience.egg-info/SOURCES.txt +16 -0
  49. graphdatascience-1.18/src/graphdatascience/utils/__init__.py +0 -0
  50. {graphdatascience-1.18 → graphdatascience-1.19}/LICENSE +0 -0
  51. {graphdatascience-1.18 → graphdatascience-1.19}/MANIFEST.in +0 -0
  52. {graphdatascience-1.18 → graphdatascience-1.19}/README.md +0 -0
  53. {graphdatascience-1.18 → graphdatascience-1.19}/setup.cfg +0 -0
  54. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/__init__.py +0 -0
  55. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/algo/__init__.py +0 -0
  56. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/algo/algo_endpoints.py +0 -0
  57. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/algo/algo_proc_runner.py +0 -0
  58. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/algo/single_mode_algo_endpoints.py +0 -0
  59. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/__init__.py +0 -0
  60. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/arrow_authentication.py +0 -0
  61. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/arrow_base_model.py +0 -0
  62. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/arrow_endpoint_version.py +0 -0
  63. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/arrow_info.py +0 -0
  64. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/middleware/__init__.py +0 -0
  65. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/middleware/auth_middleware.py +0 -0
  66. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/middleware/user_agent_middleware.py +0 -0
  67. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v1/__init__.py +0 -0
  68. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v1/data_mapper_utils.py +0 -0
  69. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v2/__init__.py +0 -0
  70. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v2/data_mapper_utils.py +0 -0
  71. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v2/mutation_client.py +0 -0
  72. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/arrow_client/v2/remote_write_back_client.py +0 -0
  73. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/call_builder.py +0 -0
  74. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/call_parameters.py +0 -0
  75. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/caller_base.py +0 -0
  76. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/endpoints.py +0 -0
  77. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/__init__.py +0 -0
  78. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/client_only_endpoint.py +0 -0
  79. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/cypher_warning_handler.py +0 -0
  80. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/endpoint_suggester.py +0 -0
  81. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/gds_not_installed.py +0 -0
  82. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/illegal_attr_checker.py +0 -0
  83. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/unable_to_connect.py +0 -0
  84. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/error/uncallable_namespace.py +0 -0
  85. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/__init__.py +0 -0
  86. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/base_graph_proc_runner.py +0 -0
  87. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_alpha_proc_runner.py +0 -0
  88. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_beta_proc_runner.py +0 -0
  89. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_create_result.py +0 -0
  90. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_cypher_runner.py +0 -0
  91. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_endpoints.py +0 -0
  92. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_entity_ops_runner.py +0 -0
  93. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_export_runner.py +0 -0
  94. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_object.py +0 -0
  95. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_proc_runner.py +0 -0
  96. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_project_runner.py +0 -0
  97. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_remote_proc_runner.py +0 -0
  98. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_remote_project_runner.py +0 -0
  99. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_sample_runner.py +0 -0
  100. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/graph_type_check.py +0 -0
  101. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/nx_loader.py +0 -0
  102. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/graph/ogb_loader.py +0 -0
  103. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/ignored_server_endpoints.py +0 -0
  104. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/__init__.py +0 -0
  105. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/graphsage_model.py +0 -0
  106. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/link_prediction_model.py +0 -0
  107. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/model.py +0 -0
  108. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/model_alpha_proc_runner.py +0 -0
  109. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/model_beta_proc_runner.py +0 -0
  110. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/model_endpoints.py +0 -0
  111. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/model_proc_runner.py +0 -0
  112. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/model_resolver.py +0 -0
  113. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/node_classification_model.py +0 -0
  114. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/node_regression_model.py +0 -0
  115. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/pipeline_model.py +0 -0
  116. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/simple_rel_embedding_model.py +0 -0
  117. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/v2/__init__.py +0 -0
  118. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/v2/graphsage_model.py +0 -0
  119. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/v2/model.py +0 -0
  120. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/v2/model_api.py +0 -0
  121. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/model/v2/model_details.py +0 -0
  122. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/__init__.py +0 -0
  123. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/classification_training_pipeline.py +0 -0
  124. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/lp_pipeline_create_runner.py +0 -0
  125. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/lp_training_pipeline.py +0 -0
  126. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/nc_pipeline_create_runner.py +0 -0
  127. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/nc_training_pipeline.py +0 -0
  128. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/nr_pipeline_create_runner.py +0 -0
  129. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/nr_training_pipeline.py +0 -0
  130. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/pipeline_alpha_proc_runner.py +0 -0
  131. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/pipeline_beta_proc_runner.py +0 -0
  132. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/pipeline_endpoints.py +0 -0
  133. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/pipeline_proc_runner.py +0 -0
  134. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/pipeline/training_pipeline.py +0 -0
  135. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/__init__.py +0 -0
  136. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/__init__.py +0 -0
  137. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/base_result.py +0 -0
  138. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/__init__.py +0 -0
  139. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/graph_api.py +0 -0
  140. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/graph_backend.py +0 -0
  141. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/graph_info.py +0 -0
  142. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/graph_sampling_endpoints.py +0 -0
  143. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/node_label_endpoints.py +0 -0
  144. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/node_properties_endpoints.py +0 -0
  145. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/relationships_endpoints.py +0 -0
  146. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/scale_properties_endpoints.py +0 -0
  147. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/catalog/scaler_config.py +0 -0
  148. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/__init__.py +0 -0
  149. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/articlerank_endpoints.py +0 -0
  150. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/articulationpoints_endpoints.py +0 -0
  151. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/betweenness_endpoints.py +0 -0
  152. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/celf_endpoints.py +0 -0
  153. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/closeness_endpoints.py +0 -0
  154. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/closeness_harmonic_endpoints.py +0 -0
  155. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/degree_endpoints.py +0 -0
  156. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/eigenvector_endpoints.py +0 -0
  157. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/centrality/pagerank_endpoints.py +0 -0
  158. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/__init__.py +0 -0
  159. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/clique_counting_endpoints.py +0 -0
  160. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/conductance_endpoints.py +0 -0
  161. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/hdbscan_endpoints.py +0 -0
  162. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/k1coloring_endpoints.py +0 -0
  163. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/kcore_endpoints.py +0 -0
  164. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/kmeans_endpoints.py +0 -0
  165. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/labelpropagation_endpoints.py +0 -0
  166. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/leiden_endpoints.py +0 -0
  167. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/local_clustering_coefficient_endpoints.py +0 -0
  168. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/louvain_endpoints.py +0 -0
  169. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/maxkcut_endpoints.py +0 -0
  170. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/modularity_optimization_endpoints.py +0 -0
  171. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/scc_endpoints.py +0 -0
  172. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/sllpa_endpoints.py +0 -0
  173. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/triangle_count_endpoints.py +0 -0
  174. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/community/wcc_endpoints.py +0 -0
  175. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/config_endpoints.py +0 -0
  176. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/default_values.py +0 -0
  177. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/estimation_result.py +0 -0
  178. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/model/graphsage_model.py +0 -0
  179. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/node_embedding/__init__.py +0 -0
  180. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/node_embedding/fastrp_endpoints.py +0 -0
  181. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_endpoints.py +0 -0
  182. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_predict_endpoints.py +0 -0
  183. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_train_endpoints.py +0 -0
  184. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/node_embedding/hashgnn_endpoints.py +0 -0
  185. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/node_embedding/node2vec_endpoints.py +0 -0
  186. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/__init__.py +0 -0
  187. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/all_shortest_path_endpoints.py +0 -0
  188. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/dag_endpoints.py +0 -0
  189. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/dijkstra_endpoints.py +0 -0
  190. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/k_spanning_tree_endpoints.py +0 -0
  191. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/longest_path_endpoints.py +0 -0
  192. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/prize_steiner_tree_endpoints.py +0 -0
  193. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/shortest_path_endpoints.py +0 -0
  194. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_bellman_ford_endpoints.py +0 -0
  195. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_delta_endpoints.py +0 -0
  196. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_dijkstra_endpoints.py +0 -0
  197. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_astar_endpoints.py +0 -0
  198. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_dijkstra_endpoints.py +0 -0
  199. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_yens_endpoints.py +0 -0
  200. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/spanning_tree_endpoints.py +0 -0
  201. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/pathfinding/steiner_tree_endpoints.py +0 -0
  202. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/similarity/__init__.py +0 -0
  203. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/similarity/knn_endpoints.py +0 -0
  204. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/similarity/knn_filtered_endpoints.py +0 -0
  205. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/similarity/knn_results.py +0 -0
  206. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_endpoints.py +0 -0
  207. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_filtered_endpoints.py +0 -0
  208. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_results.py +0 -0
  209. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/api/system_endpoints.py +0 -0
  210. {graphdatascience-1.18/src/graphdatascience/procedure_surface/api/model → graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow}/__init__.py +0 -0
  211. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/__init__.py +0 -0
  212. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/graph_backend_arrow.py +0 -0
  213. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/graph_ops_arrow.py +0 -0
  214. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/graph_sampling_arrow_endpoints.py +0 -0
  215. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/node_label_arrow_endpoints.py +0 -0
  216. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/node_properties_arrow_endpoints.py +0 -0
  217. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/relationship_arrow_endpoints.py +0 -0
  218. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/catalog/scale_properties_arrow_endpoints.py +0 -0
  219. {graphdatascience-1.18/src/graphdatascience/procedure_surface/arrow → graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/centrality}/__init__.py +0 -0
  220. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/articlerank_arrow_endpoints.py +0 -0
  221. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/articulationpoints_arrow_endpoints.py +0 -0
  222. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/betweenness_arrow_endpoints.py +0 -0
  223. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/celf_arrow_endpoints.py +0 -0
  224. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_arrow_endpoints.py +0 -0
  225. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_harmonic_arrow_endpoints.py +0 -0
  226. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/degree_arrow_endpoints.py +0 -0
  227. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/eigenvector_arrow_endpoints.py +0 -0
  228. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/centrality/pagerank_arrow_endpoints.py +0 -0
  229. {graphdatascience-1.18/src/graphdatascience/procedure_surface/arrow/centrality → graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/community}/__init__.py +0 -0
  230. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/clique_counting_arrow_endpoints.py +0 -0
  231. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/conductance_arrow_endpoints.py +0 -0
  232. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/hdbscan_arrow_endpoints.py +0 -0
  233. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/k1coloring_arrow_endpoints.py +0 -0
  234. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/kcore_arrow_endpoints.py +0 -0
  235. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/kmeans_arrow_endpoints.py +0 -0
  236. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/labelpropagation_arrow_endpoints.py +0 -0
  237. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/leiden_arrow_endpoints.py +0 -0
  238. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/local_clustering_coefficient_arrow_endpoints.py +0 -0
  239. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/louvain_arrow_endpoints.py +0 -0
  240. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/maxkcut_arrow_endpoints.py +0 -0
  241. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/modularity_optimization_arrow_endpoints.py +0 -0
  242. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/scc_arrow_endpoints.py +0 -0
  243. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/sllpa_arrow_endpoints.py +0 -0
  244. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/triangle_count_arrow_endpoints.py +0 -0
  245. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/community/wcc_arrow_endpoints.py +0 -0
  246. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/config_arrow_endpoints.py +0 -0
  247. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/model_api_arrow.py +0 -0
  248. {graphdatascience-1.18/src/graphdatascience/procedure_surface/arrow/community → graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/node_embedding}/__init__.py +0 -0
  249. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/node_embedding/fastrp_arrow_endpoints.py +0 -0
  250. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_predict_arrow_endpoints.py +0 -0
  251. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_train_arrow_endpoints.py +0 -0
  252. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/node_embedding/hashgnn_arrow_endpoints.py +0 -0
  253. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/node_embedding/node2vec_arrow_endpoints.py +0 -0
  254. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/node_property_endpoints.py +0 -0
  255. {graphdatascience-1.18/src/graphdatascience/procedure_surface/arrow/node_embedding → graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/pathfinding}/__init__.py +0 -0
  256. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/all_shortest_path_arrow_endpoints.py +0 -0
  257. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/dag_arrow_endpoints.py +0 -0
  258. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/dijkstra_arrow_endpoints.py +0 -0
  259. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/k_spanning_tree_arrow_endpoints.py +0 -0
  260. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/longest_path_arrow_endpoints.py +0 -0
  261. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/prize_steiner_tree_arrow_endpoints.py +0 -0
  262. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/shortest_path_arrow_endpoints.py +0 -0
  263. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_bellman_ford_arrow_endpoints.py +0 -0
  264. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_delta_arrow_endpoints.py +0 -0
  265. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_dijkstra_arrow_endpoints.py +0 -0
  266. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_astar_arrow_endpoints.py +0 -0
  267. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_dijkstra_arrow_endpoints.py +0 -0
  268. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_yens_arrow_endpoints.py +0 -0
  269. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/spanning_tree_arrow_endpoints.py +0 -0
  270. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/pathfinding/steiner_tree_arrow_endpoints.py +0 -0
  271. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/relationship_endpoints_helper.py +0 -0
  272. {graphdatascience-1.18/src/graphdatascience/procedure_surface/arrow/pathfinding → graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/similarity}/__init__.py +0 -0
  273. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/similarity/knn_arrow_endpoints.py +0 -0
  274. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/similarity/knn_filtered_arrow_endpoints.py +0 -0
  275. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_arrow_endpoints.py +0 -0
  276. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_filtered_arrow_endpoints.py +0 -0
  277. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/system_arrow_endpoints.py +0 -0
  278. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/arrow/table_endpoints_helper.py +0 -0
  279. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/__init__.py +0 -0
  280. {graphdatascience-1.18/src/graphdatascience/procedure_surface/arrow/similarity → graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/catalog}/__init__.py +0 -0
  281. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog/graph_backend_cypher.py +0 -0
  282. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog/graph_sampling_cypher_endpoints.py +0 -0
  283. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog/node_label_cypher_endpoints.py +0 -0
  284. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog/node_properties_cypher_endpoints.py +0 -0
  285. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog/relationship_cypher_endpoints.py +0 -0
  286. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog/scale_properties_cypher_endpoints.py +0 -0
  287. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/catalog/utils.py +0 -0
  288. {graphdatascience-1.18/src/graphdatascience/procedure_surface/cypher/catalog → graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/centrality}/__init__.py +0 -0
  289. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/articlerank_cypher_endpoints.py +0 -0
  290. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/articulationpoints_cypher_endpoints.py +0 -0
  291. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/betweenness_cypher_endpoints.py +0 -0
  292. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/celf_cypher_endpoints.py +0 -0
  293. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_cypher_endpoints.py +0 -0
  294. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_harmonic_cypher_endpoints.py +0 -0
  295. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/degree_cypher_endpoints.py +0 -0
  296. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/eigenvector_cypher_endpoints.py +0 -0
  297. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/centrality/pagerank_cypher_endpoints.py +0 -0
  298. {graphdatascience-1.18/src/graphdatascience/procedure_surface/cypher/centrality → graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/community}/__init__.py +0 -0
  299. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/clique_counting_cypher_endpoints.py +0 -0
  300. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/conductance_cypher_endpoints.py +0 -0
  301. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/hdbscan_cypher_endpoints.py +0 -0
  302. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/k1coloring_cypher_endpoints.py +0 -0
  303. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/kcore_cypher_endpoints.py +0 -0
  304. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/kmeans_cypher_endpoints.py +0 -0
  305. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/labelpropagation_cypher_endpoints.py +0 -0
  306. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/leiden_cypher_endpoints.py +0 -0
  307. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/local_clustering_coefficient_cypher_endpoints.py +0 -0
  308. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/louvain_cypher_endpoints.py +0 -0
  309. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/maxkcut_cypher_endpoints.py +0 -0
  310. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/modularity_optimization_cypher_endpoints.py +0 -0
  311. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/scc_cypher_endpoints.py +0 -0
  312. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/sllpa_cypher_endpoints.py +0 -0
  313. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/triangle_count_cypher_endpoints.py +0 -0
  314. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/community/wcc_cypher_endpoints.py +0 -0
  315. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/config_cypher_endpoints.py +0 -0
  316. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/estimation_utils.py +0 -0
  317. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/model_api_cypher.py +0 -0
  318. {graphdatascience-1.18/src/graphdatascience/procedure_surface/cypher/community → graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/node_embedding}/__init__.py +0 -0
  319. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/node_embedding/fastrp_cypher_endpoints.py +0 -0
  320. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_predict_cypher_endpoints.py +0 -0
  321. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_train_cypher_endpoints.py +0 -0
  322. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/node_embedding/hashgnn_cypher_endpoints.py +0 -0
  323. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/node_embedding/node2vec_cypher_endpoints.py +0 -0
  324. {graphdatascience-1.18/src/graphdatascience/procedure_surface/cypher/node_embedding → graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/pathfinding}/__init__.py +0 -0
  325. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/all_shortest_path_cypher_endpoints.py +0 -0
  326. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/dag_cypher_endpoints.py +0 -0
  327. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/dijkstra_cypher_endpoints.py +0 -0
  328. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/k_spanning_tree_cypher_endpoints.py +0 -0
  329. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/longest_path_cypher_endpoints.py +0 -0
  330. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/prize_steiner_tree_cypher_endpoints.py +0 -0
  331. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/shortest_path_cypher_endpoints.py +0 -0
  332. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_bellman_ford_cypher_endpoints.py +0 -0
  333. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_delta_cypher_endpoints.py +0 -0
  334. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_dijkstra_cypher_endpoints.py +0 -0
  335. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_astar_cypher_endpoints.py +0 -0
  336. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_dijkstra_cypher_endpoints.py +0 -0
  337. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_yens_cypher_endpoints.py +0 -0
  338. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/spanning_tree_cypher_endpoints.py +0 -0
  339. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/pathfinding/steiner_tree_cypher_endpoints.py +0 -0
  340. {graphdatascience-1.18/src/graphdatascience/procedure_surface/cypher/pathfinding → graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/similarity}/__init__.py +0 -0
  341. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/similarity/knn_cypher_endpoints.py +0 -0
  342. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/similarity/knn_filtered_cypher_endpoints.py +0 -0
  343. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_cypher_endpoints.py +0 -0
  344. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_filtered_cypher_endpoints.py +0 -0
  345. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/cypher/system_cypher_endpoints.py +0 -0
  346. {graphdatascience-1.18/src/graphdatascience/procedure_surface/cypher/similarity → graphdatascience-1.19/src/graphdatascience/procedure_surface/utils}/__init__.py +0 -0
  347. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/utils/config_converter.py +0 -0
  348. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/procedure_surface/utils/result_utils.py +0 -0
  349. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/py.typed +0 -0
  350. {graphdatascience-1.18/src/graphdatascience/procedure_surface/utils → graphdatascience-1.19/src/graphdatascience/query_runner}/__init__.py +0 -0
  351. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/arrow_authentication/__init__.py +0 -0
  352. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/arrow_graph_constructor.py +0 -0
  353. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/arrow_info/__init__.py +0 -0
  354. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/arrow_query_runner.py +0 -0
  355. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/cypher_graph_constructor.py +0 -0
  356. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/gds_arrow_client.py +0 -0
  357. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/graph_constructor.py +0 -0
  358. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/neo4j_query_runner.py +0 -0
  359. {graphdatascience-1.18/src/graphdatascience/query_runner → graphdatascience-1.19/src/graphdatascience/query_runner/progress}/__init__.py +0 -0
  360. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/progress/progress_bar.py +0 -0
  361. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/progress/progress_provider.py +0 -0
  362. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/progress/query_progress_logger.py +0 -0
  363. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/progress/query_progress_provider.py +0 -0
  364. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/progress/static_progress_provider.py +0 -0
  365. {graphdatascience-1.18/src/graphdatascience/query_runner/progress → graphdatascience-1.19/src/graphdatascience/query_runner/protocol}/__init__.py +0 -0
  366. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/protocol/status.py +0 -0
  367. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/query_mode.py +0 -0
  368. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/query_runner.py +0 -0
  369. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/standalone_session_query_runner.py +0 -0
  370. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/query_runner/termination_flag.py +0 -0
  371. {graphdatascience-1.18/src/graphdatascience/query_runner/protocol → graphdatascience-1.19/src/graphdatascience/resources}/__init__.py +0 -0
  372. {graphdatascience-1.18/src/graphdatascience/resources → graphdatascience-1.19/src/graphdatascience/resources/cora}/__init__.py +0 -0
  373. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/cora/cora_nodes.parquet.gzip +0 -0
  374. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/cora/cora_rels.parquet.gzip +0 -0
  375. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/cora/serialize_cora.py +0 -0
  376. {graphdatascience-1.18/src/graphdatascience/resources/cora → graphdatascience-1.19/src/graphdatascience/resources/imdb}/__init__.py +0 -0
  377. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/imdb/imdb_acted_in.parquet.gzip +0 -0
  378. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/imdb/imdb_actors.parquet.gzip +0 -0
  379. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/imdb/imdb_directed_in.parquet.gzip +0 -0
  380. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/imdb/imdb_directors.parquet.gzip +0 -0
  381. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/imdb/imdb_movies_with_genre.parquet.gzip +0 -0
  382. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/imdb/imdb_movies_without_genre.parquet.gzip +0 -0
  383. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/imdb/serialize_imdb.py +0 -0
  384. {graphdatascience-1.18/src/graphdatascience/resources/imdb → graphdatascience-1.19/src/graphdatascience/resources/karate}/__init__.py +0 -0
  385. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/karate/karate_club.parquet.gzip +0 -0
  386. {graphdatascience-1.18/src/graphdatascience/resources/karate → graphdatascience-1.19/src/graphdatascience/resources/lastfm}/__init__.py +0 -0
  387. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/lastfm/artist_nodes.parquet.gzip +0 -0
  388. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/lastfm/serialize_lastfm.py +0 -0
  389. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/lastfm/user_friend_df_directed.parquet.gzip +0 -0
  390. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/lastfm/user_listen_artist_rels.parquet.gzip +0 -0
  391. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/lastfm/user_nodes.parquet.gzip +0 -0
  392. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/resources/lastfm/user_tag_artist_rels.parquet.gzip +0 -0
  393. {graphdatascience-1.18/src/graphdatascience/resources/lastfm → graphdatascience-1.19/src/graphdatascience/retry_utils}/__init__.py +0 -0
  394. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/retry_utils/neo4j_retry_helper.py +0 -0
  395. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/retry_utils/retry_config.py +0 -0
  396. {graphdatascience-1.18/src/graphdatascience/retry_utils → graphdatascience-1.19/src/graphdatascience/semantic_version}/__init__.py +0 -0
  397. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/semantic_version/semantic_version.py +0 -0
  398. {graphdatascience-1.18/src/graphdatascience/semantic_version → graphdatascience-1.19/src/graphdatascience/server_version}/__init__.py +0 -0
  399. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/server_version/compatible_with.py +0 -0
  400. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/server_version/server_version.py +0 -0
  401. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/__init__.py +0 -0
  402. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/algorithm_category.py +0 -0
  403. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/aura_api_token_authentication.py +0 -0
  404. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/aurads_sessions.py +0 -0
  405. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/cloud_location.py +0 -0
  406. {graphdatascience-1.18/src/graphdatascience/server_version → graphdatascience-1.19/src/graphdatascience/session/dbms}/__init__.py +0 -0
  407. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/dbms/protocol_resolver.py +0 -0
  408. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/dbms/protocol_version.py +0 -0
  409. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/region_suggester.py +0 -0
  410. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/session_info.py +0 -0
  411. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/session/session_sizes.py +0 -0
  412. {graphdatascience-1.18/src/graphdatascience/session/dbms → graphdatascience-1.19/src/graphdatascience/system}/__init__.py +0 -0
  413. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/system/config_endpoints.py +0 -0
  414. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/system/system_endpoints.py +0 -0
  415. {graphdatascience-1.18/src/graphdatascience/system → graphdatascience-1.19/src/graphdatascience/topological_lp}/__init__.py +0 -0
  416. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/topological_lp/topological_lp_alpha_endpoints.py +0 -0
  417. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/topological_lp/topological_lp_alpha_runner.py +0 -0
  418. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/topological_lp/topological_lp_runner.py +0 -0
  419. {graphdatascience-1.18/src/graphdatascience/topological_lp → graphdatascience-1.19/src/graphdatascience/utils}/__init__.py +0 -0
  420. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/utils/direct_util_endpoints.py +0 -0
  421. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/utils/util_node_property_func_runner.py +0 -0
  422. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/utils/util_proc_runner.py +0 -0
  423. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience/utils/util_remote_proc_runner.py +0 -0
  424. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience.egg-info/dependency_links.txt +0 -0
  425. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience.egg-info/not-zip-safe +0 -0
  426. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience.egg-info/requires.txt +0 -0
  427. {graphdatascience-1.18 → graphdatascience-1.19}/src/graphdatascience.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphdatascience
3
- Version: 1.18
3
+ Version: 1.19
4
4
  Summary: A Python client for the Neo4j Graph Data Science (GDS) library
5
5
  Author-email: Neo4j <team-gds@neo4j.org>
6
6
  License-Expression: Apache-2.0
@@ -62,41 +62,40 @@ dev = [
62
62
  { include-group = "docs-ci" },
63
63
  ]
64
64
 
65
-
66
65
  dev-base = [
67
- "ruff == 0.11.7",
68
- "mypy == 1.13.0",
69
- "nbconvert == 7.16.4",
66
+ "ruff == 0.14.11",
67
+ "mypy == 1.19.1",
70
68
  "pandas-stubs == 2.2.3.241009",
71
- "tox == 4.30.2",
69
+ "tox == 4.34.1",
72
70
  "types-setuptools == 75.8.0.20250110",
73
71
  "enum-tools[sphinx] == 0.12.0",
74
72
  "autodoc_pydantic",
75
73
  "types-requests",
76
74
  "types-tqdm",
77
75
  "types-python-dateutil",
78
- "python-dotenv==1.1.0",
76
+ "python-dotenv==1.2.1",
79
77
  "types-colorama",
80
78
  ]
81
79
  test = [
82
- "pytest == 8.3.3",
83
- "requests_mock == 1.11.0",
80
+ "pytest == 9.0.2",
81
+ "requests_mock == 1.12.1",
84
82
  "pytest_mock == 3.15.1",
85
- "testcontainers >= 4.0, < 4.13.0",
83
+ "testcontainers == 4.14.0",
86
84
  "python-dateutil >= 2.9",
87
85
  ]
86
+
88
87
  docs-ci = [
89
88
  "sphinx == 7.3.7",
90
89
  "enum-tools[sphinx] == 0.12.0",
91
90
  "autodoc_pydantic",
92
91
  ]
93
92
  notebook-base = [
94
- "nbconvert==7.16.4",
93
+ "nbconvert==7.16.6",
95
94
  "nbformat==5.10.4",
96
- "nbclient==0.10.2",
97
- "ipykernel==6.29.5",
95
+ "nbclient==0.10.4",
96
+ "ipykernel==7.1.0",
98
97
  ]
99
- notebook-aura-ci = [{ include-group = "notebook-base" }, "python-dotenv==1.1.0"]
98
+ notebook-aura-ci = [{ include-group = "notebook-base" }, "python-dotenv==1.2.1"]
100
99
  notebook-ci = [
101
100
  { include-group = "notebook-base" },
102
101
  "scipy == 1.14.0",
@@ -0,0 +1,13 @@
1
+ from typing import Any
2
+
3
+ TLS_ROOT_CERTS_OPTION = "tls_root_certs"
4
+
5
+
6
+ def disable_server_verification(arrow_client_options: dict[str, Any]) -> dict[str, Any]:
7
+ arrow_client_options["disable_server_verification"] = True
8
+ return arrow_client_options
9
+
10
+
11
+ def set_tls_root_certs(arrow_client_options: dict[str, Any], tls_root_certs: bytes | str) -> dict[str, Any]:
12
+ arrow_client_options[TLS_ROOT_CERTS_OPTION] = tls_root_certs
13
+ return arrow_client_options
@@ -26,6 +26,7 @@ from graphdatascience.arrow_client.arrow_info import ArrowInfo
26
26
  from graphdatascience.retry_utils.retry_config import ExponentialWaitConfig, RetryConfigV2, StopConfig
27
27
 
28
28
  from ..version import __version__
29
+ from .arrow_client_options_util import TLS_ROOT_CERTS_OPTION, set_tls_root_certs
29
30
  from .middleware.auth_middleware import AuthFactory, AuthMiddleware
30
31
  from .middleware.user_agent_middleware import UserAgentFactory
31
32
 
@@ -220,8 +221,8 @@ class AuthenticatedArrowClient:
220
221
 
221
222
  # We need to specify the system root certificates on Windows
222
223
  if platform.system() == "Windows":
223
- if not client_options["tls_root_certs"]:
224
- client_options["tls_root_certs"] = certifi.contents()
224
+ if TLS_ROOT_CERTS_OPTION not in client_options:
225
+ set_tls_root_certs(client_options, certifi.contents())
225
226
 
226
227
  if self._auth:
227
228
  user_agent = f"neo4j-graphdatascience-v{__version__} pyarrow-v{arrow_version}"
@@ -2,13 +2,11 @@ from __future__ import annotations
2
2
 
3
3
  import json
4
4
  import logging
5
- import re
6
5
  from types import TracebackType
7
6
  from typing import Any, Callable, Iterable, Type
8
7
 
9
8
  import pandas
10
9
  import pyarrow
11
- from neo4j.exceptions import ClientError
12
10
  from pyarrow import Array, ChunkedArray, DictionaryArray, RecordBatch, Table, chunked_array, flight
13
11
  from pyarrow.types import is_dictionary
14
12
  from pydantic import BaseModel
@@ -17,6 +15,7 @@ from graphdatascience.arrow_client.arrow_endpoint_version import ArrowEndpointVe
17
15
  from graphdatascience.arrow_client.authenticated_flight_client import AuthenticatedArrowClient, ConnectionInfo
18
16
  from graphdatascience.arrow_client.v1.data_mapper_utils import deserialize_single
19
17
 
18
+ from ...procedure_surface.arrow.error_handler import handle_flight_error
20
19
  from ...semantic_version.semantic_version import SemanticVersion
21
20
 
22
21
 
@@ -515,7 +514,7 @@ class GdsArrowClient:
515
514
  ack_stream.read()
516
515
  progress_callback(partition.num_rows)
517
516
  except Exception as e:
518
- GdsArrowClient.handle_flight_error(e)
517
+ handle_flight_error(e)
519
518
 
520
519
  def _get_data(
521
520
  self,
@@ -560,7 +559,7 @@ class GdsArrowClient:
560
559
  try:
561
560
  arrow_table = get.read_all()
562
561
  except Exception as e:
563
- GdsArrowClient.handle_flight_error(e)
562
+ handle_flight_error(e)
564
563
  arrow_table = self._sanitize_arrow_table(arrow_table)
565
564
  if SemanticVersion.from_string(pandas.__version__) >= SemanticVersion(2, 0, 0):
566
565
  return arrow_table.to_pandas(types_mapper=pandas.ArrowDtype) # type: ignore
@@ -615,26 +614,6 @@ class GdsArrowClient:
615
614
  else:
616
615
  return array
617
616
 
618
- @staticmethod
619
- def handle_flight_error(e: Exception) -> None:
620
- if isinstance(e, flight.FlightServerError | flight.FlightInternalError | ClientError):
621
- original_message = e.args[0] if len(e.args) > 0 else e.message
622
- improved_message = original_message.replace(
623
- "Flight RPC failed with message: org.apache.arrow.flight.FlightRuntimeException: ", ""
624
- )
625
- improved_message = improved_message.replace(
626
- "Flight returned internal error, with message: org.apache.arrow.flight.FlightRuntimeException: ", ""
627
- )
628
- improved_message = improved_message.replace(
629
- "Failed to invoke procedure `gds.arrow.project`: Caused by: org.apache.arrow.flight.FlightRuntimeException: ",
630
- "",
631
- )
632
- improved_message = re.sub(r"(\. )?gRPC client debug context: .+$", "", improved_message)
633
-
634
- raise flight.FlightServerError(improved_message)
635
- else:
636
- raise e
637
-
638
617
 
639
618
  class NodeLoadDoneResult(BaseModel):
640
619
  name: str
@@ -34,13 +34,13 @@ class JobStatus(ArrowBaseModel):
34
34
  return None
35
35
 
36
36
  def aborted(self) -> bool:
37
- return self.status == "Aborted"
37
+ return self.status.lower() == "aborted"
38
38
 
39
39
  def succeeded(self) -> bool:
40
- return self.status == "Done"
40
+ return self.status.lower() == "done"
41
41
 
42
42
  def running(self) -> bool:
43
- return self.status == "Running"
43
+ return self.status.lower() == "running"
44
44
 
45
45
 
46
46
  class MutateResult(ArrowBaseModel):
@@ -93,7 +93,7 @@ class GdsArrowClient:
93
93
  job_id: str | None = None,
94
94
  ) -> str:
95
95
  """
96
- Start a new export process to stream the nodes with the specified label and filter from the graph.
96
+ Start a new export process to stream the nodes that match the filter from the graph.
97
97
 
98
98
  Parameters
99
99
  ----------
@@ -3,13 +3,14 @@ from typing import Any
3
3
 
4
4
  from pandas import ArrowDtype, DataFrame
5
5
  from pyarrow._flight import Ticket
6
- from tenacity import Retrying, retry_if_result, wait_exponential
6
+ from tenacity import Retrying, retry_if_result
7
7
 
8
8
  from graphdatascience.arrow_client.authenticated_flight_client import AuthenticatedArrowClient
9
9
  from graphdatascience.arrow_client.v2.api_types import JobIdConfig, JobStatus
10
10
  from graphdatascience.arrow_client.v2.data_mapper_utils import deserialize_single
11
11
  from graphdatascience.query_runner.progress.progress_bar import TqdmProgressBar
12
12
  from graphdatascience.query_runner.termination_flag import TerminationFlag
13
+ from graphdatascience.retry_utils.retry_utils import job_wait_strategy
13
14
 
14
15
  JOB_STATUS_ENDPOINT = "v2/jobs.status"
15
16
  RESULTS_SUMMARY_ENDPOINT = "v2/results.summary"
@@ -50,12 +51,9 @@ class JobClient:
50
51
  if termination_flag is None:
51
52
  termination_flag = TerminationFlag.create()
52
53
 
53
- for attempt in Retrying(
54
- retry=retry_if_result(lambda _: True), wait=wait_exponential(min=0.1, max=5), reraise=True
55
- ):
54
+ for attempt in Retrying(retry=retry_if_result(lambda _: True), wait=job_wait_strategy(), reraise=True):
56
55
  with attempt:
57
56
  termination_flag.assert_running()
58
-
59
57
  job_status = self.get_job_status(client, job_id)
60
58
 
61
59
  if check_expected_status(job_status) or job_status.aborted():
@@ -13,6 +13,7 @@ from graphdatascience.query_runner.arrow_authentication import UsernamePasswordA
13
13
  from graphdatascience.query_runner.query_mode import QueryMode
14
14
  from graphdatascience.topological_lp.topological_lp_runner import TopologicalLPRunner
15
15
 
16
+ from .arrow_client.arrow_client_options_util import disable_server_verification, set_tls_root_certs
16
17
  from .call_builder import IndirectCallBuilder
17
18
  from .endpoints import AlphaEndpoints, BetaEndpoints, DirectEndpoints
18
19
  from .error.uncallable_namespace import UncallableNamespace
@@ -121,9 +122,9 @@ class GraphDataScience(DirectEndpoints, UncallableNamespace):
121
122
  if arrow_client_options is None:
122
123
  arrow_client_options = {}
123
124
  if arrow_disable_server_verification:
124
- arrow_client_options["disable_server_verification"] = True
125
+ disable_server_verification(arrow_client_options)
125
126
  if arrow_tls_root_certs is not None:
126
- arrow_client_options["tls_root_certs"] = arrow_tls_root_certs
127
+ set_tls_root_certs(arrow_client_options, arrow_tls_root_certs)
127
128
  self._query_runner = ArrowQueryRunner.create(
128
129
  self._query_runner,
129
130
  arrow_info=arrow_info,
@@ -3,6 +3,7 @@ from graphdatascience.procedure_surface.api.catalog.scale_properties_endpoints i
3
3
  from graphdatascience.procedure_surface.api.centrality.articlerank_endpoints import ArticleRankEndpoints
4
4
  from graphdatascience.procedure_surface.api.centrality.articulationpoints_endpoints import ArticulationPointsEndpoints
5
5
  from graphdatascience.procedure_surface.api.centrality.betweenness_endpoints import BetweennessEndpoints
6
+ from graphdatascience.procedure_surface.api.centrality.bridges_endpoints import BridgesEndpoints
6
7
  from graphdatascience.procedure_surface.api.centrality.celf_endpoints import CelfEndpoints
7
8
  from graphdatascience.procedure_surface.api.centrality.closeness_endpoints import ClosenessEndpoints
8
9
  from graphdatascience.procedure_surface.api.centrality.closeness_harmonic_endpoints import ClosenessHarmonicEndpoints
@@ -22,6 +23,7 @@ from graphdatascience.procedure_surface.api.community.local_clustering_coefficie
22
23
  )
23
24
  from graphdatascience.procedure_surface.api.community.louvain_endpoints import LouvainEndpoints
24
25
  from graphdatascience.procedure_surface.api.community.maxkcut_endpoints import MaxKCutEndpoints
26
+ from graphdatascience.procedure_surface.api.community.modularity_endpoints import ModularityEndpoints
25
27
  from graphdatascience.procedure_surface.api.community.modularity_optimization_endpoints import (
26
28
  ModularityOptimizationEndpoints,
27
29
  )
@@ -30,11 +32,13 @@ from graphdatascience.procedure_surface.api.community.sllpa_endpoints import Sll
30
32
  from graphdatascience.procedure_surface.api.community.triangle_count_endpoints import TriangleCountEndpoints
31
33
  from graphdatascience.procedure_surface.api.community.wcc_endpoints import WccEndpoints
32
34
  from graphdatascience.procedure_surface.api.config_endpoints import ConfigEndpoints
35
+ from graphdatascience.procedure_surface.api.model.model_catalog_endpoints import ModelCatalogEndpoints
33
36
  from graphdatascience.procedure_surface.api.node_embedding.fastrp_endpoints import FastRPEndpoints
34
37
  from graphdatascience.procedure_surface.api.node_embedding.graphsage_endpoints import GraphSageEndpoints
35
38
  from graphdatascience.procedure_surface.api.node_embedding.hashgnn_endpoints import HashGNNEndpoints
36
39
  from graphdatascience.procedure_surface.api.node_embedding.node2vec_endpoints import Node2VecEndpoints
37
40
  from graphdatascience.procedure_surface.api.pathfinding.all_shortest_path_endpoints import AllShortestPathEndpoints
41
+ from graphdatascience.procedure_surface.api.pathfinding.bfs_endpoints import BFSEndpoints
38
42
  from graphdatascience.procedure_surface.api.pathfinding.dag_endpoints import DagEndpoints
39
43
  from graphdatascience.procedure_surface.api.pathfinding.k_spanning_tree_endpoints import KSpanningTreeEndpoints
40
44
  from graphdatascience.procedure_surface.api.pathfinding.max_flow_endpoints import MaxFlowEndpoints
@@ -57,6 +61,7 @@ from graphdatascience.procedure_surface.cypher.centrality.articulationpoints_cyp
57
61
  ArticulationPointsCypherEndpoints,
58
62
  )
59
63
  from graphdatascience.procedure_surface.cypher.centrality.betweenness_cypher_endpoints import BetweennessCypherEndpoints
64
+ from graphdatascience.procedure_surface.cypher.centrality.bridges_cypher_endpoints import BridgesCypherEndpoints
60
65
  from graphdatascience.procedure_surface.cypher.centrality.celf_cypher_endpoints import CelfCypherEndpoints
61
66
  from graphdatascience.procedure_surface.cypher.centrality.closeness_cypher_endpoints import ClosenessCypherEndpoints
62
67
  from graphdatascience.procedure_surface.cypher.centrality.closeness_harmonic_cypher_endpoints import (
@@ -82,6 +87,7 @@ from graphdatascience.procedure_surface.cypher.community.local_clustering_coeffi
82
87
  )
83
88
  from graphdatascience.procedure_surface.cypher.community.louvain_cypher_endpoints import LouvainCypherEndpoints
84
89
  from graphdatascience.procedure_surface.cypher.community.maxkcut_cypher_endpoints import MaxKCutCypherEndpoints
90
+ from graphdatascience.procedure_surface.cypher.community.modularity_cypher_endpoints import ModularityCypherEndpoints
85
91
  from graphdatascience.procedure_surface.cypher.community.modularity_optimization_cypher_endpoints import (
86
92
  ModularityOptimizationCypherEndpoints,
87
93
  )
@@ -92,6 +98,9 @@ from graphdatascience.procedure_surface.cypher.community.triangle_count_cypher_e
92
98
  )
93
99
  from graphdatascience.procedure_surface.cypher.community.wcc_cypher_endpoints import WccCypherEndpoints
94
100
  from graphdatascience.procedure_surface.cypher.config_cypher_endpoints import ConfigCypherEndpoints
101
+ from graphdatascience.procedure_surface.cypher.model.model_catalog_cypher_endpoints import (
102
+ ModelCatalogCypherEndpoints,
103
+ )
95
104
  from graphdatascience.procedure_surface.cypher.node_embedding.fastrp_cypher_endpoints import FastRPCypherEndpoints
96
105
  from graphdatascience.procedure_surface.cypher.node_embedding.graphsage_predict_cypher_endpoints import (
97
106
  GraphSagePredictCypherEndpoints,
@@ -104,6 +113,7 @@ from graphdatascience.procedure_surface.cypher.node_embedding.node2vec_cypher_en
104
113
  from graphdatascience.procedure_surface.cypher.pathfinding.all_shortest_path_cypher_endpoints import (
105
114
  AllShortestPathCypherEndpoints,
106
115
  )
116
+ from graphdatascience.procedure_surface.cypher.pathfinding.bfs_cypher_endpoints import BFSCypherEndpoints
107
117
  from graphdatascience.procedure_surface.cypher.pathfinding.dag_cypher_endpoints import DagCypherEndpoints
108
118
  from graphdatascience.procedure_surface.cypher.pathfinding.k_spanning_tree_cypher_endpoints import (
109
119
  KSpanningTreeCypherEndpoints,
@@ -147,6 +157,13 @@ class PluginV2Endpoints:
147
157
  """
148
158
  return CatalogCypherEndpoints(self._db_client, self._arrow_client)
149
159
 
160
+ @property
161
+ def model(self) -> ModelCatalogEndpoints:
162
+ """
163
+ Return model-related endpoints for model management.
164
+ """
165
+ return ModelCatalogCypherEndpoints(self._db_client)
166
+
150
167
  @property
151
168
  def config(self) -> ConfigEndpoints:
152
169
  """
@@ -177,6 +194,13 @@ class PluginV2Endpoints:
177
194
  """
178
195
  return ArticleRankCypherEndpoints(self._db_client)
179
196
 
197
+ @property
198
+ def bfs(self) -> BFSEndpoints:
199
+ """
200
+ Return endpoints for the Breadth First Search (BFS) algorithm.
201
+ """
202
+ return BFSCypherEndpoints(self._db_client)
203
+
180
204
  @property
181
205
  def articulation_points(self) -> ArticulationPointsEndpoints:
182
206
  """
@@ -191,6 +215,13 @@ class PluginV2Endpoints:
191
215
  """
192
216
  return BetweennessCypherEndpoints(self._db_client)
193
217
 
218
+ @property
219
+ def bridges(self) -> BridgesEndpoints:
220
+ """
221
+ Return endpoints for the bridges algorithm.
222
+ """
223
+ return BridgesCypherEndpoints(self._db_client)
224
+
194
225
  @property
195
226
  def bellman_ford(self) -> SingleSourceBellmanFordEndpoints:
196
227
  """
@@ -362,6 +393,13 @@ class PluginV2Endpoints:
362
393
  """
363
394
  return MaxKCutCypherEndpoints(self._db_client)
364
395
 
396
+ @property
397
+ def modularity(self) -> ModularityEndpoints:
398
+ """
399
+ Return endpoints for the modularity algorithm.
400
+ """
401
+ return ModularityCypherEndpoints(self._db_client)
402
+
365
403
  @property
366
404
  def modularity_optimization(self) -> ModularityOptimizationEndpoints:
367
405
  """
@@ -16,6 +16,22 @@ from graphdatascience.procedure_surface.api.catalog.relationships_endpoints impo
16
16
 
17
17
 
18
18
  class CatalogEndpoints(ABC):
19
+ @abstractmethod
20
+ def get(self, graph_name: str) -> GraphV2:
21
+ """Retrieve a handle to a graph from the graph catalog.
22
+
23
+ Parameters
24
+ ----------
25
+ graph_name
26
+ The name of the graph.
27
+
28
+ Returns
29
+ -------
30
+ GraphV2
31
+ A handle to the graph.
32
+ """
33
+ pass
34
+
19
35
  @abstractmethod
20
36
  def construct(
21
37
  self,
@@ -0,0 +1,82 @@
1
+ from __future__ import annotations
2
+
3
+ from abc import ABC, abstractmethod
4
+ from typing import Any
5
+
6
+ from pandas import DataFrame
7
+
8
+ from graphdatascience.procedure_surface.api.catalog.graph_api import GraphV2
9
+ from graphdatascience.procedure_surface.api.default_values import ALL_LABELS, ALL_TYPES
10
+ from graphdatascience.procedure_surface.api.estimation_result import EstimationResult
11
+
12
+
13
+ class BridgesEndpoints(ABC):
14
+ @abstractmethod
15
+ def stream(
16
+ self,
17
+ G: GraphV2,
18
+ relationship_types: list[str] = ALL_TYPES,
19
+ node_labels: list[str] = ALL_LABELS,
20
+ sudo: bool = False,
21
+ log_progress: bool = True,
22
+ username: str | None = None,
23
+ concurrency: int | None = None,
24
+ job_id: str | None = None,
25
+ ) -> DataFrame:
26
+ """
27
+ Executes the Bridges algorithm and returns a stream of results.
28
+
29
+ Parameters
30
+ ----------
31
+ G
32
+ Graph object to use
33
+ relationship_types
34
+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
35
+ node_labels
36
+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
37
+ sudo
38
+ Disable the memory guard.
39
+ log_progress
40
+ Display progress logging.
41
+ username
42
+ As an administrator, impersonate a different user for accessing their graphs.
43
+ concurrency
44
+ Number of concurrent threads to use.
45
+ job_id
46
+ Identifier for the computation.
47
+
48
+ Returns
49
+ -------
50
+ DataFrame
51
+ DataFrame with 'from', 'to' and 'remainingSizes' columns. The remainingSizes column contains the sizes of the remaining connected components after removing the bridge relationship.
52
+ """
53
+ pass
54
+
55
+ @abstractmethod
56
+ def estimate(
57
+ self,
58
+ G: GraphV2 | dict[str, Any],
59
+ relationship_types: list[str] = ALL_TYPES,
60
+ node_labels: list[str] = ALL_LABELS,
61
+ concurrency: int | None = None,
62
+ ) -> EstimationResult:
63
+ """
64
+ Estimate the memory consumption of an algorithm run.
65
+
66
+ Parameters
67
+ ----------
68
+ G
69
+ Graph object to use or a dictionary representing the graph dimensions.
70
+ relationship_types
71
+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
72
+ node_labels
73
+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
74
+ concurrency
75
+ Number of concurrent threads to use.
76
+
77
+ Returns
78
+ -------
79
+ EstimationResult
80
+ Memory estimation details
81
+ """
82
+ pass
@@ -0,0 +1,160 @@
1
+ from __future__ import annotations
2
+
3
+ from abc import ABC, abstractmethod
4
+ from typing import Any
5
+
6
+ from pandas import DataFrame
7
+
8
+ from graphdatascience.procedure_surface.api.base_result import BaseResult
9
+ from graphdatascience.procedure_surface.api.catalog.graph_api import GraphV2
10
+ from graphdatascience.procedure_surface.api.default_values import ALL_LABELS, ALL_TYPES
11
+ from graphdatascience.procedure_surface.api.estimation_result import EstimationResult
12
+
13
+
14
+ class ModularityEndpoints(ABC):
15
+ @abstractmethod
16
+ def stats(
17
+ self,
18
+ G: GraphV2,
19
+ community_property: str,
20
+ *,
21
+ concurrency: int | None = None,
22
+ job_id: str | None = None,
23
+ log_progress: bool = True,
24
+ node_labels: list[str] = ALL_LABELS,
25
+ relationship_types: list[str] = ALL_TYPES,
26
+ relationship_weight_property: str | None = None,
27
+ sudo: bool = False,
28
+ username: str | None = None,
29
+ ) -> ModularityStatsResult:
30
+ """
31
+ Executes the Modularity algorithm and returns statistics.
32
+
33
+ Parameters
34
+ ----------
35
+ G
36
+ Graph object to use
37
+ community_property
38
+ Name of the node property containing community assignments.
39
+ concurrency
40
+ Number of concurrent threads to use.
41
+ job_id
42
+ Identifier for the computation.
43
+ log_progress
44
+ Display progress logging.
45
+ node_labels
46
+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
47
+ relationship_types
48
+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
49
+ relationship_weight_property
50
+ Name of the property to be used as weights.
51
+ sudo
52
+ Disable the memory guard.
53
+ username
54
+ As an administrator, impersonate a different user for accessing their graphs.
55
+
56
+ Returns
57
+ -------
58
+ ModularityStatsResult
59
+ Algorithm statistics including communityCount, modularity, nodeCount, and relationshipCount
60
+ """
61
+ pass
62
+
63
+ @abstractmethod
64
+ def stream(
65
+ self,
66
+ G: GraphV2,
67
+ community_property: str,
68
+ *,
69
+ concurrency: int | None = None,
70
+ job_id: str | None = None,
71
+ log_progress: bool = True,
72
+ node_labels: list[str] = ALL_LABELS,
73
+ relationship_types: list[str] = ALL_TYPES,
74
+ relationship_weight_property: str | None = None,
75
+ sudo: bool = False,
76
+ username: str | None = None,
77
+ ) -> DataFrame:
78
+ """
79
+ Executes the Modularity algorithm and returns a stream of results.
80
+
81
+ Parameters
82
+ ----------
83
+ G
84
+ Graph object to use
85
+ community_property
86
+ Name of the node property containing community assignments.
87
+ concurrency
88
+ Number of concurrent threads to use.
89
+ job_id
90
+ Identifier for the computation.
91
+ log_progress
92
+ Display progress logging.
93
+ node_labels
94
+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
95
+ relationship_types
96
+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
97
+ relationship_weight_property
98
+ Name of the property to be used as weights.
99
+ sudo
100
+ Disable the memory guard.
101
+ username
102
+ As an administrator, impersonate a different user for accessing their graphs.
103
+
104
+ Returns
105
+ -------
106
+ DataFrame
107
+ DataFrame with the algorithm results containing 'communityId' and 'modularity' columns
108
+ """
109
+ pass
110
+
111
+ @abstractmethod
112
+ def estimate(
113
+ self,
114
+ G: GraphV2 | dict[str, Any],
115
+ community_property: str,
116
+ *,
117
+ concurrency: int | None = None,
118
+ node_labels: list[str] = ALL_LABELS,
119
+ relationship_types: list[str] = ALL_TYPES,
120
+ relationship_weight_property: str | None = None,
121
+ ) -> EstimationResult:
122
+ """
123
+ Estimate the memory consumption of the modularity algorithm.
124
+
125
+ Parameters
126
+ ----------
127
+ G
128
+ Graph object to use or a dictionary representing the graph dimensions.
129
+ community_property
130
+ Name of the node property containing community assignments.
131
+ concurrency
132
+ Number of concurrent threads to use.
133
+ node_labels
134
+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
135
+ relationship_types
136
+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
137
+ relationship_weight_property
138
+ Name of the property to be used as weights.
139
+
140
+ Returns
141
+ -------
142
+ EstimationResult
143
+ An object containing the result of the estimation
144
+ """
145
+ pass
146
+
147
+
148
+ class ModularityStatsResult(BaseResult):
149
+ """
150
+ Result object for the modularity stats algorithm.
151
+ """
152
+
153
+ community_count: int
154
+ modularity: float
155
+ node_count: int
156
+ relationship_count: int
157
+ pre_processing_millis: int
158
+ compute_millis: int
159
+ post_processing_millis: int
160
+ configuration: dict[str, Any]
@@ -0,0 +1,15 @@
1
+ from .model_catalog_endpoints import (
2
+ ModelCatalogEndpoints,
3
+ ModelDeleteResult,
4
+ ModelExistsResult,
5
+ ModelLoadResult,
6
+ ModelStoreResult,
7
+ )
8
+
9
+ __all__ = [
10
+ "ModelCatalogEndpoints",
11
+ "ModelDeleteResult",
12
+ "ModelExistsResult",
13
+ "ModelLoadResult",
14
+ "ModelStoreResult",
15
+ ]