{
 "metadata": {
  "language_info": {
   "name": "python"
  },
  "lastEditStatus": {
   "notebookId": "nbxcx6x7oc2tcnwer6ju",
   "authorId": "41380256252",
   "authorName": "RBOMBERG",
   "authorEmail": "rbomberg@sonymusic-pde.com",
   "sessionId": "641b189d-a93e-44a0-bb19-c36914fb4d8d",
   "lastEditTime": 1762268434819
  }
 },
 "nbformat_minor": 5,
 "nbformat": 4,
 "cells": [
  {
   "cell_type": "markdown",
   "id": "3b84ff54-318e-4e9c-9a1e-aed8ca5d763e",
   "metadata": {
    "codeCollapsed": true,
    "name": "cell1"
   },
   "source": [
    "Simple notebook to test integration with Snowflake"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "e6fafcfd-0c52-44c9-b999-da78091b8804",
   "metadata": {
    "vscode": {
     "languageId": "plaintext"
    },
    "language": "python",
    "name": "cell2"
   },
   "outputs": [],
   "source": [
    "import pandas as pd"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "0f1c4336-a2d7-4029-8b5f-f0d68dcb93ba",
   "metadata": {
    "vscode": {
     "languageId": "plaintext"
    },
    "language": "python",
    "name": "cell3"
   },
   "outputs": [],
   "source": "# Create a simple DataFrame\ndata = {\n'Name': ['Alice', 'Bob', 'Charlie', 'Bobby', 'Jimmy'],\n'Age': [25, 30, 35, 44, 45],\n'City': ['New York', 'Los Angeles', 'Chicago', 'Sevilla', 'Montreal']\n}\n\ndf = pd.DataFrame(data)\n\nprint(df)\nprint(df.shape)"
  }
 ]
}