- URL: http://big-data-competitions.swedencentral.cloudapp.azure.com:8080/
- Username: group2
- Password: HiC5EfVW
The current project is set up to run against python3 v. 3.12.
The setup created with poetry and all dependencies are listed in the pyproject.toml file.
After ensuring your terminal is running python 3.12 and you have all your poetry dependencies installed, you can run:
make ingest-dataThis command will begin the ingestion of all data.
The Data class in the readers.readers package will read all files for you. You can access them by the given attribute as seen in the code snippet below.
from readers.readers import DuckData
import duckdb
data = DuckData()
training_data = data.all_training_data
duckdb.query("FROM training_data")