Skip to main content

Ganymede SDK

The Ganymede SDK offers a suite of methods for interacting with Ganymede directly from editor and analysis notebooks.

from ganymede_sdk import Ganymede
tip

You can introspect functions directly within a notebook by using ? or ?? before the function name in a notebook cell. For example:

from ganymede_sdk import Ganymede

g = Ganymede()

# shows function signature and docstring
?g.retrieve_sql
Explore documentation
# shows function signature and source code
??g
Function Signature and Source Code