-
Notifications
You must be signed in to change notification settings - Fork 13
Support GDS 2.0 API #392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Support GDS 2.0 API #392
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| from __future__ import annotations | ||
|
|
||
| import importlib | ||
| import re | ||
| from typing import Any | ||
|
|
||
| from graphdatascience.version import __version__ as _gds_version | ||
|
|
||
|
|
||
| def _parse_major(version: str) -> int: | ||
| match = re.match(r"\s*(\d+)", version) | ||
| return int(match.group(1)) if match else 0 | ||
|
|
||
|
|
||
| IS_GDS_2: bool = _parse_major(_gds_version) >= 2 | ||
|
|
||
| if IS_GDS_2: | ||
| GdsGraph: Any = importlib.import_module("graphdatascience.graph").Graph | ||
| _GRAPH_TYPES: tuple[type, ...] = (GdsGraph,) | ||
| else: | ||
| GdsGraph = importlib.import_module("graphdatascience.graph.v2").GraphV2 | ||
| _GRAPH_TYPES = (GdsGraph, importlib.import_module("graphdatascience").Graph) | ||
|
|
||
|
|
||
| def _check_graph_type(G: Any) -> None: | ||
| """Raise ``TypeError`` unless ``G`` is a graph object accepted by the installed client.""" | ||
| if not isinstance(G, _GRAPH_TYPES): | ||
| accepted = " or ".join(t.__name__ for t in _GRAPH_TYPES) | ||
| raise TypeError(f"`G` must be a GDS graph object ({accepted}), but got {type(G).__name__}") | ||
|
|
||
|
|
||
| def _catalog(gds: Any) -> Any: | ||
| """Return the graph catalog endpoints for either client version.""" | ||
| return gds.graph if IS_GDS_2 else gds.v2.graph | ||
|
|
||
|
|
||
| def _degree_centrality(gds: Any) -> Any: | ||
| """Return the degree centrality endpoints for either client version.""" | ||
| return gds.degree_centrality if IS_GDS_2 else gds.v2.degree_centrality |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.