<!-- .github/pull_request_template.md --> ## Description PR from user jspv, running it through our branch to test CI/CD ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin. --------- Signed-off-by: Diego B Theuerkauf <diego.theuerkauf@tuebingen.mpg.de> Co-authored-by: Boris <boris@topoteretes.com> Co-authored-by: vasilije <vas.markovic@gmail.com> Co-authored-by: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Co-authored-by: Hande <159312713+hande-k@users.noreply.github.com> Co-authored-by: Matea Pesic <80577904+matea16@users.noreply.github.com> Co-authored-by: hajdul88 <52442977+hajdul88@users.noreply.github.com> Co-authored-by: Daniel Molnar <soobrosa@gmail.com> Co-authored-by: Diego Baptista Theuerkauf <34717973+diegoabt@users.noreply.github.com> Co-authored-by: Dmitrii Galkin <36552323+dm1tryG@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: lxobr <122801072+lxobr@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions@users.noreply.github.com> Co-authored-by: jspv <jspvgithub@twinleaf.xyz>
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
from cognee.modules.visualization.cognee_network_visualization import (
|
|
cognee_network_visualization,
|
|
)
|
|
from cognee.infrastructure.databases.graph import get_graph_engine
|
|
from cognee.shared.logging_utils import get_logger, setup_logging, ERROR
|
|
|
|
|
|
import asyncio
|
|
|
|
|
|
logger = get_logger()
|
|
|
|
|
|
async def visualize_graph(destination_file_path: str = None):
|
|
graph_engine = await get_graph_engine()
|
|
graph_data = await graph_engine.get_graph_data()
|
|
|
|
graph = await cognee_network_visualization(graph_data, destination_file_path)
|
|
|
|
if destination_file_path:
|
|
logger.info(f"The HTML file has been stored at path: {destination_file_path}")
|
|
else:
|
|
logger.info(
|
|
"The HTML file has been stored on your home directory! Navigate there with cd ~"
|
|
)
|
|
|
|
return graph
|
|
|
|
|
|
if __name__ == "__main__":
|
|
logger = setup_logging(log_level=ERROR)
|
|
loop = asyncio.new_event_loop()
|
|
asyncio.set_event_loop(loop)
|
|
try:
|
|
loop.run_until_complete(visualize_graph())
|
|
finally:
|
|
loop.run_until_complete(loop.shutdown_asyncgens())
|