cpg2py 1.0.5__tar.gz → 1.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. {cpg2py-1.0.5 → cpg2py-1.2.0}/LICENSE +1 -1
  2. cpg2py-1.2.0/PKG-INFO +180 -0
  3. cpg2py-1.2.0/README.md +124 -0
  4. cpg2py-1.2.0/cpg2py/__init__.py +103 -0
  5. {cpg2py-1.0.5/cpg2py/abc → cpg2py-1.2.0/cpg2py/_abc}/__init__.py +2 -2
  6. cpg2py-1.2.0/cpg2py/_abc/edge.py +96 -0
  7. cpg2py-1.2.0/cpg2py/_abc/graph.py +247 -0
  8. cpg2py-1.2.0/cpg2py/_abc/node.py +75 -0
  9. cpg2py-1.2.0/cpg2py/_abc/storage.py +258 -0
  10. cpg2py-1.2.0/cpg2py/_cpg/__init__.py +5 -0
  11. cpg2py-1.2.0/cpg2py/_cpg/edge.py +31 -0
  12. cpg2py-1.2.0/cpg2py/_cpg/graph.py +183 -0
  13. cpg2py-1.2.0/cpg2py/_cpg/node.py +66 -0
  14. cpg2py-1.2.0/cpg2py/_exceptions.py +43 -0
  15. cpg2py-1.2.0/cpg2py/_logger.py +53 -0
  16. cpg2py-1.2.0/cpg2py.egg-info/PKG-INFO +180 -0
  17. cpg2py-1.2.0/cpg2py.egg-info/SOURCES.txt +27 -0
  18. cpg2py-1.2.0/cpg2py.egg-info/requires.txt +11 -0
  19. cpg2py-1.2.0/pyproject.toml +144 -0
  20. cpg2py-1.2.0/tests/test_edge.py +208 -0
  21. cpg2py-1.2.0/tests/test_exceptions.py +161 -0
  22. cpg2py-1.2.0/tests/test_generics.py +201 -0
  23. cpg2py-1.2.0/tests/test_graph.py +678 -0
  24. cpg2py-1.2.0/tests/test_node.py +341 -0
  25. cpg2py-1.2.0/tests/test_storage.py +854 -0
  26. cpg2py-1.0.5/PKG-INFO +0 -261
  27. cpg2py-1.0.5/README.md +0 -222
  28. cpg2py-1.0.5/cpg2py/__init__.py +0 -40
  29. cpg2py-1.0.5/cpg2py/abc/edge.py +0 -39
  30. cpg2py-1.0.5/cpg2py/abc/graph.py +0 -98
  31. cpg2py-1.0.5/cpg2py/abc/node.py +0 -26
  32. cpg2py-1.0.5/cpg2py/abc/storage.py +0 -153
  33. cpg2py-1.0.5/cpg2py/cpg/__init__.py +0 -3
  34. cpg2py-1.0.5/cpg2py/cpg/edge.py +0 -31
  35. cpg2py-1.0.5/cpg2py/cpg/graph.py +0 -97
  36. cpg2py-1.0.5/cpg2py/cpg/node.py +0 -65
  37. cpg2py-1.0.5/cpg2py.egg-info/PKG-INFO +0 -261
  38. cpg2py-1.0.5/cpg2py.egg-info/SOURCES.txt +0 -19
  39. cpg2py-1.0.5/pyproject.toml +0 -24
  40. cpg2py-1.0.5/setup.py +0 -20
  41. {cpg2py-1.0.5 → cpg2py-1.2.0}/MANIFEST.in +0 -0
  42. {cpg2py-1.0.5 → cpg2py-1.2.0}/cpg2py.egg-info/dependency_links.txt +0 -0
  43. {cpg2py-1.0.5 → cpg2py-1.2.0}/cpg2py.egg-info/top_level.txt +0 -0
  44. {cpg2py-1.0.5 → cpg2py-1.2.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Yichao Xu
3
+ Copyright (c) 2025 samhsu-dev
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
cpg2py-1.2.0/PKG-INFO ADDED
@@ -0,0 +1,180 @@
1
+ Metadata-Version: 2.4
2
+ Name: cpg2py
3
+ Version: 1.2.0
4
+ Summary: A graph-based data structure designed for querying CSV files in Joern format in Python
5
+ Author-email: samhsu-dev <yxu166@jhu.edu>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2025 samhsu-dev
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Project-URL: Homepage, https://github.com/samhsu-dev/cpg2py
29
+ Project-URL: Repository, https://github.com/samhsu-dev/cpg2py
30
+ Project-URL: Documentation, https://github.com/samhsu-dev/cpg2py
31
+ Keywords: Joern,CPG,Graph,CSV
32
+ Classifier: Development Status :: 4 - Beta
33
+ Classifier: Intended Audience :: Developers
34
+ Classifier: License :: OSI Approved :: MIT License
35
+ Classifier: Programming Language :: Python :: 3
36
+ Classifier: Programming Language :: Python :: 3.8
37
+ Classifier: Programming Language :: Python :: 3.9
38
+ Classifier: Programming Language :: Python :: 3.10
39
+ Classifier: Programming Language :: Python :: 3.11
40
+ Classifier: Programming Language :: Python :: 3.12
41
+ Classifier: Programming Language :: Python :: 3.13
42
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
43
+ Requires-Python: >=3.8
44
+ Description-Content-Type: text/markdown
45
+ License-File: LICENSE
46
+ Provides-Extra: test
47
+ Requires-Dist: pytest>=7.4.0; extra == "test"
48
+ Requires-Dist: pytest-cov>=4.0.0; extra == "test"
49
+ Provides-Extra: dev
50
+ Requires-Dist: pytest>=7.4.0; extra == "dev"
51
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
52
+ Requires-Dist: black>=23.0.0; extra == "dev"
53
+ Requires-Dist: isort>=5.12.0; extra == "dev"
54
+ Requires-Dist: pylint>=2.17.0; extra == "dev"
55
+ Dynamic: license-file
56
+
57
+ # cpg2py
58
+
59
+ Python graph query engine for Code Property Graphs from Joern CSV exports. Directed multi-graph with generic ABCs for custom node/edge/graph types.
60
+
61
+ **Features**: Load from `nodes.csv` + `rels.csv`; query/update nodes and edges (`get_property`, `set_property`, `set_properties`); traverse succ/prev/children/parent/flow_to/flow_from; JSON persistence (`save_json`, `load_json`, `storage_from_json`). Concrete types: `CpgGraph`, `CpgNode`, `CpgEdge`.
62
+
63
+ ---
64
+
65
+ ## Installation
66
+
67
+ ```bash
68
+ pip install cpg2py
69
+ ```
70
+
71
+ From source (e.g. with [uv](https://github.com/astral-sh/uv)):
72
+
73
+ ```bash
74
+ git clone https://github.com/samhsu-dev/cpg2py.git && cd cpg2py
75
+ uv sync --dev
76
+ uv run pytest tests/
77
+ ```
78
+
79
+ ---
80
+
81
+ ## Input format
82
+
83
+ - **nodes.csv**: tab-delimited; must include node id (e.g. `id:int` or `id`). Other columns become node properties.
84
+ - **rels.csv**: tab-delimited; columns `start`, `end`, `type` (or `start:str`, `end:str`, `type:str`).
85
+
86
+ ---
87
+
88
+ ## Usage
89
+
90
+ **Load from CSV**
91
+
92
+ ```python
93
+ from pathlib import Path
94
+ from cpg2py import cpg_graph, CpgGraph, CpgNode, CpgEdge
95
+
96
+ graph: CpgGraph = cpg_graph(Path("nodes.csv"), Path("rels.csv"))
97
+ ```
98
+
99
+ **Nodes and edges** (edge identified by `(from_id, to_id, edge_type)`; `edge_type` is string)
100
+
101
+ ```python
102
+ node: CpgNode = graph.node("2")
103
+ node.name
104
+ node.set_property("name", "x")
105
+ node.set_properties({"k": "v"})
106
+
107
+ edge: CpgEdge = graph.edge("2", "3", "ENTRY")
108
+ edge.from_nid, edge.to_nid, edge.type
109
+ edge.set_property("weight", 0.5)
110
+ ```
111
+
112
+ **Traversal**
113
+
114
+ ```python
115
+ graph.succ(node) # successors
116
+ graph.prev(node) # predecessors
117
+ graph.children(node)
118
+ graph.parent(node)
119
+ graph.flow_to(node)
120
+ graph.flow_from(node)
121
+ graph.topfile_node("5") # top-level file node for given node ID
122
+ ```
123
+
124
+ **Filtered iteration** (optional predicate)
125
+
126
+ ```python
127
+ graph.nodes(lambda n: n.type == "Function")
128
+ graph.edges(lambda e: e.edge_type == "FLOWS_TO")
129
+ graph.succ(node, who_satisifies=lambda e: e.edge_type == "PARENT_OF")
130
+ graph.descendants(node, condition=...)
131
+ graph.ancestors(node, condition=...)
132
+ ```
133
+
134
+ **JSON persistence**
135
+
136
+ ```python
137
+ graph.storage.save_json("graph.json")
138
+
139
+ storage = Storage()
140
+ storage.load_json("graph.json")
141
+ graph2 = CpgGraph(storage)
142
+
143
+ # or
144
+ storage = storage_from_json(Path("graph.json"))
145
+ ```
146
+
147
+ JSON schema: `{"nodes": { "<id>": { "<key>": <value>, ... }, ... }, "edges": [ {"from": str, "to": str, "type": str, "props": {...} }, ... ]}`. See [design.md](docs/design.md).
148
+
149
+ ---
150
+
151
+ ## Extending (ABCs)
152
+
153
+ Implement `AbcGraphQuerier[MyNode, MyEdge]`, `AbcNodeQuerier`, `AbcEdgeQuerier`; inject `Storage`. Full interface and contracts: [docs/design.md](docs/design.md).
154
+
155
+ Minimal custom graph:
156
+
157
+ ```python
158
+ from cpg2py import AbcGraphQuerier, AbcNodeQuerier, AbcEdgeQuerier, Storage
159
+ from typing import Optional
160
+
161
+ class MyNode(AbcNodeQuerier): pass
162
+ class MyEdge(AbcEdgeQuerier): pass
163
+
164
+ class MyGraph(AbcGraphQuerier[MyNode, MyEdge]):
165
+ def node(self, whose_id_is: str) -> Optional[MyNode]:
166
+ return MyNode(self.storage, whose_id_is)
167
+ def edge(self, fid: str, tid: str, eid: str) -> Optional[MyEdge]:
168
+ return MyEdge(self.storage, fid, tid, eid)
169
+
170
+ g = MyGraph(Storage())
171
+ ```
172
+
173
+ ---
174
+
175
+ Interface specifications (classes, methods, signatures, validation): [docs/design.md](docs/design.md).
176
+
177
+ ---
178
+
179
+ ## License
180
+ MIT.
cpg2py-1.2.0/README.md ADDED
@@ -0,0 +1,124 @@
1
+ # cpg2py
2
+
3
+ Python graph query engine for Code Property Graphs from Joern CSV exports. Directed multi-graph with generic ABCs for custom node/edge/graph types.
4
+
5
+ **Features**: Load from `nodes.csv` + `rels.csv`; query/update nodes and edges (`get_property`, `set_property`, `set_properties`); traverse succ/prev/children/parent/flow_to/flow_from; JSON persistence (`save_json`, `load_json`, `storage_from_json`). Concrete types: `CpgGraph`, `CpgNode`, `CpgEdge`.
6
+
7
+ ---
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ pip install cpg2py
13
+ ```
14
+
15
+ From source (e.g. with [uv](https://github.com/astral-sh/uv)):
16
+
17
+ ```bash
18
+ git clone https://github.com/samhsu-dev/cpg2py.git && cd cpg2py
19
+ uv sync --dev
20
+ uv run pytest tests/
21
+ ```
22
+
23
+ ---
24
+
25
+ ## Input format
26
+
27
+ - **nodes.csv**: tab-delimited; must include node id (e.g. `id:int` or `id`). Other columns become node properties.
28
+ - **rels.csv**: tab-delimited; columns `start`, `end`, `type` (or `start:str`, `end:str`, `type:str`).
29
+
30
+ ---
31
+
32
+ ## Usage
33
+
34
+ **Load from CSV**
35
+
36
+ ```python
37
+ from pathlib import Path
38
+ from cpg2py import cpg_graph, CpgGraph, CpgNode, CpgEdge
39
+
40
+ graph: CpgGraph = cpg_graph(Path("nodes.csv"), Path("rels.csv"))
41
+ ```
42
+
43
+ **Nodes and edges** (edge identified by `(from_id, to_id, edge_type)`; `edge_type` is string)
44
+
45
+ ```python
46
+ node: CpgNode = graph.node("2")
47
+ node.name
48
+ node.set_property("name", "x")
49
+ node.set_properties({"k": "v"})
50
+
51
+ edge: CpgEdge = graph.edge("2", "3", "ENTRY")
52
+ edge.from_nid, edge.to_nid, edge.type
53
+ edge.set_property("weight", 0.5)
54
+ ```
55
+
56
+ **Traversal**
57
+
58
+ ```python
59
+ graph.succ(node) # successors
60
+ graph.prev(node) # predecessors
61
+ graph.children(node)
62
+ graph.parent(node)
63
+ graph.flow_to(node)
64
+ graph.flow_from(node)
65
+ graph.topfile_node("5") # top-level file node for given node ID
66
+ ```
67
+
68
+ **Filtered iteration** (optional predicate)
69
+
70
+ ```python
71
+ graph.nodes(lambda n: n.type == "Function")
72
+ graph.edges(lambda e: e.edge_type == "FLOWS_TO")
73
+ graph.succ(node, who_satisifies=lambda e: e.edge_type == "PARENT_OF")
74
+ graph.descendants(node, condition=...)
75
+ graph.ancestors(node, condition=...)
76
+ ```
77
+
78
+ **JSON persistence**
79
+
80
+ ```python
81
+ graph.storage.save_json("graph.json")
82
+
83
+ storage = Storage()
84
+ storage.load_json("graph.json")
85
+ graph2 = CpgGraph(storage)
86
+
87
+ # or
88
+ storage = storage_from_json(Path("graph.json"))
89
+ ```
90
+
91
+ JSON schema: `{"nodes": { "<id>": { "<key>": <value>, ... }, ... }, "edges": [ {"from": str, "to": str, "type": str, "props": {...} }, ... ]}`. See [design.md](docs/design.md).
92
+
93
+ ---
94
+
95
+ ## Extending (ABCs)
96
+
97
+ Implement `AbcGraphQuerier[MyNode, MyEdge]`, `AbcNodeQuerier`, `AbcEdgeQuerier`; inject `Storage`. Full interface and contracts: [docs/design.md](docs/design.md).
98
+
99
+ Minimal custom graph:
100
+
101
+ ```python
102
+ from cpg2py import AbcGraphQuerier, AbcNodeQuerier, AbcEdgeQuerier, Storage
103
+ from typing import Optional
104
+
105
+ class MyNode(AbcNodeQuerier): pass
106
+ class MyEdge(AbcEdgeQuerier): pass
107
+
108
+ class MyGraph(AbcGraphQuerier[MyNode, MyEdge]):
109
+ def node(self, whose_id_is: str) -> Optional[MyNode]:
110
+ return MyNode(self.storage, whose_id_is)
111
+ def edge(self, fid: str, tid: str, eid: str) -> Optional[MyEdge]:
112
+ return MyEdge(self.storage, fid, tid, eid)
113
+
114
+ g = MyGraph(Storage())
115
+ ```
116
+
117
+ ---
118
+
119
+ Interface specifications (classes, methods, signatures, validation): [docs/design.md](docs/design.md).
120
+
121
+ ---
122
+
123
+ ## License
124
+ MIT.
@@ -0,0 +1,103 @@
1
+ from csv import DictReader
2
+ from pathlib import Path
3
+ from typing import Union
4
+
5
+ from ._abc import Storage
6
+ from ._abc import AbcEdgeQuerier, AbcGraphQuerier, AbcNodeQuerier
7
+ from ._cpg import CpgEdge, CpgGraph, CpgNode
8
+ from ._exceptions import CPGError, EdgeNotFoundError, NodeNotFoundError, TopFileNotFoundError
9
+ from ._logger import get_logger
10
+
11
+ logger = get_logger(__name__)
12
+
13
+
14
+ def storage_from_json(path: Union[Path, str]) -> Storage:
15
+ """
16
+ Creates a Storage instance populated from a JSON file.
17
+
18
+ Args:
19
+ path: Path to JSON file (Path or str).
20
+
21
+ Returns:
22
+ New Storage instance containing the graph.
23
+
24
+ Raises:
25
+ OSError: If the file cannot be read.
26
+ ValueError: If JSON structure is invalid (missing "nodes" or "edges").
27
+ KeyError: If an edge object is missing "from", "to", or "type".
28
+ """
29
+ storage = Storage()
30
+ storage.load_json(path)
31
+ return storage
32
+
33
+
34
+ def cpg_graph(node_csv: Path, edge_csv: Path, verbose: bool = False) -> CpgGraph:
35
+ """
36
+ Creates a CPG graph from CSV files.
37
+
38
+ Args:
39
+ node_csv: Path to the nodes CSV file
40
+ edge_csv: Path to the edges CSV file
41
+ verbose: If True, log warnings for duplicate nodes/edges
42
+
43
+ Returns:
44
+ Graph instance loaded from CSV files
45
+ """
46
+ storage = Storage()
47
+ with open(node_csv, "r", encoding="utf-8") as n_file:
48
+ reader = DictReader(n_file, delimiter="\t")
49
+ for node_props in reader:
50
+ nid = node_props.get("id:int", None)
51
+ if nid is None:
52
+ nid = node_props.get("id")
53
+ if nid is None:
54
+ continue
55
+ if not storage.add_node(nid) and verbose:
56
+ logger.warning("Node %s already exists in the graph", nid)
57
+ if not storage.set_node_props(nid, node_props) and verbose:
58
+ logger.warning("Failed to set properties for node %s", nid)
59
+ with open(edge_csv, "r", encoding="utf-8") as f:
60
+ reader = DictReader(f, delimiter="\t")
61
+ for edge_props in reader:
62
+ f_nid = str(edge_props.get("start", None))
63
+ if f_nid is None:
64
+ f_nid = str(edge_props.get("start:str"))
65
+ t_nid = str(edge_props.get("end", None))
66
+ if t_nid is None:
67
+ t_nid = str(edge_props.get("end:str"))
68
+ e_type = str(edge_props.get("type", None))
69
+ if e_type is None:
70
+ e_type = str(edge_props.get("type:str"))
71
+ edge_id = (f_nid, t_nid, e_type)
72
+ if not storage.contains_node(edge_id[0]):
73
+ storage.add_node(edge_id[0])
74
+ if verbose:
75
+ logger.warning("Node %s does not exist", edge_id[0])
76
+ if not storage.contains_node(edge_id[1]):
77
+ storage.add_node(edge_id[1])
78
+ if verbose:
79
+ logger.warning("Node %s does not exist", edge_id[1])
80
+ if not storage.add_edge(edge_id):
81
+ if verbose:
82
+ logger.warning("Edge %s -> %s already exists in the graph", f_nid, t_nid)
83
+ if not storage.set_edge_props(edge_id, edge_props):
84
+ if verbose:
85
+ logger.warning("Failed to set properties for edge %s", edge_id)
86
+ return CpgGraph(storage)
87
+
88
+
89
+ __all__ = [
90
+ "cpg_graph",
91
+ "storage_from_json",
92
+ "CpgGraph",
93
+ "CpgNode",
94
+ "CpgEdge",
95
+ "AbcGraphQuerier",
96
+ "AbcNodeQuerier",
97
+ "AbcEdgeQuerier",
98
+ "Storage",
99
+ "CPGError",
100
+ "NodeNotFoundError",
101
+ "EdgeNotFoundError",
102
+ "TopFileNotFoundError",
103
+ ]
@@ -1,6 +1,6 @@
1
+ from .edge import AbcEdgeQuerier
1
2
  from .graph import AbcGraphQuerier
2
3
  from .node import AbcNodeQuerier
3
- from .edge import AbcEdgeQuerier
4
4
  from .storage import Storage
5
5
 
6
- __all__ = ["Storage", "AbcGraphQuerier", "AbcNodeQuerier", "AbcEdgeQuerier"]
6
+ __all__ = ["Storage", "AbcGraphQuerier", "AbcNodeQuerier", "AbcEdgeQuerier"]
@@ -0,0 +1,96 @@
1
+ from __future__ import annotations
2
+
3
+ import abc
4
+ from typing import Any, Dict, Optional, Tuple
5
+
6
+ from .._exceptions import EdgeNotFoundError
7
+ from .storage import Storage
8
+
9
+
10
+ class AbcEdgeQuerier(abc.ABC):
11
+ """
12
+ Abstract base class for edge property access, queries, and updates.
13
+ """
14
+
15
+ def __init__(self, graph: Storage, f_nid: str, t_nid: str, e_type: str) -> None:
16
+ """
17
+ Initializes edge querier and validates edge existence.
18
+
19
+ Args:
20
+ graph: Storage instance containing the graph.
21
+ f_nid: Source node ID.
22
+ t_nid: Target node ID.
23
+ e_type: Edge type string.
24
+
25
+ Raises:
26
+ EdgeNotFoundError: If edge does not exist in the graph.
27
+ """
28
+ self.__graph: Storage = graph
29
+ self.__edge_id: Tuple[str, str, str] = (str(f_nid), str(t_nid), str(e_type))
30
+ if not graph.contains_edge(self.__edge_id):
31
+ raise EdgeNotFoundError(f_nid, t_nid, e_type)
32
+
33
+ @property
34
+ def edge_id(self) -> Tuple[str, str, str]:
35
+ """
36
+ Returns the edge identifier tuple (from_nid, to_nid, edge_type).
37
+ """
38
+ return self.__edge_id
39
+
40
+ @property
41
+ def from_nid(self) -> str:
42
+ """Returns the source node identifier."""
43
+ return self.__edge_id[0]
44
+
45
+ @property
46
+ def to_nid(self) -> str:
47
+ """Returns the target node identifier."""
48
+ return self.__edge_id[1]
49
+
50
+ @property
51
+ def edge_type(self) -> str:
52
+ """Returns the edge type string."""
53
+ return self.__edge_id[2]
54
+
55
+ @property
56
+ def properties(self) -> Optional[Dict[str, Any]]:
57
+ """Returns all edge properties dictionary, or None if not found."""
58
+ return self.__graph.get_edge_props(self.__edge_id)
59
+
60
+ def get_property(self, *prop_names: str) -> Optional[Any]:
61
+ """
62
+ Returns first found property value trying multiple name alternatives.
63
+
64
+ Args:
65
+ prop_names: Property name alternatives to try.
66
+
67
+ Returns:
68
+ First found value, or None if none found.
69
+ """
70
+ prop_values = (self.__graph.get_edge_prop(self.__edge_id, p_name) for p_name in prop_names)
71
+ return next((value for value in prop_values if value is not None), None)
72
+
73
+ def set_property(self, key: str, value: Any) -> bool:
74
+ """
75
+ Sets single edge property value.
76
+
77
+ Args:
78
+ key: Property key.
79
+ value: Property value.
80
+
81
+ Returns:
82
+ True if property was set, False if edge does not exist.
83
+ """
84
+ return self.__graph.set_edge_prop(self.__edge_id, key, value)
85
+
86
+ def set_properties(self, props: Dict[str, Any]) -> bool:
87
+ """
88
+ Updates multiple edge properties at once.
89
+
90
+ Args:
91
+ props: Dictionary of property key-value pairs.
92
+
93
+ Returns:
94
+ True if properties were updated, False if edge does not exist.
95
+ """
96
+ return self.__graph.set_edge_props(self.__edge_id, props)