Feature: None
for edge_ids
argument for extended add_edges_from
implementation
#290
Open
2 of 3 tasks
Labels
enhancement
New feature or request
Describe what you are looking for
AFAIK
add_edges_from
provide 2 interfaces.First here
It requires
source_ids
,target_ids
, and optionallyedge_ids
that could be set asNone
explicitlygraph.add_edges_from([1, 2, 3], [2, 3, 4], None)
.Second here
But here, if I try to omit third positional argument or pass
None
, the exceptionValueError: Edge Ids Must Be Sequence
occurs.Example:
Could you add support for
None
for latter interface, because it could be redundant for client to generate and maintainedges_ids
.Can you contribute to the implementation?
Is your feature request specific to a certain interface?
Official Python bindings
Contact Details
No response
Is there an existing issue for this?
Code of Conduct
The text was updated successfully, but these errors were encountered: