🚀 Getting Started

📦 Requirements

  • Python 3.13 or higher.

  • Poetry installed.

🔌 Installation

  • First check if you have Poetry in your global Python version:

poetry --version
# (Poetry (version 2.1.3)) <--- Expected result.
  • If not installed:

poetry install --no-root 
  • Follow these steps to install dependencies, and run the project:

# Configure Poetry to create the virtual environment inside the project folder
poetry config virtualenvs.in-project true

# Install dependencies
poetry install
  • This create the virtual enviroment in your project forlder.

✅ Execution

  • Finally, to execute the project run:

poetry run python src/main.py 

📝 Add new libraries

poetry add pandas

❌ Remove libraries

poetry remove pandas