Snowflake connection
=======

## Getting Started

### Installation
Before starting make sure you have `python3.12` installed.
An easy way to manage python versions is with `pyenv`:

```bash
$ pyenv install 3.12.4
$ pyenv global 3.12.4
```

or installing with `Homebrew`:

```bash
$ brew update
$ brew install python@3.12

```

After that you need to install snowflake and pandas library
```bash
pip install -r requirements.txt  
```

Copy environment variables:
```bash
cp .env.shadow .env


```
### Testing
Run main function in app.py file
```bash
$ python app/app.py
```
