e.g. from pyraphtory.algorithms import triangle_count is not working because of a pyo3 issue. Need a hack around this so that we can call submodules from pyraphtory.
Otherwise, we have to import the module and then call the specific algorithm from the algorithm module:
from pyraphtory import algorithms
algorithms.triangle_count()
e.g.
from pyraphtory.algorithms import triangle_countis not working because of a pyo3 issue. Need a hack around this so that we can call submodules from pyraphtory.Otherwise, we have to import the module and then call the specific algorithm from the algorithm module:
from pyraphtory import algorithmsalgorithms.triangle_count()