Skip to content

Commit eeb7446

Browse files
committed
major fixes
1 parent 331cb14 commit eeb7446

File tree

4 files changed

+1075
-214
lines changed

4 files changed

+1075
-214
lines changed
+32-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,47 @@
1+
import pandas as pd
12
from yfiles_jupyter_graphs_for_neo4j import Neo4jGraphWidget
23
from neo4j import GraphDatabase
34
from yfiles_jupyter_graphs import GraphWidget
45
from IPython.core.magic import (register_line_magic,
56
register_cell_magic)
67

8+
9+
710
driver = GraphDatabase.driver(uri = "neo4j://localhost")
811

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())
1224
graph_widget.set_sidebar(enabled=False, start_with='Data')
25+
print_counters(query_graph_result.consume().counters)
1326
display(graph_widget)
1427
return graph_widget
1528

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+
1639
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)
1945

2046
def load_ipython_extension(ipython):
2147
"""This function is called when the extension is
@@ -24,4 +50,4 @@ def load_ipython_extension(ipython):
2450
`register_magic_function` method of the shell
2551
instance."""
2652
ipython.register_magic_function(cypher, 'cell')
27-
53+

labs/pt-br/1.Cypher Basics-Copy1.ipynb

+1-36
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
{
1818
"cell_type": "code",
19-
"execution_count": 2,
19+
"execution_count": 1,
2020
"metadata": {
2121
"tags": []
2222
},
@@ -26,30 +26,6 @@
2626
"from datasci4health.graphdrawer.visgraph import draw"
2727
]
2828
},
29-
{
30-
"cell_type": "code",
31-
"execution_count": 3,
32-
"metadata": {
33-
"tags": []
34-
},
35-
"outputs": [
36-
{
37-
"name": "stderr",
38-
"output_type": "stream",
39-
"text": [
40-
"<ipython-input-3-548a69b4459e>:5: ExperimentalWarning: The configuration may change in the future.\n",
41-
" driver.verify_connectivity()\n"
42-
]
43-
}
44-
],
45-
"source": [
46-
"from neo4j import GraphDatabase\n",
47-
"\n",
48-
"URI = \"neo4j://localhost\"\n",
49-
"with GraphDatabase.driver(URI) as driver:\n",
50-
" driver.verify_connectivity()"
51-
]
52-
},
5329
{
5430
"cell_type": "code",
5531
"execution_count": 4,
@@ -86,17 +62,6 @@
8662
"https://ipython-cypher.readthedocs.io/en/latest/introduction.html\n"
8763
]
8864
},
89-
{
90-
"cell_type": "code",
91-
"execution_count": 5,
92-
"metadata": {
93-
"tags": []
94-
},
95-
"outputs": [],
96-
"source": [
97-
"!python -m graph_notebook.ipython_profile.configure_ipython_profile"
98-
]
99-
},
10065
{
10166
"cell_type": "code",
10267
"execution_count": 6,

0 commit comments

Comments
 (0)