Skip to content

Commit 99a6ace

Browse files
committed
Update notebooks
1 parent 4d76f64 commit 99a6ace

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

doc/modules/ROOT/pages/tutorials/gds-sessions-self-managed.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,11 @@ what that looks like
113113

114114
[source, python, role=no-test]
115115
----
116-
sessions.list()
116+
gds_sessions = sessions.list()
117+
118+
# Display the sessions
119+
from pandas import DataFrame
120+
DataFrame(gds_sessions)
117121
----
118122

119123
== Adding a dataset

doc/modules/ROOT/pages/tutorials/gds-sessions.adoc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ GDS sessions feature enabled for your tenant. Contact your account
3030
manager to get the features enabled.
3131

3232
We also need to have the `+graphdatascience+` Python library installed,
33-
version `+1.11+` or later.
33+
version `+1.12a1+` or later.
3434

3535
[source, python, role=no-test]
3636
----
37-
%pip install "graphdatascience>=1.11"
37+
%pip install "graphdatascience>=1.12a1"
3838
----
3939

4040
== Aura API credentials
@@ -111,6 +111,10 @@ what that looks like
111111
[source, python, role=no-test]
112112
----
113113
sessions.list()
114+
115+
# Display the sessions
116+
from pandas import DataFrame
117+
DataFrame(sessions)
114118
----
115119

116120
== Adding a dataset

0 commit comments

Comments
 (0)