EGI.vertex_attributes
- EGI.vertex_attributes(key, names=None, values=None)
Get or set multiple attributes of a vertex.
- Parameters
key (int) – The identifier of the vertex.
names (list, optional) – A list of attribute names.
values (list, optional) – A list of attribute values.
- Returns
dict, list or None – If the parameter
names
is empty, the function returns a dictionary of all attribute name-value pairs of the vertex. If the parameternames
is not empty, the function returns a list of the values corresponding to the requested attribute names. The function returnsNone
if it is used as a “setter”.- Raises
KeyError – If the vertex does not exist.