How to access CARTO’s Analytics Toolbox for Snowflake and create visualizations via Python notebooks
!pip install snowflake-snowpark-python pandas pydeck pydeck-carto shapely python-dotenvLoading libraries
import pydeck as pdk
import pydeck_carto as pdkc
from carto_auth import CartoAuth
import os
import json
from shapely.geometry import shape
from dotenv import load_dotenv
import pandas as pd
from snowflake.snowpark.session import SessionAuthentication to CARTO
Authentication to Snowflake
Downloading data from Snowflake into a Python dataframe


Uploading a dataframe back to Snowflake
Visualizing data in Snowflake with the pydeck-carto library

PreviousHow to access CARTO's Analytics Toolbox for BigQuery and create visualizations via Python notebooksNextHow to visualize data from Databricks
Last updated
Was this helpful?
