Skip to main content

Visually query Spanner Graph data in notebooks.

Reason this release was yanked:

bug fix

Project description

Spanner Graph Notebook: Explore Your Data Visually

The Spanner Graph Notebook tool lets you visually query Spanner Graph in a notebook environment (e.g. Google Colab and Jupyter Notebook).

Using GQL query syntax, you can extract graph insights and relationship patterns, including node and edge properties and neighbor expansion analysis. The tool also provides graph schema metadata visualization, tabular results inspection and diverse layout topologies.

The notebook visualization provides a user experience similar to Spanner Studio visualization, enabling you to visually inspect Spanner Graph data outside of Google Cloud console.

Table of Contents

Prerequisites

You need a Spanner database with graph schema and data. The Getting started with Spanner Graph codelab or the Set up and query Spanner Graph page walks through the setup process.

Google Colab Usage (Installation-Free)

You can directly use %%spanner_graph magic command to visualize graph query results in Google Colab. The magic command must provide GCP resource options and a query string:

  • a Google Cloud Project ID for --project option.
  • a Spanner Instance ID for --instance option.
  • a Spanner database name for --database option.
  • a GQL query string that returns graph elements as results.

The query must return graph elements in JSON format using the SAFE_TO_JSON or TO_JSON function. The following example code cell in Colab visualizes account transfers:

%%spanner_graph --project my-gcp-project --instance my-spanner-instance --database my-database

GRAPH FinGraph
MATCH result_paths = (src:Account {is_blocked: true})-[:Transfers]->(dest:Account)
RETURN SAFE_TO_JSON(result_paths) AS result_paths

You'll be prompted to authenticate via pydata-google-auth if Google Cloud Platform credentials aren't readily available.

Installation and Usage in Jupyter Notebook or JupyterLab

Install the package

Follow the commands below to create a managed Python environment (example based on virtualenv) and install spanner-graph-notebook.

# Create the virtualenv `viz`.
python3 -m venv viz

# Activate the virtualenv.
source viz/bin/activate

# Install dependencies.
pip install spanner-graph-notebook

Launch Jupyter Notebook

When in the root directory of the package, run jupyter notebook or jupyter lab to launch your Jupyter notebook environment.

jupyter notebook

As Jupyter local server runs, it will open up a web portal. You can step through an example notebook sample.ipynb.

You must run %load_ext spanner_graphs to load this package. sample.ipynb contains this cell already.

Following the code steps in the sample notebook, you can visually inspect a mock dataset or your Spanner Graph. You'll be prompted to authenticate via pydata-google-auth if Google Cloud Platform credentials aren't readily available.

Query Requirements

Use TO_JSON function to return graph elements

Graph queries must use SAFE_TO_JSON or TO_JSON function to return graph elements in JSON format . We recommend visualizing graph paths for data completeness and ease of use.

👍 Good example returning a path as JSON.


GRAPH FinGraph
MATCH query_path = (person:Person {id: 5})-[owns:Owns]->(accnt:Account)
RETURN SAFE_TO_JSON(query_path) AS path_json
👍 Good example returning a path as JSON in a multiple-hop query.

GRAPH FinGraph
MATCH query_path = (src:Account {id: 9})-[edge]->{1,3}(dst:Account)
RETURN SAFE_TO_JSON(query_path) as path_json
👍 Good example returning multiple paths as JSON.

GRAPH FinGraph
MATCH path_1 = (person:Person {id: 5})-[:Owns]->(accnt:Account),
      path_2 = (src:Account {id: 9})-[:Transfers]->(dst:Account)
RETURN SAFE_TO_JSON(path_1) as path_1,
       SAFE_TO_JSON(path_2) as path_2
👎 Anti-example returning node properties rather than graph elements in JSON.
   Scalar intergers or strings cannot be visualized.

GRAPH FinGraph
MATCH (person:Person {id: 5})-[owns:Owns]->(accnt:Account)
RETURN person.id AS person,
       owns.amount AS owns,
       accnt.id AS accnt;
👎 Anti-example returning each node and edges in JSON individually.
   This will work but is more verbose than returning paths.

GRAPH FinGraph
MATCH (person:Person {id: 5})-[owns:Owns]->(accnt:Account)
RETURN SAFE_TO_JSON(person) AS person_json,
       SAFE_TO_JSON(owns) AS owns_json,
       SAFE_TO_JSON(accnt) AS accnt_json,

Testing changes

First, install the test dependencies:

pip install -r requirements-test.txt

Then run unit and integration tests with the command below:

cd spanner_graphs && python -m unittest discover -s tests -p "*_test.py"

For frontend testing:

cd frontend
npm install
npm run test:unit
npm run test:visual

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spanner_graph_notebook-1.1.9.tar.gz (6.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spanner_graph_notebook-1.1.9-py3-none-any.whl (6.9 MB view details)

Uploaded Python 3

File details

Details for the file spanner_graph_notebook-1.1.9.tar.gz.

File metadata

  • Download URL: spanner_graph_notebook-1.1.9.tar.gz
  • Upload date:
  • Size: 6.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for spanner_graph_notebook-1.1.9.tar.gz
Algorithm Hash digest
SHA256 9a749ec3b6d9297ba6590a1965f2e1094da409260aa7219bcd9b5645ae29cbdb
MD5 e483c1b8a83d53a53ebc1a022393cc42
BLAKE2b-256 1d8aace62f4c82935eec62fed251e56b1b7ae711eaeb3cdd9053731a7c4bc52d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spanner_graph_notebook-1.1.9.tar.gz:

Publisher: publish-to-pypi.yml on cloudspannerecosystem/spanner-graph-notebook

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spanner_graph_notebook-1.1.9-py3-none-any.whl.

File metadata

File hashes

Hashes for spanner_graph_notebook-1.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 75fe708a224f92c074ce69c0a5a013f32878e8798b09f33f0540b61487063cbb
MD5 e283ecbcb6472d30e582fdc02684a5da
BLAKE2b-256 05eb0a925480bf6f6d04ab104fd43e5e3ef536f325fcd2bb88fe1e6970857f9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spanner_graph_notebook-1.1.9-py3-none-any.whl:

Publisher: publish-to-pypi.yml on cloudspannerecosystem/spanner-graph-notebook

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page