Sign inGet started

Getting started

Welcome to Deepnote
First steps

Connecting to data sources

Coding and analysis tools

First steps

You want to get up and running right away, so let's cover the basics: Connecting to data, inviting team members, and analyzing data.

Connecting to your data

Deepnote integrates with all major data warehouses and databases, as well as common file storage services. Dropping a CSV straight into the notebook also works like a charm.

Working with a CSV

To work with a CSV, simply drag it onto the notebook.

drag_csv.png


An SQL block with a sample query will be created for you and the file will be uploaded to Deepnote's file system. The results are saved to a Pandas DataFrame.

sql_csv.png


Pandas can also be used to read the uploaded CSV into the notebook's memory.

pandas_csv.png

Connecting to a database

Click "Create new" from the Integrations tab in the right-hand panel.

create_integration.png


Choose the database integration you want (e.g., Snowflake, BigQuery, PostgreSQL). You'll be asked to add your credentials.

choose_integration.png


Once you've connected the database to a project (notice the green ✅ in the right sidebar), you can use SQL blocks to query your data. The results are saved to a Pandas DataFrame.

query_warehouse.png

Inviting your team members

It's dangerous to go alone. Take this link.

Links, email invites, and business domains

From the Settings & members section in the left-hand panel, you'll find links that you can send to your team in order to invite them to the workspace.

invite_members.png


Different links provide different access controls.

invite_links.png


Alternatively, you may enter email addresses and assign access controls that way (note the toggle switch that allows anyone with your business domain to join the workspace).

email_invite.png

Analyzing your data

Deepnote is a fully collaborative SQL and Python environment with a suite of no-code tools to help you move fast.

SQL blocks

Create an SQL block and write native SQL queries against your CSVs and databases. Mix in Python to get the best of both languages. Results are saved to a Pandas DataFrame (am I repeating myself?).

sql_python.png

Python blocks

You probably expected Python blocks, but there's more to it than that. Use the preinstalled libraries, pip install, whatever you want — you can even define your environment with Docker.

python_block.png

Moving fast with no-code tools

Visualize any Pandas DataFrame with chart blocks.

chart_block.png


Parameterize your notebook with input blocks.

input_blocks.png


Communicate with rich text blocks.

rich_text.png