graphdatascience 1.21a1__tar.gz → 1.22__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.
- {graphdatascience-1.21a1/src/graphdatascience.egg-info → graphdatascience-1.22}/PKG-INFO +1 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/pyproject.toml +2 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/authenticated_flight_client.py +29 -9
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/middleware/auth_middleware.py +1 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/middleware/user_agent_middleware.py +1 -1
- {graphdatascience-1.21a1/src/graphdatascience/arrow_client/v2 → graphdatascience-1.22/src/graphdatascience/arrow_client/v1}/data_mapper_utils.py +1 -1
- {graphdatascience-1.21a1/src/graphdatascience/arrow_client/v1 → graphdatascience-1.22/src/graphdatascience/arrow_client/v2}/data_mapper_utils.py +1 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/gds_arrow_client.py +48 -26
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/job_client.py +15 -2
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/mutation_client.py +21 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/endpoints.py +23 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/client_only_endpoint.py +5 -1
- graphdatascience-1.22/src/graphdatascience/graph/graph_remote_proc_runner.py +76 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/model.py +1 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/model_details.py +3 -3
- graphdatascience-1.22/src/graphdatascience/pipeline/pipeline_alpha_proc_runner.py +25 -0
- graphdatascience-1.22/src/graphdatascience/pipeline/pipeline_beta_proc_runner.py +79 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/pipeline_endpoints.py +51 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/pipeline_proc_runner.py +27 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/training_pipeline.py +2 -2
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/plugin_v2_endpoints.py +44 -5
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/__init__.py +12 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/catalog_endpoints.py +35 -14
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/dataset_endpoints.py +4 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/graph_sampling_endpoints.py +6 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/node_properties_endpoints.py +2 -2
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/relationships_endpoints.py +8 -5
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/collapse_path_endpoints.py +57 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/__init__.py +2 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/community/triangles_endpoints.py +61 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/default_values.py +2 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/job_handle.py +135 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/job_not_finished_error.py +9 -0
- graphdatascience-1.21a1/src/graphdatascience/procedure_surface/api/system_endpoints.py → graphdatascience-1.22/src/graphdatascience/procedure_surface/api/list_progress_endpoint.py +2 -2
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/model/link_prediction_model.py +144 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/model/model_catalog_endpoints.py +25 -8
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/model/node_classification_model.py +253 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/model/node_regression_model.py +131 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_endpoints.py +1 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_train_endpoints.py +2 -2
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/__init__.py +8 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pathfinding/random_walk_endpoints.py +279 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/__init__.py +71 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline.py +224 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline_endpoints.py +307 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline_protocol.py +90 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline_results.py +27 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_predict_endpoints.py +94 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_train_endpoints.py +140 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline.py +423 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline_endpoints.py +292 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline_protocol.py +79 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline_results.py +27 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_predict_endpoints.py +228 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_train_endpoints.py +134 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_metric.py +7 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline.py +281 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline_endpoints.py +282 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline_protocol.py +78 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline_results.py +27 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_predict_endpoints.py +113 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/parameter_space_config.py +25 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/pipeline_catalog_protocol.py +16 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/pipeline_endpoints.py +64 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/projection_job_handle.py +72 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/api/write_job_handle.py +143 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/catalog_arrow_endpoints.py +288 -40
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/graph_sampling_arrow_endpoints.py +4 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/node_label_arrow_endpoints.py +4 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/node_properties_arrow_endpoints.py +14 -9
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/relationship_arrow_endpoints.py +20 -15
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/scale_properties_arrow_endpoints.py +3 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/articlerank_arrow_endpoints.py +40 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/articulationpoints_arrow_endpoints.py +28 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/betweenness_arrow_endpoints.py +34 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/bridges_arrow_endpoints.py +27 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/celf_arrow_endpoints.py +35 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_arrow_endpoints.py +30 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_harmonic_arrow_endpoints.py +28 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/degree_arrow_endpoints.py +31 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/eigenvector_arrow_endpoints.py +39 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/pagerank_arrow_endpoints.py +88 -3
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/collapse_path_arrow_endpoints.py +49 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/clique_counting_arrow_endpoints.py +28 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/conductance_arrow_endpoints.py +28 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/hdbscan_arrow_endpoints.py +37 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/k1coloring_arrow_endpoints.py +32 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/kcore_arrow_endpoints.py +27 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/kmeans_arrow_endpoints.py +46 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/labelpropagation_arrow_endpoints.py +38 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/leiden_arrow_endpoints.py +47 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/local_clustering_coefficient_arrow_endpoints.py +30 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/louvain_arrow_endpoints.py +41 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/maxkcut_arrow_endpoints.py +39 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/modularity_arrow_endpoints.py +28 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/modularity_optimization_arrow_endpoints.py +40 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/scc_arrow_endpoints.py +29 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/sllpa_arrow_endpoints.py +34 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/triangle_count_arrow_endpoints.py +33 -4
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/community/triangles_arrow_endpoints.py +48 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/wcc_arrow_endpoints.py +35 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/endpoints_helper_base.py +33 -45
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/jobs_arrow_endpoints.py +105 -0
- graphdatascience-1.21a1/src/graphdatascience/procedure_surface/arrow/system_arrow_endpoints.py → graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/list_progress_arrow_endpoint.py +3 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/model/model_catalog_arrow_endpoints.py +19 -5
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/mutation_runner.py +63 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/fastrp_arrow_endpoints.py +43 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_predict_arrow_endpoints.py +32 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_train_arrow_endpoints.py +6 -6
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/hashgnn_arrow_endpoints.py +46 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/node2vec_arrow_endpoints.py +60 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_property_endpoints.py +6 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/all_shortest_path_arrow_endpoints.py +31 -5
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/bfs_arrow_endpoints.py +33 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/dfs_arrow_endpoints.py +33 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/dijkstra_arrow_endpoints.py +34 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/k_spanning_tree_arrow_endpoints.py +36 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/longest_path_arrow_endpoints.py +28 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_arrow_endpoints.py +37 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_min_cost_arrow_endpoints.py +40 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/prize_steiner_tree_arrow_endpoints.py +32 -3
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pathfinding/random_walk_arrow_endpoints.py +202 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/shortest_path_arrow_endpoints.py +5 -5
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_bellman_ford_arrow_endpoints.py +32 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_delta_arrow_endpoints.py +34 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_dijkstra_arrow_endpoints.py +32 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_astar_arrow_endpoints.py +38 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_dijkstra_arrow_endpoints.py +34 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_yens_arrow_endpoints.py +36 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/spanning_tree_arrow_endpoints.py +34 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/steiner_tree_arrow_endpoints.py +38 -3
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/__init__.py +21 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/link_prediction_pipeline_arrow_endpoints.py +262 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/link_prediction_predict_arrow_endpoints.py +166 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/link_prediction_train_arrow_endpoints.py +134 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_classification_pipeline_arrow_endpoints.py +247 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_classification_predict_arrow_endpoints.py +185 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_classification_train_arrow_endpoints.py +131 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_regression_pipeline_arrow_endpoints.py +232 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_regression_predict_arrow_endpoints.py +97 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/pipeline_arrow_endpoints.py +50 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/pipeline_catalog_arrow_endpoints.py +49 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/knn_arrow_endpoints.py +49 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/knn_filtered_arrow_endpoints.py +54 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_arrow_endpoints.py +96 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_filtered_arrow_endpoints.py +52 -3
- graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/stream_result_mapper.py +115 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/__init__.py +3 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/catalog_cypher_endpoints.py +12 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/graph_sampling_cypher_endpoints.py +4 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/node_properties_cypher_endpoints.py +2 -2
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/relationship_cypher_endpoints.py +7 -11
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/collapse_path_cypher_endpoints.py +49 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/community/triangles_cypher_endpoints.py +46 -0
- graphdatascience-1.21a1/src/graphdatascience/procedure_surface/cypher/system_cypher_endpoints.py → graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/list_progress_cypher_endpoint.py +3 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/model/model_catalog_cypher_endpoints.py +24 -5
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_train_cypher_endpoints.py +1 -1
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pathfinding/random_walk_cypher_endpoints.py +193 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/__init__.py +19 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/link_prediction_pipeline_cypher_endpoints.py +252 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/link_prediction_predict_cypher_endpoints.py +157 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/link_prediction_train_cypher_endpoints.py +120 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_classification_pipeline_cypher_endpoints.py +237 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_classification_predict_cypher_endpoints.py +151 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_classification_train_cypher_endpoints.py +115 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_regression_pipeline_cypher_endpoints.py +224 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_regression_predict_cypher_endpoints.py +78 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/pipeline_catalog_cypher_endpoints.py +52 -0
- graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/pipeline_cypher_endpoints.py +27 -0
- graphdatascience-1.22/src/graphdatascience/query_runner/protocol/arrow_config.py +23 -0
- graphdatascience-1.22/src/graphdatascience/query_runner/protocol/project_protocols.py +279 -0
- graphdatascience-1.22/src/graphdatascience/query_runner/protocol/projection_runner.py +147 -0
- graphdatascience-1.22/src/graphdatascience/query_runner/protocol/write_protocols.py +193 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/session_query_runner.py +15 -75
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_api.py +21 -4
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_graph_data_science.py +21 -6
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms/protocol_resolver.py +2 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms/protocol_version.py +1 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dedicated_sessions.py +15 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/gds_sessions.py +23 -3
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_v2_endpoints.py +98 -61
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/version.py +1 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22/src/graphdatascience.egg-info}/PKG-INFO +1 -1
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/SOURCES.txt +67 -7
- graphdatascience-1.21a1/src/graphdatascience/arrow_client/v2/remote_write_back_client.py +0 -83
- graphdatascience-1.21a1/src/graphdatascience/graph/graph_remote_proc_runner.py +0 -8
- graphdatascience-1.21a1/src/graphdatascience/graph/graph_remote_project_runner.py +0 -49
- graphdatascience-1.21a1/src/graphdatascience/model/v2/graphsage_model.py +0 -0
- graphdatascience-1.21a1/src/graphdatascience/pipeline/pipeline_alpha_proc_runner.py +0 -9
- graphdatascience-1.21a1/src/graphdatascience/pipeline/pipeline_beta_proc_runner.py +0 -32
- graphdatascience-1.21a1/src/graphdatascience/procedure_surface/api/__init__.py +0 -5
- graphdatascience-1.21a1/src/graphdatascience/procedure_surface/arrow/stream_result_mapper.py +0 -69
- graphdatascience-1.21a1/src/graphdatascience/procedure_surface/cypher/__init__.py +0 -3
- graphdatascience-1.21a1/src/graphdatascience/query_runner/protocol/project_protocols.py +0 -197
- graphdatascience-1.21a1/src/graphdatascience/query_runner/protocol/write_protocols.py +0 -198
- graphdatascience-1.21a1/src/graphdatascience/session/aurads_sessions.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/LICENSE +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/MANIFEST.in +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/README.md +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/setup.cfg +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/algo_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/algo_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/single_mode_algo_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_authentication.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_base_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_client_options_util.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_endpoint_version.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_info.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/middleware/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/progress_callback.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v1/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v1/gds_arrow_client.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/api_types.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/call_builder.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/call_parameters.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/caller_base.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/graph_constructor_func.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/nx_loader.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/ogb_loader.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/simple_file_loader.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/cypher_warning_handler.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/endpoint_suggester.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/gds_not_installed.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/illegal_attr_checker.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/unable_to_connect.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/uncallable_namespace.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/base_graph_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_alpha_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_beta_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_create_result.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_cypher_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_entity_ops_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_export_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_object.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_project_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_sample_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_type_check.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/nx_loader.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/ogb_loader.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/graph_api.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/graph_backend.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/graph_backend_cypher.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph_data_science.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/ignored_server_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/graphsage_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/link_prediction_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_alpha_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_beta_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_resolver.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/node_classification_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/node_regression_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/pipeline_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/simple_rel_embedding_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/model_api.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/classification_training_pipeline.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/lp_pipeline_create_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/lp_training_pipeline.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nc_pipeline_create_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nc_training_pipeline.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nr_pipeline_create_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nr_training_pipeline.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/base_result.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/graph_info.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/node_label_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/scale_properties_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/scaler_config.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/articlerank_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/articulationpoints_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/betweenness_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/bridges_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/celf_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/closeness_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/closeness_harmonic_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/degree_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/eigenvector_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/pagerank_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/clique_counting_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/conductance_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/hdbscan_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/k1coloring_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/kcore_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/kmeans_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/labelpropagation_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/leiden_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/local_clustering_coefficient_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/louvain_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/maxkcut_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/modularity_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/modularity_optimization_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/scc_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/sllpa_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/triangle_count_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/wcc_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/config_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/estimation_result.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/model/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/model/graphsage_model.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/fastrp_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_predict_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/hashgnn_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/node2vec_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/all_shortest_path_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/bfs_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/dag_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/dfs_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/dijkstra_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/k_spanning_tree_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/longest_path_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_min_cost_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/prize_steiner_tree_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/shortest_path_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_bellman_ford_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_delta_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_dijkstra_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_astar_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_dijkstra_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_yens_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/spanning_tree_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/steiner_tree_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/knn_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/knn_filtered_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/knn_results.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_filtered_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_results.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/graph_backend_arrow.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/graph_ops_arrow.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/config_arrow_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/error_handler.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/model/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/model_api_arrow.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/dag_arrow_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/relationship_endpoints_helper.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/table_endpoints_helper.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/node_label_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/scale_properties_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/utils.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/articlerank_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/articulationpoints_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/betweenness_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/bridges_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/celf_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_harmonic_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/degree_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/eigenvector_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/pagerank_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/clique_counting_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/conductance_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/hdbscan_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/k1coloring_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/kcore_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/kmeans_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/labelpropagation_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/leiden_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/local_clustering_coefficient_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/louvain_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/maxkcut_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/modularity_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/modularity_optimization_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/scc_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/sllpa_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/triangle_count_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/wcc_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/config_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/estimation_utils.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/model/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/model_api_cypher.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/fastrp_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_predict_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/hashgnn_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/node2vec_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/all_shortest_path_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/bfs_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/dag_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/dfs_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/dijkstra_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/k_spanning_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/longest_path_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_min_cost_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/prize_steiner_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/shortest_path_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_bellman_ford_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_delta_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_dijkstra_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_astar_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_dijkstra_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_yens_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/spanning_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/steiner_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/knn_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/knn_filtered_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_filtered_cypher_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/utils/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/utils/config_converter.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/utils/result_utils.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/py.typed +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_authentication/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_graph_constructor.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_info/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_query_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/cypher_graph_constructor.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/db_environment_resolver.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/gds_arrow_client.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/graph_constructor.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/neo4j_query_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/progress_bar.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/progress_provider.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/query_progress_logger.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/query_progress_provider.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/static_progress_provider.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/protocol/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/protocol/status.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/query_mode.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/query_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/query_type.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/standalone_session_query_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/termination_flag.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/cora_nodes.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/cora_rels.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/serialize_cora.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_acted_in.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_actors.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_directed_in.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_directors.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_movies_with_genre.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_movies_without_genre.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/serialize_imdb.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/karate/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/karate/karate_club.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/artist_nodes.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/serialize_lastfm.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_friend_df_directed.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_listen_artist_rels.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_nodes.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_tag_artist_rels.parquet.gzip +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/neo4j_retry_helper.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/retry_config.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/retry_utils.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/semantic_version/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/semantic_version/semantic_version.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/server_version/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/server_version/compatible_with.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/server_version/server_version.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/algorithm_category.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_api_responses.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_api_token_authentication.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/cloud_location.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms_connection_info.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/region_suggester.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_info.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_lifecycle_manager.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_sizes.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/system/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/system/config_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/system/system_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/topological_lp_alpha_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/topological_lp_alpha_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/topological_lp_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/__init__.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/direct_util_endpoints.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/util_node_property_func_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/util_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/util_remote_proc_runner.py +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/dependency_links.txt +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/not-zip-safe +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/requires.txt +0 -0
- {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/top_level.txt +0 -0
|
@@ -59,6 +59,7 @@ dev = [
|
|
|
59
59
|
{ include-group = "dev-base" },
|
|
60
60
|
{ include-group = "test" },
|
|
61
61
|
{ include-group = "docs-ci" },
|
|
62
|
+
{ include-group = "notebook-base"}
|
|
62
63
|
]
|
|
63
64
|
|
|
64
65
|
dev-base = [
|
|
@@ -77,6 +78,7 @@ dev-base = [
|
|
|
77
78
|
]
|
|
78
79
|
test = [
|
|
79
80
|
"pytest == 9.0.2",
|
|
81
|
+
"pytest-timeout",
|
|
80
82
|
"requests_mock == 1.12.1",
|
|
81
83
|
"pytest_mock == 3.15.1",
|
|
82
84
|
"testcontainers == 4.14.0",
|
|
@@ -10,7 +10,7 @@ from typing import Any, Iterator, Type
|
|
|
10
10
|
import certifi
|
|
11
11
|
from pyarrow import Schema, flight
|
|
12
12
|
from pyarrow import __version__ as arrow_version
|
|
13
|
-
from pyarrow.
|
|
13
|
+
from pyarrow.flight import (
|
|
14
14
|
Action,
|
|
15
15
|
ActionType,
|
|
16
16
|
FlightInternalError,
|
|
@@ -118,6 +118,14 @@ class AuthenticatedArrowClient:
|
|
|
118
118
|
|
|
119
119
|
self._flight_client: flight.FlightClient = self._instantiate_flight_client()
|
|
120
120
|
|
|
121
|
+
def _reconnect(self) -> None:
|
|
122
|
+
try:
|
|
123
|
+
self._flight_client.close()
|
|
124
|
+
except Exception:
|
|
125
|
+
pass
|
|
126
|
+
|
|
127
|
+
self._flight_client = self._instantiate_flight_client()
|
|
128
|
+
|
|
121
129
|
def connection_info(self) -> ConnectionInfo:
|
|
122
130
|
"""
|
|
123
131
|
Returns the host and port of the GDS Arrow server.
|
|
@@ -156,10 +164,14 @@ class AuthenticatedArrowClient:
|
|
|
156
164
|
|
|
157
165
|
@self._retry_config.decorator(operation_name="Request token", logger=self._logger)
|
|
158
166
|
def auth_with_retry() -> None:
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
167
|
+
try:
|
|
168
|
+
client = self._flight_client
|
|
169
|
+
if self._auth:
|
|
170
|
+
auth_pair = self._auth.auth_pair()
|
|
171
|
+
client.authenticate_basic_token(auth_pair[0], auth_pair[1])
|
|
172
|
+
except (FlightTimedOutError, FlightUnavailableError, FlightInternalError):
|
|
173
|
+
self._reconnect()
|
|
174
|
+
raise
|
|
163
175
|
|
|
164
176
|
if self._auth:
|
|
165
177
|
auth_with_retry()
|
|
@@ -178,9 +190,13 @@ class AuthenticatedArrowClient:
|
|
|
178
190
|
def do_action_with_retry(self, endpoint: str, payload: bytes | dict[str, Any]) -> list[Result]:
|
|
179
191
|
@self._retry_config.decorator(operation_name="Send action", logger=self._logger)
|
|
180
192
|
def run_with_retry() -> list[Result]:
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
193
|
+
try:
|
|
194
|
+
# the Flight response error code is only checked on iterator consumption
|
|
195
|
+
# we eagerly collect iterator here to trigger retry in case of an error
|
|
196
|
+
return list(self.do_action(endpoint, payload))
|
|
197
|
+
except (FlightTimedOutError, FlightUnavailableError, FlightInternalError):
|
|
198
|
+
self._reconnect()
|
|
199
|
+
raise
|
|
184
200
|
|
|
185
201
|
return run_with_retry()
|
|
186
202
|
|
|
@@ -192,7 +208,11 @@ class AuthenticatedArrowClient:
|
|
|
192
208
|
) -> tuple[flight.FlightStreamWriter, flight.FlightMetadataReader]:
|
|
193
209
|
@self._retry_config.decorator(operation_name="Do put", logger=self._logger)
|
|
194
210
|
def run_with_retry() -> tuple[flight.FlightStreamWriter, flight.FlightMetadataReader]:
|
|
195
|
-
|
|
211
|
+
try:
|
|
212
|
+
return self._flight_client.do_put(descriptor, schema) # type: ignore
|
|
213
|
+
except (FlightTimedOutError, FlightUnavailableError, FlightInternalError):
|
|
214
|
+
self._reconnect()
|
|
215
|
+
raise
|
|
196
216
|
|
|
197
217
|
return run_with_retry()
|
|
198
218
|
|
|
@@ -4,7 +4,7 @@ import base64
|
|
|
4
4
|
import time
|
|
5
5
|
from typing import Any
|
|
6
6
|
|
|
7
|
-
from pyarrow.
|
|
7
|
+
from pyarrow.flight import ClientMiddleware, ClientMiddlewareFactory
|
|
8
8
|
|
|
9
9
|
from graphdatascience.arrow_client.arrow_authentication import ArrowAuthentication
|
|
10
10
|
|
|
@@ -2,7 +2,7 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
from typing import Any
|
|
4
4
|
|
|
5
|
-
from pyarrow.
|
|
5
|
+
from pyarrow.flight import ClientMiddleware, ClientMiddlewareFactory
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
class UserAgentFactory(ClientMiddlewareFactory): # type: ignore
|
|
@@ -123,7 +123,8 @@ class GdsArrowClient:
|
|
|
123
123
|
job_id=job_id,
|
|
124
124
|
)
|
|
125
125
|
|
|
126
|
-
|
|
126
|
+
compute_job = JobClient.run_job_and_wait(self._flight_client, "v2/graph.nodeLabel.stream", config, log_progress)
|
|
127
|
+
return JobClient.start_export_result(self._flight_client, graph_name, compute_job)
|
|
127
128
|
|
|
128
129
|
def get_relationships(
|
|
129
130
|
self,
|
|
@@ -175,14 +176,12 @@ class GdsArrowClient:
|
|
|
175
176
|
|
|
176
177
|
return JobClient.run_job(self._flight_client, endpoint, config)
|
|
177
178
|
|
|
178
|
-
def stream_job(self,
|
|
179
|
+
def stream_job(self, job_id: str) -> pandas.DataFrame:
|
|
179
180
|
"""
|
|
180
181
|
Streams the results of a previously started job.
|
|
181
182
|
|
|
182
183
|
Parameters
|
|
183
184
|
----------
|
|
184
|
-
graph_name
|
|
185
|
-
The graph name.
|
|
186
185
|
job_id
|
|
187
186
|
Identifier for the computation.
|
|
188
187
|
|
|
@@ -191,7 +190,7 @@ class GdsArrowClient:
|
|
|
191
190
|
DataFrame
|
|
192
191
|
A pandas DataFrame containing the results of the job.
|
|
193
192
|
"""
|
|
194
|
-
return JobClient().
|
|
193
|
+
return JobClient().get_stream(self._flight_client, job_id)
|
|
195
194
|
|
|
196
195
|
def create_graph(
|
|
197
196
|
self,
|
|
@@ -415,7 +414,7 @@ class GdsArrowClient:
|
|
|
415
414
|
job_id : str
|
|
416
415
|
The job id of the process
|
|
417
416
|
"""
|
|
418
|
-
self._flight_client
|
|
417
|
+
JobClient.cancel_job(self._flight_client, job_id)
|
|
419
418
|
|
|
420
419
|
def job_status(self, job_id: str) -> JobStatus:
|
|
421
420
|
"""
|
|
@@ -472,32 +471,21 @@ class GdsArrowClient:
|
|
|
472
471
|
|
|
473
472
|
return self._flight_client.request_token()
|
|
474
473
|
|
|
474
|
+
def flight_client(self) -> AuthenticatedArrowClient:
|
|
475
|
+
"""
|
|
476
|
+
Returns the underlying flight client.
|
|
477
|
+
"""
|
|
478
|
+
return self._flight_client
|
|
479
|
+
|
|
475
480
|
def _upload_data(
|
|
476
481
|
self,
|
|
477
482
|
endpoint: str,
|
|
478
483
|
job_id: str,
|
|
479
|
-
data: pyarrow.Table | list[pyarrow.RecordBatch] | list[pandas.DataFrame],
|
|
484
|
+
data: pyarrow.Table | list[pyarrow.RecordBatch] | list[pandas.DataFrame] | pandas.DataFrame,
|
|
480
485
|
batch_size: int = 10000,
|
|
481
486
|
progress_callback: ProgressCallback = lambda num_rows: None,
|
|
482
487
|
termination_flag: TerminationFlag | None = None,
|
|
483
488
|
) -> None:
|
|
484
|
-
if isinstance(data, pandas.DataFrame):
|
|
485
|
-
data = [data]
|
|
486
|
-
|
|
487
|
-
def map_list_entry_to_batches(e: pyarrow.RecordBatch | pandas.DataFrame) -> list[pyarrow.RecordBatch]:
|
|
488
|
-
return [e] if isinstance(e, pyarrow.RecordBatch) else pyarrow.Table.from_pandas(e).to_batches(batch_size)
|
|
489
|
-
|
|
490
|
-
batches: list[pyarrow.RecordBatch] = []
|
|
491
|
-
match data:
|
|
492
|
-
case list():
|
|
493
|
-
for entry in data:
|
|
494
|
-
partial_batches = map_list_entry_to_batches(entry)
|
|
495
|
-
batches.extend(partial_batches)
|
|
496
|
-
case pyarrow.Table():
|
|
497
|
-
batches = data.to_batches(batch_size)
|
|
498
|
-
case _:
|
|
499
|
-
raise ValueError(f"Unsupported data type: {type(data)}")
|
|
500
|
-
|
|
501
489
|
flight_descriptor = {
|
|
502
490
|
"name": endpoint,
|
|
503
491
|
"version": ArrowEndpointVersion.V2.version(),
|
|
@@ -507,11 +495,45 @@ class GdsArrowClient:
|
|
|
507
495
|
}
|
|
508
496
|
upload_descriptor = flight.FlightDescriptor.for_command(json.dumps(flight_descriptor).encode("utf-8"))
|
|
509
497
|
|
|
498
|
+
for batches in self._batch_groups(data, batch_size):
|
|
499
|
+
self._upload_batches(upload_descriptor, batches, job_id, progress_callback, termination_flag)
|
|
500
|
+
|
|
501
|
+
@staticmethod
|
|
502
|
+
def _batch_groups(
|
|
503
|
+
data: pyarrow.Table | list[pyarrow.RecordBatch] | list[pandas.DataFrame] | pandas.DataFrame,
|
|
504
|
+
batch_size: int,
|
|
505
|
+
) -> list[list[pyarrow.RecordBatch]]:
|
|
506
|
+
if isinstance(data, pandas.DataFrame):
|
|
507
|
+
return [pyarrow.Table.from_pandas(data).to_batches(batch_size)]
|
|
508
|
+
|
|
509
|
+
if isinstance(data, pyarrow.Table):
|
|
510
|
+
return [data.to_batches(batch_size)]
|
|
511
|
+
|
|
512
|
+
if isinstance(data, list):
|
|
513
|
+
if all(isinstance(entry, pandas.DataFrame) for entry in data):
|
|
514
|
+
return [pyarrow.Table.from_pandas(entry).to_batches(batch_size) for entry in data]
|
|
515
|
+
|
|
516
|
+
if all(isinstance(entry, pyarrow.RecordBatch) for entry in data):
|
|
517
|
+
return [data]
|
|
518
|
+
|
|
519
|
+
raise ValueError(f"Unsupported data type: {type(data)}")
|
|
520
|
+
|
|
521
|
+
def _upload_batches(
|
|
522
|
+
self,
|
|
523
|
+
upload_descriptor: flight.FlightDescriptor,
|
|
524
|
+
batches: list[pyarrow.RecordBatch],
|
|
525
|
+
job_id: str,
|
|
526
|
+
progress_callback: ProgressCallback,
|
|
527
|
+
termination_flag: TerminationFlag | None,
|
|
528
|
+
) -> None:
|
|
529
|
+
if not batches:
|
|
530
|
+
return
|
|
531
|
+
|
|
510
532
|
put_stream, ack_stream = self._flight_client.do_put_with_retry(upload_descriptor, batches[0].schema)
|
|
511
533
|
|
|
512
534
|
@self._flight_client._retry_config.decorator(operation_name="Upload batch", logger=self._logger)
|
|
513
|
-
def upload_batch(
|
|
514
|
-
put_stream.write_batch(
|
|
535
|
+
def upload_batch(batch: RecordBatch) -> None:
|
|
536
|
+
put_stream.write_batch(batch)
|
|
515
537
|
|
|
516
538
|
with put_stream:
|
|
517
539
|
for partition in batches:
|
{graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/job_client.py
RENAMED
|
@@ -2,7 +2,7 @@ import json
|
|
|
2
2
|
from typing import Any
|
|
3
3
|
|
|
4
4
|
from pandas import ArrowDtype, DataFrame
|
|
5
|
-
from pyarrow.
|
|
5
|
+
from pyarrow.flight import Ticket
|
|
6
6
|
from tenacity import Retrying, retry_if_result
|
|
7
7
|
|
|
8
8
|
from graphdatascience.arrow_client.authenticated_flight_client import AuthenticatedArrowClient
|
|
@@ -13,6 +13,7 @@ from graphdatascience.query_runner.termination_flag import TerminationFlag
|
|
|
13
13
|
from graphdatascience.retry_utils.retry_utils import job_wait_strategy
|
|
14
14
|
|
|
15
15
|
JOB_STATUS_ENDPOINT = "v2/jobs.status"
|
|
16
|
+
JOBS_CANCEL_ENDPOINT = "v2/jobs.cancel"
|
|
16
17
|
RESULTS_SUMMARY_ENDPOINT = "v2/results.summary"
|
|
17
18
|
|
|
18
19
|
|
|
@@ -73,6 +74,10 @@ class JobClient:
|
|
|
73
74
|
if progress_bar:
|
|
74
75
|
progress_bar.update(job_status.status, job_status.progress_percent(), job_status.sub_tasks())
|
|
75
76
|
|
|
77
|
+
@staticmethod
|
|
78
|
+
def cancel_job(client: AuthenticatedArrowClient, job_id: str) -> None:
|
|
79
|
+
client.do_action_with_retry(JOBS_CANCEL_ENDPOINT, JobIdConfig(jobId=job_id).dump_camel())
|
|
80
|
+
|
|
76
81
|
@staticmethod
|
|
77
82
|
def get_job_status(client: AuthenticatedArrowClient, job_id: str) -> JobStatus:
|
|
78
83
|
arrow_res = client.do_action_with_retry(JOB_STATUS_ENDPOINT, JobIdConfig(jobId=job_id).dump_camel())
|
|
@@ -86,14 +91,22 @@ class JobClient:
|
|
|
86
91
|
|
|
87
92
|
@staticmethod
|
|
88
93
|
def stream_results(client: AuthenticatedArrowClient, graph_name: str, job_id: str) -> DataFrame:
|
|
94
|
+
export_job_id = JobClient.start_export_result(client, graph_name, job_id)
|
|
95
|
+
|
|
96
|
+
return JobClient.get_stream(client, export_job_id)
|
|
97
|
+
|
|
98
|
+
@staticmethod
|
|
99
|
+
def start_export_result(client: AuthenticatedArrowClient, graph_name: str, job_id: str) -> str:
|
|
89
100
|
payload = {
|
|
90
101
|
"graphName": graph_name,
|
|
91
102
|
"jobId": job_id,
|
|
92
103
|
}
|
|
93
104
|
|
|
94
105
|
res = client.do_action_with_retry("v2/results.stream", payload)
|
|
95
|
-
|
|
106
|
+
return JobIdConfig(**deserialize_single(res)).job_id
|
|
96
107
|
|
|
108
|
+
@staticmethod
|
|
109
|
+
def get_stream(client: AuthenticatedArrowClient, export_job_id: str) -> DataFrame:
|
|
97
110
|
stream_payload = {"version": "v2", "name": export_job_id, "body": {}}
|
|
98
111
|
|
|
99
112
|
ticket = Ticket(json.dumps(stream_payload).encode("utf-8"))
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import math
|
|
2
2
|
import time
|
|
3
|
+
from typing import Any
|
|
3
4
|
|
|
4
5
|
from graphdatascience.arrow_client.authenticated_flight_client import AuthenticatedArrowClient
|
|
5
6
|
from graphdatascience.arrow_client.v2.api_types import MutateResult
|
|
@@ -23,17 +24,33 @@ class MutationClient:
|
|
|
23
24
|
process_job_id=process_job_id,
|
|
24
25
|
)
|
|
25
26
|
|
|
27
|
+
@staticmethod
|
|
28
|
+
def mutate_node_properties(
|
|
29
|
+
client: AuthenticatedArrowClient,
|
|
30
|
+
result_store_job_id: str,
|
|
31
|
+
mutate_properties: dict[str, str] | None = None,
|
|
32
|
+
process_job_id: str | None = None,
|
|
33
|
+
) -> MutateResult:
|
|
34
|
+
return MutationClient._mutate(
|
|
35
|
+
client=client,
|
|
36
|
+
result_store_job_id=result_store_job_id,
|
|
37
|
+
mutate_properties=mutate_properties,
|
|
38
|
+
process_job_id=process_job_id,
|
|
39
|
+
)
|
|
40
|
+
|
|
26
41
|
@staticmethod
|
|
27
42
|
def mutate_relationship_property(
|
|
28
43
|
client: AuthenticatedArrowClient,
|
|
29
44
|
job_id: str,
|
|
30
45
|
mutate_relationship_type: str,
|
|
31
46
|
mutate_property: str | None,
|
|
47
|
+
mutate_properties: dict[str, str] | None = None,
|
|
32
48
|
) -> MutateResult:
|
|
33
49
|
return MutationClient._mutate(
|
|
34
50
|
client=client,
|
|
35
51
|
result_store_job_id=job_id,
|
|
36
52
|
mutate_property=mutate_property,
|
|
53
|
+
mutate_properties=mutate_properties,
|
|
37
54
|
mutate_relationship_type=mutate_relationship_type,
|
|
38
55
|
)
|
|
39
56
|
|
|
@@ -43,9 +60,10 @@ class MutationClient:
|
|
|
43
60
|
result_store_job_id: str,
|
|
44
61
|
process_job_id: str | None = None,
|
|
45
62
|
mutate_property: str | None = None,
|
|
63
|
+
mutate_properties: dict[str, str] | None = None,
|
|
46
64
|
mutate_relationship_type: str | None = None,
|
|
47
65
|
) -> MutateResult:
|
|
48
|
-
mutate_config = {
|
|
66
|
+
mutate_config: dict[str, Any] = {
|
|
49
67
|
"jobId": result_store_job_id,
|
|
50
68
|
}
|
|
51
69
|
if process_job_id:
|
|
@@ -54,6 +72,8 @@ class MutationClient:
|
|
|
54
72
|
mutate_config["mutateRelationshipType"] = mutate_relationship_type
|
|
55
73
|
if mutate_property:
|
|
56
74
|
mutate_config["mutateProperty"] = mutate_property
|
|
75
|
+
if mutate_properties:
|
|
76
|
+
mutate_config["mutateProperties"] = mutate_properties
|
|
57
77
|
|
|
58
78
|
start_time = time.time()
|
|
59
79
|
mutate_arrow_res = client.do_action_with_retry(MutationClient.MUTATE_ENDPOINT, mutate_config)
|
|
@@ -13,6 +13,9 @@ from .pipeline.pipeline_endpoints import (
|
|
|
13
13
|
PipelineAlphaEndpoints,
|
|
14
14
|
PipelineBetaEndpoints,
|
|
15
15
|
PipelineEndpoints,
|
|
16
|
+
SessionPipelineAlphaEndpoints,
|
|
17
|
+
SessionPipelineBetaEndpoints,
|
|
18
|
+
SessionPipelineEndpoints,
|
|
16
19
|
)
|
|
17
20
|
from .query_runner.query_runner import QueryRunner
|
|
18
21
|
from .server_version.server_version import ServerVersion
|
|
@@ -43,6 +46,17 @@ class DirectEndpoints(
|
|
|
43
46
|
super().__init__(query_runner, namespace, server_version)
|
|
44
47
|
|
|
45
48
|
|
|
49
|
+
class DirectSessionEndpoints(
|
|
50
|
+
SingleModeAlgoEndpoints,
|
|
51
|
+
DirectSystemEndpoints,
|
|
52
|
+
DirectUtilEndpoints,
|
|
53
|
+
SessionPipelineEndpoints,
|
|
54
|
+
ConfigEndpoints,
|
|
55
|
+
):
|
|
56
|
+
def __init__(self, query_runner: QueryRunner, namespace: str, server_version: ServerVersion):
|
|
57
|
+
super().__init__(query_runner, namespace, server_version)
|
|
58
|
+
|
|
59
|
+
|
|
46
60
|
"""
|
|
47
61
|
This class should inherit endpoint classes that only expose calls of the `gds.alpha` namespace.
|
|
48
62
|
Example of such endpoints: "gds.alpha.listProgress".
|
|
@@ -67,7 +81,7 @@ class AlphaEndpoints(
|
|
|
67
81
|
|
|
68
82
|
class AlphaRemoteEndpoints(
|
|
69
83
|
GraphAlphaEndpoints,
|
|
70
|
-
|
|
84
|
+
SessionPipelineAlphaEndpoints,
|
|
71
85
|
ModelAlphaEndpoints,
|
|
72
86
|
SingleModeAlphaAlgoEndpoints,
|
|
73
87
|
SystemAlphaEndpoints,
|
|
@@ -80,6 +94,14 @@ class AlphaRemoteEndpoints(
|
|
|
80
94
|
return IndirectAlphaCallBuilder(self._query_runner, f"{self._namespace}.{attr}", self._server_version)
|
|
81
95
|
|
|
82
96
|
|
|
97
|
+
class BetaSessionEndpoints(GraphBetaEndpoints, SessionPipelineBetaEndpoints, ModelBetaEndpoints, SystemBetaEndpoints):
|
|
98
|
+
def __init__(self, query_runner: QueryRunner, namespace: str, server_version: ServerVersion):
|
|
99
|
+
super().__init__(query_runner, namespace, server_version)
|
|
100
|
+
|
|
101
|
+
def __getattr__(self, attr: str) -> IndirectBetaCallBuilder:
|
|
102
|
+
return IndirectBetaCallBuilder(self._query_runner, f"{self._namespace}.{attr}", self._server_version)
|
|
103
|
+
|
|
104
|
+
|
|
83
105
|
"""
|
|
84
106
|
This class should inherit endpoint classes that only expose calls of the `gds.beta` namespace.
|
|
85
107
|
Example of such endpoints: "gds.beta.listProgress".
|
{graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/client_only_endpoint.py
RENAMED
|
@@ -7,6 +7,10 @@ from ..caller_base import CallerBase
|
|
|
7
7
|
F = TypeVar("F", bound=Callable[..., Any])
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
def deprecated_endpoint_message(old_endpoint: str, new_endpoint: str) -> str:
|
|
11
|
+
return f"Deprecated `{old_endpoint}` in favor of `{new_endpoint}`"
|
|
12
|
+
|
|
13
|
+
|
|
10
14
|
def client_only_endpoint(expected_namespace_prefix: str) -> Callable[[F], F]:
|
|
11
15
|
def decorator(func: F) -> F:
|
|
12
16
|
wraps(func)
|
|
@@ -35,7 +39,7 @@ def client_deprecated(
|
|
|
35
39
|
|
|
36
40
|
@wraps(func)
|
|
37
41
|
def wrapper(self: CallerBase, *args: Any, **kwargs: Any) -> Any:
|
|
38
|
-
warnings.warn(
|
|
42
|
+
warnings.warn(deprecated_endpoint_message(old_endpoint, new_endpoint), DeprecationWarning)
|
|
39
43
|
return func(self, *args, **kwargs)
|
|
40
44
|
|
|
41
45
|
return cast(F, wrapper)
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
from typing import Any
|
|
2
|
+
from uuid import uuid4
|
|
3
|
+
|
|
4
|
+
import pandas as pd
|
|
5
|
+
|
|
6
|
+
from graphdatascience import Graph, GraphCreateResult, QueryRunner, ServerVersion
|
|
7
|
+
from graphdatascience.arrow_client.v2.gds_arrow_client import GdsArrowClient
|
|
8
|
+
from graphdatascience.graph.base_graph_proc_runner import BaseGraphProcRunner
|
|
9
|
+
from graphdatascience.procedure_surface.arrow.error_handler import handle_flight_error
|
|
10
|
+
from graphdatascience.query_runner.protocol.project_protocols import ProjectProtocol
|
|
11
|
+
from graphdatascience.query_runner.protocol.projection_runner import ProjectionRunner
|
|
12
|
+
from graphdatascience.query_runner.termination_flag import TerminationFlag
|
|
13
|
+
from graphdatascience.session.dbms.protocol_resolver import ProtocolVersionResolver
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GraphRemoteProcRunner(BaseGraphProcRunner):
|
|
17
|
+
def __init__(
|
|
18
|
+
self,
|
|
19
|
+
query_runner: QueryRunner,
|
|
20
|
+
arrow_client: GdsArrowClient,
|
|
21
|
+
db_query_runner: QueryRunner | None,
|
|
22
|
+
namespace: str,
|
|
23
|
+
server_version: ServerVersion,
|
|
24
|
+
):
|
|
25
|
+
super().__init__(query_runner, namespace, server_version)
|
|
26
|
+
self._arrow_client = arrow_client
|
|
27
|
+
self._db_query_runner = db_query_runner
|
|
28
|
+
|
|
29
|
+
def project(
|
|
30
|
+
self,
|
|
31
|
+
graph_name: str,
|
|
32
|
+
query: str,
|
|
33
|
+
job_id: str | None = None,
|
|
34
|
+
query_parameters: dict[str, Any] | None = None,
|
|
35
|
+
concurrency: int = 4,
|
|
36
|
+
undirected_relationship_types: list[str] | None = None,
|
|
37
|
+
inverse_indexed_relationship_types: list[str] | None = None,
|
|
38
|
+
batch_size: int | None = None,
|
|
39
|
+
logging: bool = True,
|
|
40
|
+
) -> GraphCreateResult:
|
|
41
|
+
if not self._db_query_runner:
|
|
42
|
+
raise Exception("Projections from a database are not supported for standalone sessions")
|
|
43
|
+
|
|
44
|
+
resolved_protocol_version = ProtocolVersionResolver(self._query_runner).resolve()
|
|
45
|
+
|
|
46
|
+
project_protocol = ProjectProtocol.select(
|
|
47
|
+
resolved_protocol_version,
|
|
48
|
+
self._arrow_client.flight_client(),
|
|
49
|
+
self._db_query_runner,
|
|
50
|
+
TerminationFlag.create(),
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
try:
|
|
54
|
+
result = ProjectionRunner(
|
|
55
|
+
project_protocol,
|
|
56
|
+
self._arrow_client.flight_client(),
|
|
57
|
+
TerminationFlag.create(),
|
|
58
|
+
).run_cypher_projection(
|
|
59
|
+
graph_name,
|
|
60
|
+
query,
|
|
61
|
+
job_id or str(uuid4()),
|
|
62
|
+
query_parameters,
|
|
63
|
+
concurrency,
|
|
64
|
+
undirected_relationship_types,
|
|
65
|
+
inverse_indexed_relationship_types,
|
|
66
|
+
batch_size,
|
|
67
|
+
logging,
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
# explicitly specify empty dtype to avoid pandas 1.x FutureWarning
|
|
71
|
+
result_series = pd.Series(result) if result else pd.Series(result, dtype=object)
|
|
72
|
+
return GraphCreateResult(Graph(graph_name, self._query_runner), result_series)
|
|
73
|
+
|
|
74
|
+
except Exception as e:
|
|
75
|
+
handle_flight_error(e)
|
|
76
|
+
raise e # above should already raise
|
|
@@ -12,9 +12,6 @@ class Model(ABC):
|
|
|
12
12
|
self._name = name
|
|
13
13
|
self._model_api = model_api
|
|
14
14
|
|
|
15
|
-
# TODO estimate mode, predict modes on here?
|
|
16
|
-
# implement Cypher and Arrow info_provider and stuff
|
|
17
|
-
|
|
18
15
|
def name(self) -> str:
|
|
19
16
|
"""
|
|
20
17
|
Get the name of the model.
|
|
@@ -52,7 +49,7 @@ class Model(ABC):
|
|
|
52
49
|
return self._model_api.drop(self._name, failIfMissing)
|
|
53
50
|
|
|
54
51
|
def __str__(self) -> str:
|
|
55
|
-
return f"{self.__class__.__name__}(name={self.name()}, type={self.details().
|
|
52
|
+
return f"{self.__class__.__name__}(name={self.name()}, type={self.details().model_type})"
|
|
56
53
|
|
|
57
54
|
def __repr__(self) -> str:
|
|
58
55
|
return f"{self.__class__.__name__}({self.details().model_dump()})"
|
{graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/model_details.py
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import datetime
|
|
2
2
|
from typing import Any
|
|
3
3
|
|
|
4
|
-
from pydantic import BaseModel
|
|
4
|
+
from pydantic import BaseModel
|
|
5
5
|
from pydantic.alias_generators import to_camel
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
class ModelDetails(BaseModel, alias_generator=to_camel):
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
model_name: str
|
|
10
|
+
model_type: str
|
|
11
11
|
train_config: dict[str, Any]
|
|
12
12
|
graph_schema: dict[str, Any]
|
|
13
13
|
loaded: bool
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import warnings
|
|
2
|
+
|
|
3
|
+
from ..error.client_only_endpoint import deprecated_endpoint_message
|
|
4
|
+
from ..error.illegal_attr_checker import IllegalAttrChecker
|
|
5
|
+
from ..error.uncallable_namespace import UncallableNamespace
|
|
6
|
+
from .nr_pipeline_create_runner import NRPipelineCreateRunner
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class PipelineAlphaProcRunner(UncallableNamespace, IllegalAttrChecker):
|
|
10
|
+
@property
|
|
11
|
+
def nodeRegression(self) -> NRPipelineCreateRunner:
|
|
12
|
+
return NRPipelineCreateRunner(self._query_runner, f"{self._namespace}.nodeRegression", self._server_version)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class SessionPipelineAlphaProcRunner(PipelineAlphaProcRunner):
|
|
16
|
+
@property
|
|
17
|
+
def nodeRegression(self) -> NRPipelineCreateRunner:
|
|
18
|
+
warnings.warn(
|
|
19
|
+
deprecated_endpoint_message(
|
|
20
|
+
"gds.alpha.pipeline.nodeRegression.create",
|
|
21
|
+
"gds.v2.pipeline.node_regression.create",
|
|
22
|
+
),
|
|
23
|
+
DeprecationWarning,
|
|
24
|
+
)
|
|
25
|
+
return super().nodeRegression
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import warnings
|
|
4
|
+
from typing import Any
|
|
5
|
+
|
|
6
|
+
from pandas import DataFrame, Series
|
|
7
|
+
|
|
8
|
+
from ..error.client_only_endpoint import deprecated_endpoint_message
|
|
9
|
+
from ..error.illegal_attr_checker import IllegalAttrChecker
|
|
10
|
+
from ..error.uncallable_namespace import UncallableNamespace
|
|
11
|
+
from ..model.pipeline_model import PipelineModel
|
|
12
|
+
from .lp_pipeline_create_runner import LPPipelineCreateRunner
|
|
13
|
+
from .nc_pipeline_create_runner import NCPipelineCreateRunner
|
|
14
|
+
from .pipeline_proc_runner import PipelineProcRunner
|
|
15
|
+
from .training_pipeline import TrainingPipeline
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class PipelineBetaProcRunner(UncallableNamespace, IllegalAttrChecker):
|
|
19
|
+
@property
|
|
20
|
+
def linkPrediction(self) -> LPPipelineCreateRunner:
|
|
21
|
+
return LPPipelineCreateRunner(self._query_runner, f"{self._namespace}.linkPrediction", self._server_version)
|
|
22
|
+
|
|
23
|
+
@property
|
|
24
|
+
def nodeClassification(self) -> NCPipelineCreateRunner:
|
|
25
|
+
return NCPipelineCreateRunner(self._query_runner, f"{self._namespace}.nodeClassification", self._server_version)
|
|
26
|
+
|
|
27
|
+
def list(self, pipeline: TrainingPipeline[PipelineModel] | None = None) -> DataFrame:
|
|
28
|
+
return PipelineProcRunner(self._query_runner, self._namespace, self._server_version).list(pipeline)
|
|
29
|
+
|
|
30
|
+
def exists(self, pipeline_name: str) -> Series[Any]:
|
|
31
|
+
return PipelineProcRunner(self._query_runner, self._namespace, self._server_version).exists(pipeline_name)
|
|
32
|
+
|
|
33
|
+
def drop(self, pipeline: TrainingPipeline[PipelineModel]) -> Series[Any]:
|
|
34
|
+
return PipelineProcRunner(self._query_runner, self._namespace, self._server_version).drop(pipeline)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class SessionPipelineBetaProcRunner(PipelineBetaProcRunner):
|
|
38
|
+
@property
|
|
39
|
+
def linkPrediction(self) -> LPPipelineCreateRunner:
|
|
40
|
+
warnings.warn(
|
|
41
|
+
deprecated_endpoint_message(
|
|
42
|
+
"gds.beta.pipeline.linkPrediction.create",
|
|
43
|
+
"gds.v2.pipeline.link_prediction.create",
|
|
44
|
+
),
|
|
45
|
+
DeprecationWarning,
|
|
46
|
+
)
|
|
47
|
+
return super().linkPrediction
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
def nodeClassification(self) -> NCPipelineCreateRunner:
|
|
51
|
+
warnings.warn(
|
|
52
|
+
deprecated_endpoint_message(
|
|
53
|
+
"gds.beta.pipeline.nodeClassification.create",
|
|
54
|
+
"gds.v2.pipeline.node_classification.create",
|
|
55
|
+
),
|
|
56
|
+
DeprecationWarning,
|
|
57
|
+
)
|
|
58
|
+
return super().nodeClassification
|
|
59
|
+
|
|
60
|
+
def list(self, pipeline: TrainingPipeline[PipelineModel] | None = None) -> DataFrame:
|
|
61
|
+
warnings.warn(
|
|
62
|
+
deprecated_endpoint_message("gds.beta.pipeline.list", "gds.v2.pipeline.list"),
|
|
63
|
+
DeprecationWarning,
|
|
64
|
+
)
|
|
65
|
+
return super().list(pipeline)
|
|
66
|
+
|
|
67
|
+
def exists(self, pipeline_name: str) -> Series[Any]:
|
|
68
|
+
warnings.warn(
|
|
69
|
+
deprecated_endpoint_message("gds.beta.pipeline.exists", "gds.v2.pipeline.exists"),
|
|
70
|
+
DeprecationWarning,
|
|
71
|
+
)
|
|
72
|
+
return super().exists(pipeline_name)
|
|
73
|
+
|
|
74
|
+
def drop(self, pipeline: TrainingPipeline[PipelineModel]) -> Series[Any]:
|
|
75
|
+
warnings.warn(
|
|
76
|
+
deprecated_endpoint_message("gds.beta.pipeline.drop", "gds.v2.pipeline.drop"),
|
|
77
|
+
DeprecationWarning,
|
|
78
|
+
)
|
|
79
|
+
return super().drop(pipeline)
|