1
+ import pandas as pd
1
2
from yfiles_jupyter_graphs_for_neo4j import Neo4jGraphWidget
2
3
from neo4j import GraphDatabase
3
4
from yfiles_jupyter_graphs import GraphWidget
4
5
from IPython .core .magic import (register_line_magic ,
5
6
register_cell_magic )
6
7
8
+
9
+
7
10
driver = GraphDatabase .driver (uri = "neo4j://localhost" )
8
11
9
- def query_neo4j (cypher_query : str ):
10
- query_graph_result = driver .session ().run (cypher_query ).graph ()
11
- graph_widget = GraphWidget (overview_enabled = False , context_start_with = 'Data' , graph = query_graph_result )
12
+ def print_counters (counters ):
13
+ for attr in dir (counters ):
14
+ # Filter out private methods and attributes
15
+ if not attr .startswith ('_' ):
16
+ value = getattr (counters , attr )
17
+ if isinstance (value , int ):
18
+ if value > 0 :
19
+ print (f"{ attr .replace ('_' , ' ' ).capitalize ()} : { value } " )
20
+
21
+ def query_neo4j_output_graph (cypher_query : str ):
22
+ query_graph_result = driver .session ().run (cypher_query )
23
+ graph_widget = GraphWidget (overview_enabled = False , context_start_with = 'Data' , graph = query_graph_result .graph ())
12
24
graph_widget .set_sidebar (enabled = False , start_with = 'Data' )
25
+ print_counters (query_graph_result .consume ().counters )
13
26
display (graph_widget )
14
27
return graph_widget
15
28
29
+ def query_neo4j_output_table (cypher_query : str ):
30
+ query_graph_result = driver .session ().run (cypher_query )
31
+ df = pd .DataFrame (query_graph_result .data ())
32
+ pd .set_option ('display.max_colwidth' , None )
33
+ print_counters (query_graph_result .consume ().counters )
34
+ display (df )
35
+ return df
36
+
37
+
38
+
16
39
def cypher (line , cell_content ):
17
- print (line )
18
- query_neo4j (cell_content )
40
+
41
+ if line == 'graph' :
42
+ query_neo4j_output_graph (cell_content )
43
+ else :
44
+ query_neo4j_output_table (cell_content )
19
45
20
46
def load_ipython_extension (ipython ):
21
47
"""This function is called when the extension is
@@ -24,4 +50,4 @@ def load_ipython_extension(ipython):
24
50
`register_magic_function` method of the shell
25
51
instance."""
26
52
ipython .register_magic_function (cypher , 'cell' )
27
-
53
+
0 commit comments