Crate py_raphtory

source ·

Modules

  • The edge module contains the PyEdge class, which is used to represent edges in the graph and provides access to the edge’s properties and vertices.
  • Defines the Graph struct, which represents a raphtory graph in memory.
  • Provides functionality for generating graphs for testing and benchmarking. Allows us to generate graphs using the preferential attachment model and the random attachment model.
  • GraphLoader provides some default implementations for loading a pre-built graph. This base class is used to load in-built graphs such as the LOTR, reddit and StackOverflow.
  • The API for querying a view of the graph in a read-only state
  • Helper functions for the Python bindings.
  • Defines the Vertex, which represents a vertex in the graph. A vertex is a node in the graph, and can have properties and edges. It can also be used to navigate the graph.